解决Ubuntu中Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another proce...

百度到的方法
所以,第一种方法,我们只需要杀死之前的进程,释放系统锁就可以了:

ps -e|grep apt-get
显示

6965 ? 00:00:01 apt-get
然后执行

sudo kill 6965
第二种方法,强制解锁

sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock
但是试了几次却不管用,可行性未知
===========================================
重启 系统
sudo systemctl --force --force reboot
这个会重新启动系统,所以使用前先保存一下需要保存的文件,这个方法是可行的

你可能感兴趣的:(解决Ubuntu中Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another proce...)