Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

How to find which Process is causing High CPU usage

Is there any way to find out from terminal which process is causing high CPU Usage ?

It would also be useful to order processes in descending order of cpu Usage
by

1 Answer

Amit8z4mc
ps -eo pcpu,pid,user,args | sort -k1 -r -n | head -10


Works for me, show the top 10 cpu using threads, sorted numerically

Login / Signup to Answer the Question.