首页 > 代码库 > AIX中查看进程内存使用

AIX中查看进程内存使用

AIX中查看进程内存使用

学习了:http://www.2cto.com/os/201308/235858.html

 

1,从大到小排列10个内存使用率进程

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

查看java进程:

ps aux| head -1 ; ps aux|grep weblogic |grep java

 

AIX中查看进程内存使用