杀掉linux下的僵尸进程

1.查找并干掉僵尸进程:
root@bt:~# ps -A -o stat,ppid,pid,cmd | grep -e '^[Zz]'
Z     1596  1632 [sh] <defunct>
Z     2666  3581 [dhclient] <defunct>
root@bt:~# kill -9 2666
root@bt:~# kill -9 1596
root@bt:~# ps -A -o stat,ppid,pid,cmd | grep -e '^[Zz]'
首先要去干掉僵尸进程,如果干掉失败,则干掉父进程。

 

你可能感兴趣的:(linux,僵尸进程)