Linux – detecting zombie processes

linux

how do I detect and kill zombie processes left from the command line of a Linux terminal?

Best Answer

You cannot kill a zombie process. If the parent process does not call wait(), you have to kill the parent process to remove the zombie.

Related Question