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...


I want to kill zombie process, but with using kill 9 i
cannot kill that process? can u tell other commands?

Answers were Sorted based on User's Feedback



I want to kill zombie process, but with using kill 9 i cannot kill that process? can u tell other ..

Answer / kapil agrawal

I don't believe you can kill zombie process with `kill -9
<pid>`. Zombie process are considered dead. And, you will
have to kill the parent process of the zombie process to
kill the zombie.
use ps -ef| grep "Z" command and ppid of Z process

Is This Answer Correct ?    7 Yes 2 No

I want to kill zombie process, but with using kill 9 i cannot kill that process? can u tell other ..

Answer / 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

I want to kill zombie process, but with using kill 9 i cannot kill that process? can u tell other ..

Answer / ritesh paul

we can use pstree -paul to find the parent process id
and then kill it by killall and the process id of the parent process.

we can also grep pstree -paul with the child zombie process , it will directly show us the parent process

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Linux Commands Interview Questions

How do I list directories in linux?

0 Answers  


how to create a new file command

17 Answers   Google,


What is command example?

0 Answers  


What is bash linux?

0 Answers  


How would you monitor real-time system performance in Linux?

1 Answers  


What is the export command used for?

0 Answers  


How do I find the umask value in linux?

0 Answers  


What is df -h command?

0 Answers  


What is lsof command in linux?

0 Answers  


Who is unix command?

0 Answers  


What does in makefile do?

0 Answers  


How to shuffle the GRUB booting from one Disk to other?

1 Answers  


Categories