查看僵尸进程

查看所有僵尸进程:

ps -A -o stat,user,pid,ppid,%mem,%cpu,cmd | grep -e "^[Zz]"

说明:进程状态以 Z 或 z 开头的为僵尸进程。需要 kill -9 杀死它们的父进程。

#linux-admin