安装时权限被拒绝

安装时权限被拒绝

当我运行命令时出现上述错误:

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

在 Linux 中并非所有用户都可以修改系统文件。

此类文件夹/etc /dev /bin包含系统文件,只有管理员才有权修改。

为了安装新包,您必须使用 root 帐户。

尝试使用以下命令: sudo apt get install -f

sudo是以超级用户身份运行作为参数传递的命令的命令

相关内容