Summary of Linux ps and pstree command knowledge points

Summary of Linux ps and pstree command knowledge points

The ps command in Linux is the abbreviation of Process Status. The ps command is used to list the processes currently running in the system. The ps command lists snapshots of the current processes, that is, the processes at the time when the ps command is executed. If you want to display process information dynamically, you can use the top command.

To monitor and control the process, you must first understand the current process status, that is, you need to view the current process, and the ps command is the most basic and also very powerful process viewing command. This command can be used to determine which processes are running and their running status, whether the processes have ended, whether the processes are dead, which processes are taking up too many resources, etc. In short, most of the information can be obtained by executing this command.

ps provides a one-time view of the process. The results it provides are not dynamic and continuous. If you want to monitor the process time, you should use the top tool.

The kill command is used to kill a process.

1. View all processes

ps -eF

-e: Select all processes.
-F: Extra full format.

PSR (Processor) shows the CPU where the process is located.

2. View all processes (including threads)

ps -eLF
-e: Select all processes.
-L: Show threads, possibly with LWP and NLWP columns.
-F: Extra full format.

LWP (Low Weight Process), displays the thread number TID. To the Linux kernel, there is no difference between the management of threads and processes. To the user, a process may contain multiple threads. If PID and LWP are the same, the thread is the main thread of the process.

3. View in custom format

ps -eLo pid,lwp,nlwp,sched,pri,psr,args

-e: Select all processes.
-L: Show threads, possibly with LWP and NLWP columns.
-o: User-defined format.

You can view the parameters you want to view, such as scheduling strategy, priority, etc.

4. pstree

To view processes/threads in a tree format use the pstree command.

pstree -p

-p: Show PIDs.

For the specific usage of ps and pstree, you may want to use the man command to view it.

The above are all the relevant knowledge points compiled by the editor. Thank you for your learning and support for 123WORDPRESS.COM.

<<:  Detailed graphic tutorial on how to install the unzipped version of MySQL under Windows 10

>>:  jQuery realizes the scrolling effect of table row data

Recommend

BUG of odd width and height in IE6

As shown in the figure: But when viewed under IE6...

Detailed explanation of Vue's simple store

The simplest application of store in Vue is globa...

Randomly generate an eight-digit discount code and save it to the MySQL database

Currently, many businesses are conducting promoti...

5 super useful open source Docker tools highly recommended

Introduction The Docker community has created man...

The process of installing and configuring nginx in win10

1. Introduction Nginx is a free, open source, hig...

Database query which object contains which field method statement

The database queries which object contains which ...

Detailed explanation of Vue's custom event content distribution

1. This is a bit complicated to understand, I hop...

React event binding details

Table of contents Class component event binding F...

Detailed explanation of Linux text editor Vim

Vim is a powerful full-screen text editor and the...

MySQL slow log online problems and optimization solutions

MySQL slow log is a type of information that MySQ...

Example code for using HTML ul and li tags to display images

Copy the following code to the code area of ​​Drea...

Nginx cache configuration example

When developing and debugging a web application, ...

Complete steps to install MySQL 8.0.x on Linux

MySQL Introduction to MySQL MySQL was originally ...

Detailed explanation of three ways to wrap text in el-table header

Table of contents Problem Description Rendering T...

Three ways to forward linux ssh port

ssh is one of the two command line tools I use mo...