在Ubuntu中,使用sudo apt 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?
解决方法:
- 找出apt-get是否有进程在使用。
用以下命令查找到进程号。
ps aux | grep apt
再用kill命令杀死进程。
sudo kill -9 进程号
- 删除提示的文件。
sudo rm /var/lib/dpkg/lock-frontend