1.

What is the command to kill Zombie processes ?

Answer»

As zombie processes are already DEAD , the user  Cannot kill something which is already dead.

Execute the below command :

kill -s SIGCHLD PID

Replace the pid with Parent PROCESS ID, so that parent process will remove all the CHILD processes that are dead.



Discussion

No Comment Found