本文主要是介绍【报错信息】Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题描述
执行下列代码的时候报错如下
apt-get update && apt-get -f install
报错信息:
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
解决方法
1.先提权
sudo -s
2.重新执行代码
apt-get update && apt-get -f install
执行结果
可以看到已经正常执行了
这篇关于【报错信息】Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!