我的进程使用此命令显示:
abc@ABC:~$ ps -e | grep -e apt -e adept | grep -v grep 2838 ? 00:00:11 aptd
2838
使用此命令终止该进程sudo kill -9 2838
但它也给我错误
bash: kill: (2838) - Operation not permitted
我Ubuntu 12.04
现在正在使用我能做什么呢Error
?
答案1
您可能需要使用sudo
。
sudo kill -9 2838
然后pgrep -fl apt
看看它是否仍在运行或
ps aux |grep aptd
查看用户是谁以及 PID 是什么:
phil 20438 0.0 0.0 11744 916 pts/2 S+ 10:43 0:00 grep --colour=auto aptd