View the CPU, memory consumption with descending process list on Linux Platform
Top 10 processes occupies by CPU
ps auxw | head -1;ps auxw | sort -rn -k3 | head -10
Top 10 process that consumption Memory
ps auxw | head -1;ps auxw|sort -rn -k4 | head -10
Top 10 process uses the most Virtual memory
ps auxw | head -1;ps auxw | sort -rn -k5 | head -10
Leave a Reply
Want to join the discussion?Feel free to contribute!