InterviewSolution
Saved Bookmarks
| 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 PIDReplace the pid with Parent PROCESS ID, so that parent process will remove all the CHILD processes that are dead. |
|