フォアグラウンドでプログラム(デーモンプログラム)を起動し、それをで殺しましたkill -9
が、ゾンビが残っており、で殺せませんkill -9
。ゾンビプロセスを殺すには?
ゾンビが死んだプロセス(すでに殺された)である場合、どのようにしてそれを出力から削除しps aux
ますか?
root@OpenWrt:~# anyprogramd &
root@OpenWrt:~# ps aux | grep anyprogram
1163 root 2552 S anyprogramd
1167 root 2552 S anyprogramd
1169 root 2552 S anyprogramd
1170 root 2552 S anyprogramd
10101 root 944 S grep anyprogram
root@OpenWrt:~# pidof anyprogramd
1170 1169 1167 1163
root@OpenWrt:~# kill -9 1170 1169 1167 1163
root@OpenWrt:~# ps aux |grep anyprogram
1163 root 0 Z [anyprogramd]
root@OpenWrt:~# kill -9 1163
root@OpenWrt:~# ps aux |grep anyprogram
1163 root 0 Z [anyprogramd]
ps -o ppid 1163
言うの?つまり、1163の親は誰ですか。それが終了しなければならないプロセスです。