Kill -9 无法杀死父进程 PID = 1

Kill -9 无法杀死父进程 PID = 1

我有一个父进程 PID = 1。

该命令kill -9 382不起作用。我是根。

我能做些什么?

root       382     1  0 07:29 ?        00:00:00 dsmrecall /ptstv/HVideo/2014/2014761/G201476100010007.mxf

答案1

该进程的所有者是root因此您应该kill以 user 身份执行该命令root

您可以通过运行以下命令来做到这一点:

sudo kill -9 382

或者分两步:

  1. 转而使用root以下选项之一:

    • su -
    • sudo su -
    • sudo -i
  2. kill作为用户的过程root

    杀-9 382

曼苏

   su allows to run commands with a substitute user and group ID.

   When called without arguments, su defaults to running an interactive
   shell as root.

有关 sudo 与 su 的更多信息

相关内容