Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 do I list all processes in linux?

1039


What is $@ in shell?

1007


What are runlevels in linux?

1152


Is llvm a compiler?

1011


In order to improve your system’s security you decide to implement shadow passwords. What command should you use?

1004


What command would you use to check how much memory is being used by linux?

1085


What does comm do and how to use it?

1064


How do I clear terminal command history?

1169


How do you create a file in linux?

1118


Suppose you try to delete a file using the rm command and the deletion fails. What could be the possible reason?

1043


What does in makefile do?

1065


How can I create a file with cmd?

1177


How compile c++ program in cmd?

1138


What is mkdir p?

1013


How do I permanently set ulimit in linux?

992