linux中用什么命令能终止僵尸进程?请高手赐教

2024-11-26 02:43:34
推荐回答(1个)
回答1:

用top看有无,如

Tasks: 63 total, 1 running, 61 sleeping, 0 stopped, 1 zombie

找出zombie process:

ps aux | awk '{ print $8 " " $2 }' | grep -w Z
可以得到类似Z+ 5067的输出
kill -9 5067