linux 查询进程占用内存(MEM)最高的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head
Linux 查询进程占用 cpu 最高的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head
查看当前目录下个文件大小
du -sh ./*
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head
du -sh ./*
本文标题:Linux查看内存,占用CPU资源
本文链接:https://www.haomeiwen.com/subject/qwrlnltx.html
网友评论