For awhile now, when booting into my system (Karmic 9.10 (kernel 2.6.31-20-generic) running KDE 4.4.1, a zombie process gets created. I don't know for sure how long this has been occurring, but it wasn't happening before. A single zombie process is reported, and it's always from dhclient:
It's simple enough to kill it:
where ppid equals the reported PPID by top.
Why is this zombie being created? What is it about dhclient that is causing it? How can I prevent dhclient from producing this zombie?
Code:
top - 10:20:00 up 1:34, 2 users, load average: 0.00, 0.00, 0.05 Tasks: 173 total, 3 running, 168 sleeping, 1 stopped, [color=red]1 zombie[/color] Cpu(s): 12.4%us, 5.1%sy, 0.0%ni, 82.3%id, 0.0%wa, 0.1%hi, 0.0%si, 0.0%st Mem: 2052252k total, 1208372k used, 843880k free, 107684k buffers Swap: 2096440k total, 0k used, 2096440k free, 732032k cached
Code:
paul@myotherbrain:~$ zombies [sudo] password for paul: F S UID PID PPID C PRI NI ADDR SZ WCHAN STIME TTY TIME CMD 4 Z root 2070 1643 0 80 0 - 0 exit 08:45 ? 00:00:00 [[color=red]dhclient[/color]] <defunct> 0 R paul 20351 20330 0 80 0 - 761 - 10:17 pts/1 00:00:00 grep --color=auto Z
Code:
sudo kill -9 ppid
Why is this zombie being created? What is it about dhclient that is causing it? How can I prevent dhclient from producing this zombie?
Comment