Linux中进程与线程及CPU使用率查询
一、进程查询:
ps -e -o 'pid,comm,args,pcpu,rsz,vsz,stime,user,uid'
说明:PCPU是Cpu使用率,8核最多是800。
或者
ps -aux
二、线程查询:
cat /proc/13284/status
说明:13284是进程ID。
宋兴柱:转载内容,请标明出处,谢谢!源文来自 宝贝云知识分享:https://www.dearcloud.cn
一、进程查询:
ps -e -o 'pid,comm,args,pcpu,rsz,vsz,stime,user,uid'
说明:PCPU是Cpu使用率,8核最多是800。
或者
ps -aux
二、线程查询:
cat /proc/13284/status
说明:13284是进程ID。