1、使用Top命令查询进程
输入 top 命令,然后按下大写M按照内存MEM排序,按下大写P按照CPU排序。
top
2、查询占用CPU最高的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head
3、查询占用内存最大的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head
输入 top 命令,然后按下大写M按照内存MEM排序,按下大写P按照CPU排序。
top
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head