ps Show processes (and Services) Often used: Bashps aux Bashps aux | grep tomcat List with memory usage: Bashps -o pid,user,%mem,command ax | sort -b -k3 -r List memory usage - list 20 Bashps -o pid,user,%mem,command ax | sort -b -k3 -r | head -n20 | sort -bnr -k3