<!DOCTYPE html> <html> <head> </head> <body> <p>Find out who is monopolizing or eating the CPUs<br /><br />Following command will displays the top 10 CPU users on the Linux system.</p> <p><br /># <strong>ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10</strong></p> <p>OR</p> <p># <strong>ps -eo pcpu,pid,user,args | sort -r -k1 | less</strong><br /><br />OR<br /><br /># <strong>top cd1</strong></p> </body> </html>
Subscribe
0 Comments
Oldest