摘要: Linux查看占用内存前10的命令 获取占用CPU资源最多的十个进程 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 阅读全文
posted @ 2022-01-13 13:51 张瑞丰 阅读(2405) 评论(0) 推荐(0) 编辑