16:49:26 how do you remove zombie processes? 16:50:29 you don't 16:50:48 <-- infestator (~infestato@183.167.249.ozerki.net) has quit (Remote host closed the connection) 16:50:54 !zombies 16:50:54 A zombie process is one which has issued an exit(), but whose parent has not yet issued wait() (or one of its variants) to retrieve the exit code. This usually means the parent process is buggy. You can't kill a zombie, because it's already dead; you have to kill the parent, or just ignore the zombie. 16:51:44 (there's no realy reason to worry about zombies unless you have so many that you're running out of pids 16:51:54 they take almost no resources 16:54:27 --> lewis2 (~lewis@cpe-66-65-61-5.nyc.res.rr.com) has joined #debian 16:54:38 how can I remove zombie processes? (apologies if repeat - lost connection)