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
AIX,
Memory
. You can follow any responses to this entry through the
comments feed
.