Ubuntu 连接时显示 There is 1 zombie process.

什么是僵尸进程?

僵尸进程是当子进程比父进程先结束,而父进程又没有回收子进程,释放子进程占用的资源,此时子进程将成为一个僵尸进程。

如何杀死僵尸进程

  1. 先找到僵尸进程
    ps axo stat,ppid,pid,comm | grep -w defunct

  2. 杀死父级进程
    sudo kill -9 <parent_process_number> parent_process_number对应第一点显示的ppid

Ubuntu 连接时显示 There is 1 zombie process.

上一篇:MyEclipse,【Lambda expressions are allowed only at source level 1.8 or above】编译错误的解决


下一篇:Linux chrt 命令