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
How many cmd commands are there?
If the programmer wishes to execute an instruction at the specified time. Which command is used?
What are the command prompt commands?
What is mkdir?
How you will create new folder / directories and how to remove file and folder in linux?
Explain grep command.
You attempt to delete a file called sales.mem using the rm command but the command fails. What could be the problem?
What is kill 9 in linux?
What is the difference between diff and cmp command in unix?
Which command is used to terminate a process?
why is the tar command used?
How do you sort cpu in top command?
How do I check cores in linux?
What is make in linux?
How can we increase disk read performance in single command in Linux?