Answer Posted / ashish
Zombie process are the ones for which its parent process
has lost track of.
You can view the zombie processes by using
ps -auwx | grep Z
And to kill them use
kill -9 pid
But normally this wont work. So we will first have to kill
its parent process. And to do this you can use
ps -l pid
to list the pid of the parent process(indicated by PPID)
and then use (kill -9 pid) to terminate it.
If in any case the parent process is the init(1) process
itself, then there is no other option than to reboot the
system.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is gnu in linux?
Who command in linux?
What does make clean command do?
How does grep work in linux?
Which commands are used to set a processor-intensive job to use less cpu time?
What does the ps command do in linux?
What is difference between egrep and grep?
Why bash is used in linux?
What is the use of finger command in linux?
What is filter command in unix?
What are different command to check ram, process and hdd of linux machine?
How do I find the linux version?
What is the command to delete a file linux?
You issue the command head * what would the resulting output be?
How do I find the process id in linux?