我想终止与 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