当我尝试通过终端安装时出现此错误:
enyel@Alexandria:~$ sudo apt-get unsettings
E: Invalid operation unsettings
enyel@Alexandria:~$ sudo apt-get install unsettings
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
我已经添加了 PPA 并更新了它,有人可以帮忙吗?
答案1
E: 无法获取锁 /var/lib/dpkg/lock - 打开(11:资源暂时不可用)
这说明另一个dpkg
或apt
命令已在运行。请使用“ps auxw |egrep -e 'apt|dpkg'”检查正在运行的进程
- 如果这样的程序正在运行,请将其终止。
- 如果确实没有这样的程序正在运行,请删除锁定文件:
sudo rm -f /var/lib/dpkg/lock
为了理智调用dpkg --configure -a
答案2
跑步
sudo rm /var/lib/dpkg/lock
sudo dpkg --configure -a
sudo apt-get install unsettings