I want to kill zombie process, but with using kill 9 i
cannot kill that process? can u tell other commands?
Answer Posted / venkat
Zombie :
This is the dead process. We can not kill this directly this
process. Since zombie is the child process created by some
parent process.
so sometimes parent process will leave it for future
process. So need to send SIGCHILD signal to parent process
to kill zombie.
command:
" kill -s SIGCHLD <ppid> " ; ppid --> parent process id.
From this way we can kill zombie processes.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What are the basic commands for user management?
What does uname do in linux?
What is Data Command?
Why bash is used in linux?
What does bash stand for?
What is the use of cp p command?
How do I get to root directory in linux?
How do I stress test my cpu?
Enlist some linux networking and troubleshooting commands?
Explain any one service which are working on udp only?
What is a makefile in c?
What are grep patterns called?
How do I set permission to run in linux?
How do I run a command in linux?
What does && mean in linux?