when zombie process fully cleared?

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


Please Help Members By Posting Answers For Below Questions

How can we increase disk read performance in single command in Linux operating system?

676


What is in mkdir command?

537


can any one send me one project on linux ...?

2348


Explain about system and user utilities?

556


What is the syntax of mkdir?

512






What are the basic commands for user management?

536


What is env command in linux?

503


What is mkdir p?

554


How do I test my cpu speed?

502


What is df command in linux?

532


What command is used to check the number of files, disk space, and each user’s defined quota?

509


What is dos and its commands?

603


What does && mean in linux?

551


You wish to print a file ‘draft’ with 60 lines on a page. What command would you use?

650


What is the copy command in linux?

462