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 Command used to lock user password?
What are the mv command options?
What does grep grep do?
Suppose I lost a root password and I need to give it, I treid to change it through single usermode even though I am not get a password, then what is the otherprocedure to give a root password?
How do I run a script in linux?
What is ulimit command?
What is df -i command?
What command should you use to check your file system?
How do I run multiple commands in linux?
What is bash command?
What is lsof command in linux?
What is Syntax of any Linux command?
How do I check my cpu cores?
What is top command in linux?
What is $@ in makefile?