Find Out The Top 10 Memory Consuming Process
Posted 5 months, 2 weeks ago at 5:13 pm. 0 comments
ps -auxf | sort -nr -k 4 | head -10
For top 10 CPU consuming process just replace 4 with 3 in -k switch:
ps -auxf | sort -nr -k 3 | head -10
ps -auxf | sort -nr -k 4 | head -10
For top 10 CPU consuming process just replace 4 with 3 in -k switch:
ps -auxf | sort -nr -k 3 | head -10
Feel free to leave a reply using the form below!