Home kill-zombie-procs
Post
Cancel

kill-zombie-procs

(ref: How to kill zombie process

You can clean up a zombie process by killing its parent process with the following command:

kill -HUP $(ps -A -ostat,ppid | grep -e '[zZ]'| awk '{ print $2 }')

This post is licensed under CC BY 4.0 by the author.