List Linux processes by CPU or Memory usage
You can use a one-string command in Linux to nicely display in CLI the processes that consume your CPU. Use ps -e -o pcpu,cpu,nice,state,cputime,args –sort pcpu | sed ‘/^ 0.0 /d’ and you will get something like this: %CPU CPU NI S TIME COMMAND 0.1 – 0 S 00:00:13 metacity 0.1 – 0 S 00:00:18 /usr/lib/thunderbird/thunderbird-bin 0.2 – … Read More »