ดูรายละเอียด process บน Linux
159
|
On all POSIX-compliant systems, and with Linux, you can use
ps :
Here, the process is selected by its PID with
-p . The -o option specifies the output format, comm meaning the command name.
You can find the process name or the command used by the process-id or pid from
by doing
Here pid is the pid for which you want to find the name
For exmaple:
To find the process name used by pid 2480 you use can
|
Comments
Post a Comment