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

上一篇:Linux Bash编程:shell语法及实用技巧


下一篇:个人总结---Where there's a will there's a way!