AIX: Checking memory for a process  

Posted by Kishore in ,

In AIX,
We can find the memory consumed by a paritular process using the following command.

ps -ef | grep
ps v

To list out the top 15 memory consuming processes, this command can be used.

svmon -Pt15 | perl -e 'while(<>){print if($.==2||$&&&!$s++);$.=0 if(/^-+$/)}'

This entry was posted on May 20, 2008 at Tuesday, May 20, 2008 and is filed under , . You can follow any responses to this entry through the comments feed .

0 comments

Post a Comment