Transmission is intermittently hanging on my NAS. If I send SIGTERM, it doesn't disappear from the process list and a <defunct>
label appears next to it. If I send a SIGKILL, it still doesn't disappear and I can't terminate the parent because the parent is init
. The only way I can get rid of the process and restart Transmission is to reboot.
I realize the best thing I can do is try and fix Transmission (and I've tried), but I'm a novice at compiling and I wanted to make sure my torrents finished before I start messing around with it.
init
should go away pretty quickly sinceinit
waits on children periodically as one of its many common tasks... is<defunct>
the same as a zombie? – D.Shawley Apr 13 '11 at 01:31<defunct>
is precisely the same as a zombie.init
will wait on its children so this should never happen in theory. I wonder what happens if you send aSIGCHLD
toinit
? – D.Shawley Apr 13 '11 at 01:34