Wednesday, October 27, 2010

Linux System Monitoring

1.You need to determine which process is monopolizing or eating the CPUs. Following command will displays the top 10 CPU users on the Linux system.

# ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10
OR
# ps -eo pcpu,pid,user,args | sort -r -k1 | less

2.http://www.cyberciti.biz/tips/top-linux-monitoring-tools.html

No comments:

Post a Comment