卸载软件困难

卸载软件困难

我正在尝试使用以下命令卸载应用程序(Forticlient):

sudo apt-get --purge remove forticlient

当我运行它时出现以下错误:

E: Could not get lock /var/lib/dpkg/lock-frontend - open (11 Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

我试过全杀在 Forticlient 进程上,但错误仍然发生。

有没有办法查看哪个进程正在锁定文件?

或者,即使有锁,是否可以强制卸载?

答案1

搜索并终止所有 apt 进程:

ps aux | grep -i apt
sudo kill -9 <process id> 

您也可以输入

sudo killall -s9 apt apt-get

相关内容