So how to find Zombie Processes?
Fire up a terminal and type the following command –
ps aux | grep Z
How to kill Zombie processes?
Normally we kill processes with the SIGKILL command but zombie processes are already dead. You Cannot kill something that is already dead. So what you do is you type this command –
kill -s SIGCHLD pid