Zombie process

What is the overhead associated with zombie process?Is it running out of process-ID?:confused:
Since some information is stored in process table..

Thanks in Advance

You've answered your own question, I think.

1 Like

zombies use a process slot, almost every other resource including memory is released.
zombies are the usually result of bad programming

1 Like

Kill zombies
ps -A -ostat,ppid,pid,cmd | grep -e '^[Zz]' | awk '{print "kill -9 "$2}'

Kill zombies
ps -A -ostat,ppid,pid,cmd | grep -e '^[Zz]' | awk '{print "kill -9 "$2}'