我有一个父进程 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
或者分两步:
转而使用
root
以下选项之一:su -
sudo su -
sudo -i
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.