E: Could not get lock /var/lib/dpkg/lock-frontend问题的解决方法
首先是在Ubuntu中的问题
sudo apt install xxx
sudo apt-get install xxx
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?
在学习ubuntu中csdn中大多数回答都是用ps或者top删除进程号,试了很多遍都没有用处
在搜寻之后终于找到一个有用的方法,在终端中依次输入下面的命令:
1、sudo rm /var/lib/apt/lists/lock
2、sudo rm /var/cache/apt/archives/lock
3、sudo rm /var/lib/dpkg/lock*
然后配置package
sudo dpkg --configure -a
这个时候在下载用sudo apt-get update命令就没有问题了。
同时,确保自己的Ubuntu是联网的。