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
How do makefiles work?
How do you sort cpu in top command?
Explain command grouping in linux?
What is the difference between kill and kill in linux?
How do I check my system performance?
What is difference between sh and bash?
How can we increase disk read performance in single command in Linux operating system?
What is the command can be used to check for file corruption?
What is tty in linux command?
How use linux command line?
What does sh do in linux?
How do I start ms dos?
How do you copy in linux terminal?
How does case sensitivity affect the way you use commands?
What is iptables command in linux?