Memory Usage by Bytes Top 10

memorytop

I need a way to see how many bytes to top ten processes are using not percentage.
I am using centos

Best Answer

it would be better to use ps with head

ps aux --sort -rss | head -10

The RSS field shows physical memory usage in KB.