### Find all zombie processes ``` ps aux | grep 'Z' ``` ### Kill the process (replace pid with the process ID from the above list ) ``` kill -s SIGCHLD pid ```