Sunday, March 16, 2014

How to find which process is eating RAM memory in Linux Operting System?

ps aux | awk '$6 > 0{print $3, $4, $5, $6}'
or

ps aux | awk '{print $2, $4, $11}' | sort -k2r | head -n 20

No comments:

Post a Comment