The command with which we will see a list of processes that consume the most RAM (resources).
1 2 3 |
ps aux | awk '{print $2, $4, $11}' | sort -k2rn | head -n 10 |
Instead of 10 you can specify any number of processes displayed.
To kill any process write:
Continue reading The most resource hungry processes on Linux