Get the list of zombie processes:
BASH
x
ps aux | awk '{if($8=="Z") print}'
Get the parent process of each of the processes listed above (second column)
BASH
ps -o ppid= -p 490392
Kill the parent process from the above output
BASH
sudo kill -9 3167559