快速查看占用资源最多的进程 1、查看占用内存最多的十个进程 ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head 2、查看占用cpu最多的十个进程 ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head