Linux 下取进程占用 cpu/内存 最高的前10个进程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 下取进程占用 cpu/内存 最高的前10个进程相关的知识,希望对你有一定的参考价值。
# Linux 下 取进程占用 cpu 最高的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head
# linux 下 取进程占用内存(MEM)最高的前10个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head
转自:http://blog.csdn.net/namesliu/article/details/6037972
以上是关于Linux 下取进程占用 cpu/内存 最高的前10个进程的主要内容,如果未能解决你的问题,请参考以下文章