check memory consuming processes
Posted by cikul | Posted in Linux | Posted on 30-05-2008-05-2008
0
Use below mentioned command to get top memory consuming processes”
ps aux | head -1;ps aux –no-headers| sort -rn +3 | head
Use below command to get top cpu consuming processes:
ps aux | head -1;ps aux –no-headers | sort -rn +2
gonna try :)
