Heres how you would find the parent associated with the zombie
1.Do ps-aux first and look for the letter "z" in the stat column
2. Obtain the PID of the zombie
3. Do this command to find the parent ID that relates to the zombie and then kill it:
# ps aux -eo ppid| grep
# kill -9
cheers
Gaurav