杀死Linux中的defunct进程(僵尸进程)的方法指南_LINUX_操作系统_脚本之家https://www.jb51.net/LINUXjishu/457748.html
ps -ef | grep app_crm/ | awk ‘{print $2}‘ | xargs kill -9
这样能看到僵尸进程。
杀死Linux中的defunct进程(僵尸进程)的方法指南
原文:https://www.cnblogs.com/rgqancy/p/11953068.html