Memory
This is a wiki page. Be bold and improve it!
If you have any questions about the content on this page, don't hesitate to open a new ticket and we'll do our best to assist you.
$ free -m
cat /proc/meminfo
vmstat
top => press M to sort by memory % usage.
smem
htop
atop
ps aux --sort '%mem'
ps aux | awk '{print $2, $4, $11}' | sort -k2rn | head -n 10
ps -e -orss=,args= | sort -b -k1,1n | pr -TW$COLUMNS