eygle.com   eygle.com
eygle.com  
 
Aix常用命令收藏:内存和CPU消耗进程排序 - Digest Net

  (1)显示10个消耗cpu最多的进程
  # ps aux |head -1 ;ps aux |sort -rn +2 |head -10

  (2)显示10个消耗内存最多的进程

  #ps vx |head -1 ;ps vx |grep -v PID |sort -rn +6 |head -10

  (3)显示10个换页最多的进程

  #ps vx |head -1 ;ps vx |grep -v PID |sort -rn +4 |head -10

  (4)显示10个消耗存储空间最多的进程

  #ps aux |head -1 ;ps aux |sort -rn +3 |head -10

| | 1 Comment | | Edit | Pageviews:

1 Comment

ps vx |head -1 ;ps vx |grep -v PID |sort -rn +6 |head -10
有问题

Leave a comment