Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Zombie process

Status
Not open for further replies.

nappaji

Programmer
Mar 21, 2001
76
US
Hello,
I have a zombie process on my system. I see the parent process (owned by some other user)running, but am unable to kill the parent process even as root. The parent is not the "init" or any other system process. Its just another simple GUI program that is running.

Is there any reason why I am not able to kill the parent process as root???

Thanks
 
Basically zombie processes are 'lost' to the OS, that is why you are unable to kill it. As long as it's not eating resources it's nothing to be too concerned about. When you next reboot it will be tidied up. HTH.
 
root should be able to kill just about anything - have you tried "kill -9 pidnum"

 
I speculate that maybe, some signal handlers in your program catch and ignore the SIGINT, SIGTERM etc.

As the description above , you can remove the zombie process now, but I suggest you to find out the cause, it is important, I think.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top