无法通过“kill -9”终止进程“

无法通过“kill -9”终止进程“

我想终止与 rsync 相关的进程。

通过输入ps axu | grep -i lsyncd,我收到有关一个过程的信息:

andrej   10690  0.0  0.0  15984  1148 pts/1    S+   16:52   0:00 grep --color=auto -i lsyncd

但是当我试图杀死它时,通过使用sudo kill -9 10690我收到:

 kill: (10690): There is no such process

答案1

您正在尝试终止正在运行的命令。

10690是一个grep进程。当你试图终止它时,它已经完成了。

答案2

阅读man pgrep并使用

pgrep lsyncd
pkill -9 lsyncd

如果您不拥有该流程,则可能必须pkill在前面加上。sudo

相关内容