1.CPU占用最多的前10个进程
ps auxw|head -1;ps auxw|sort -rn -k3|head -10
2.内存消耗最多的前10个进程
ps auxw|head -1;ps auxw|sort -rn -k4|head -10
3.虚拟内存使用最多的前10个进程
ps auxw|head -1;ps auxw|sort -rn -k5|head -10
4.也可以试试
ps auxw --sort=rss ps auxw --sort=%cpu
5.看看几个参数含义
- %MEM 进程的内存占用率
- MAJFL is the major page fault count,
- VSZ 进程所使用的虚存的大小
- RSS 进程使用的驻留集大小或者是实际内存的大小(RSS is the “resident set size” meaning physical memory used)
- TTY 与进程关联的终端(tty)
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/119652.html