Well, the word zombie means it is already dead but not quite so... This entry is about really "killing" the zombie processes.
running "top" lists up the zombie processes (marked by "Z" in status column) and also the total number of zombie processes.
To list zombie processes do:
ps aux | awk '{ print $8 " " $2 }' | grep -w Z
kill -9 pid
might also work.
Reference
running "top" lists up the zombie processes (marked by "Z" in status column) and also the total number of zombie processes.
To list zombie processes do:
ps aux | awk '{ print $8 " " $2 }' | grep -w Z
kill -9 pid
might also work.
Reference