processes
zombies
check the number of zombie processes
ps aux | awk '$8 ~ /Z/ { print }' | wc -l
sort by resource usage
find top processes sorted by mem or cpu usage
ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%mem | head
check the number of zombie processes
ps aux | awk '$8 ~ /Z/ { print }' | wc -l
find top processes sorted by mem or cpu usage
ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%mem | head
This version of the page was edited by pyratebeard at . View the most recent version.