Linux常用性能查询指令
作者:互联网
linux 下 取进程占用 cpu 最高的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head
linux 下 取进程占用内存(MEM)最高的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head
虚拟内存使用最多的前10个进程
ps auxw|head -1;ps auxw|sort -rn -k5|head -10
标签:sort,ps,head,10,查询,指令,Linux,aux,rn 来源: https://www.cnblogs.com/wencong/p/15387913.html