Linux 查询最近占用内存最多的十个进程的方法

ps -eo rss,pid,user,command --sort -rss | awk '{ hr=$1/1024 ; printf("%13.2f Mb ",hr) } { for ( x=4 ; x<=NF ; x++ ) { printf("%s ",$x) } print "" }' |cut -d "" -f2 | cut -d "-" -f1 |head -n 10

来源

https://blog.csdn.net/u014066037/article/details/82896456

自己简单进行了修改  查看 进程独享的内存 并且进行排序。 

上一篇:Mysql Cluster7.3.7安装与配置


下一篇:Ubuntu 20.10单机安装MySQL 8.0.22 NDB集群