Linux 常用ps命令
(1)查看系统所有进程:
标准格式:
ps -e
ps -ef
ps -eF
ps -ely
BSD格式:
ps ax
ps axu
(2)打印进程树
ps -ejH
ps axjf
(3)获得线程信息:
ps -eLf
ps axms
(4)获得安全信息:
ps -eo euser,ruser,suser,fuser,f,comm,label
ps axZ
ps -eM
(5)查看root用户进程:
ps -U root -u root u
(6)自定义格式查看所有进程
ps -eo pid,tid,class,rtprio,ni,pri,psr,pcpu,stat,wchan:14,comm
ps axo stat,euid,ruid,tty,tpgid,sess,pgrp,ppid,pid,pcpu,comm
ps -eopid,tt,user,fname,tmout,f,wchan
(7)打印单个程序进程:
ps -C syslogd -o pid=
(8)打印进程名:
ps -q 42 -o comm=