[NOTE]Which process eating memory on #Linux

Following command will show which process taking maximum memory in easy readable on Linux. [Short note for myself] ps aux | awk '{print $6/1024 " MB\t\t" $11}'

Mar 4, 2020

Featured image for [NOTE]Which process eating memory on #Linux

Following command will show which process taking maximum memory in easy readable on Linux.

[Short note for myself]

ps aux  | awk '{print $6/1024 " MB\t\t" $11}'  | sort -n