Killing zombie process & emacs Copy paste in putty Note down a few tricks, 1, killing zombie process, first find out the zombie process by ps or top command, top # ps aux | awk ‘{ print $8 ” ” $2 }’ | grep -w Z or ps aux | grep ‘Z’ 2, by kill command to kill the zombie process, kill -9 PID […]