


Red Hat Linux system download, installation, system monitoring, and process management tutorials
Table of Contents of Series Articles
Chapter 1: Download and install redhatlinux system
Chapter 2: Linux Users and Groups
Chapter 3: Linux File Management
Chapter 4: Linux Directory Management
Chapter 5: Linux Text Editor
Chapter 6: Linux file search and management
Chapter 7: Linux input, output redirection and pipeline
Chapter 8: Linux Package Management
Chapter 9: Linux system monitoring and process management
Article Directory
Preface
The main content of this blog is about system monitoring and process management. It is still focused on experiments. As a rule, remember to take a snapshot in advance.
1. System monitoring and query information
<span class="token function">uname</span> -r <span class="token function">uname</span> -a
lscpu
<span class="token function">hostname</span>
<span class="token function">top</span>
The top command can check the running status of each process, the allocation of system resources, etc., so I will briefly talk about it here
The above content is mainly about the allocation of system resources, talking about some common and simple ones.
Second line
From left to right, it represents the total number of processes, the number of running processes, the number of dormant processes, the number of stopped processes, and the last one, nicknamed zombie process.
The following are very simple. Let’s talk about the last one. As we all know, each program will use many sub-processes to complete tasks separately. If the main process is violently killed, such as forced suspension of Windows or the kill command of Linux, it may If its child processes have no time to stop, the main process will disappear. This kind of process is called a zombie process. It is of no use, but it will occupy resources.
The most commonly used one is the id value in the third line. There are more than 90 in the picture, which means that most of the cups are not running. Now we open a program to run it and see the effect.
Open another terminal and run the following command
可以看见这个命令运行了50秒左右,直接占了近一半的CPU,这个生产中主要用于给服务器做抗压测试,让你的CPU满载运行,瞧瞧能够不能正常完成相应的任务。
第四行
主要是展示显存信息,当年创了两个G的显存,如今空闲的的早已不多了。
第五行
所以下一行的swap交换分区就被启动了。一部份硬碟当显存使
二、进程管理
<span class="token function">ps</span> aux
ps命令必须加参数,不然没啥用
a:所有
u:用户
x:运行
它可以给你显示出,系统所有运行的程序,并且如此多进程,如何看啊,这就要用到后面的grep来做到做管线,拿来过滤信息,例如我要查看chaoge运行的进程
<span class="token function">ps</span> aux <span class="token operator">|</span> <span class="token function">grep</span> chaoge
这样就可以对这种进程进行过滤,从而查询到自己须要的信息
1.管理进程
<span class="token function">kill</span>
kill直接翻译就是杀害,但他不仅仅能单纯的杀害,他也是有好多参数的
可用于-l查看
以管理系统自带的python为例
<span class="token function">kill</span> -19
停止进程,以python第一个进程1004为例
可以见到多了一个停止程序
<span class="token function">kill</span> -18
启用程序
这条命令我以前在云端跑python爬虫的时侯用过,我当时的水平还比较低,不会写增量式爬虫,代码效率比较低,几万张图片要跑近3天,就直接放到了云端,定时去下载合照,为剩下的相片留下空间,而且程序不能中断,就用这个命令暂停进程,之后把相片领到本地,在启用程序继续跑。
<span class="token function">kill</span> -9 -15
这是两个参数都是拿来杀害进程的。
-9,就是之前说的直接杀害红旗linux系统下载,有可能留下僵尸进程
-15,先杀害子进程在,最后在杀害主进程,不会有僵尸进程
这个没啥特殊的,不说了,尽量用15,不行再用9
2.前后台转换
在终端直接运行傲游可以打开浏览器,而且这个时侯终端都会被占用,难以继续操作,所以我们要把它转入后台去。
firefox <span class="token operator">&</span>
后面加一个&,可以将进程切换到后台,终端会返回一个进程号linux find,可以通过进程号查询进程。
这是直接后台启用,那我向将前台正在运行的程序linux计划任务没有运行,转入后台应当如何做呢?
我在这儿创建两个文件,分别叫1和2,上面各写一串数字
这个时侯,步入文件1的编辑界面使用快捷键Ctrl+Z
他会手动将这个进程调到后台去linux计划任务没有运行,继续把2也也调到后台
我们可以通过fg命令将后台程序调到前台来
都会回到编辑时的状态
注:fg会回到近来一次的调换前,假如我们想回到更早的线程该如何做?
先用jobs查看后台进程
fg+编号即可回到相应的进程
总结
此次博客内容就到这儿。
The above is the detailed content of Red Hat Linux system download, installation, system monitoring, and process management tutorials. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Efficiently Counting Files and Folders in Linux: A Comprehensive Guide Knowing how to quickly count files and directories in Linux is crucial for system administrators and anyone managing large datasets. This guide demonstrates using simple command-l

Efficiently managing user accounts and group memberships is crucial for Linux/Unix system administration. This ensures proper resource and data access control. This tutorial details how to add a user to multiple groups in Linux and Unix systems. We

Linux Kernel is the core component of a GNU/Linux operating system. Developed by Linus Torvalds in 1991, it is a free, open-source, monolithic, modular, and multitasking Unix-like kernel. In Linux, it is possible to install multiple kernels on a sing

Flatpak application permission management tool: Flatseal User Guide Flatpak is a tool designed to simplify Linux software distribution and use. It safely encapsulates applications in a virtual sandbox, allowing users to run applications without root permissions without affecting system security. Because Flatpak applications are located in this sandbox environment, they must request permissions to access other parts of the operating system, hardware devices (such as Bluetooth, network, etc.) and sockets (such as pulseaudio, ssh-auth, cups, etc.). This guide will guide you on how to easily configure Flatpak with Flatseal on Linux

This brief guide explains how to type Indian Rupee symbol in Linux operating systems. The other day, I wanted to type "Indian Rupee Symbol (₹)" in a word document. My keyboard has a rupee symbol on it, but I don't know how to type it. After

Linux is best used as server management, embedded systems and desktop environments. 1) In server management, Linux is used to host websites, databases, and applications, providing stability and reliability. 2) In embedded systems, Linux is widely used in smart home and automotive electronic systems because of its flexibility and stability. 3) In the desktop environment, Linux provides rich applications and efficient performance.

Linus Torvalds has released Linux Kernel 6.14 Release Candidate 6 (RC6), reporting no significant issues and keeping the release on track. The most notable change in this update addresses an AMD microcode signing issue, while the rest of the updates

If you're familiar with AirDrop, you know it's a popular feature developed by Apple Inc. that enables seamless file transfer between supported Macintosh computers and iOS devices using Wi-Fi and Bluetooth. However, if you're using Linux and missing o
