我无法安装 ubuntu-restricted-extras

我无法安装 ubuntu-restricted-extras

当我尝试使用 安装 ubuntu-restricted-extras 时sudo apt-get install ubuntu-restricted-extras,出现以下错误:

E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?

答案1

只需等待几秒钟,然后重试。这可能是因为后台进程正在检查更新。

答案2

它似乎apt-get在忙于做某事时过早停止了,因此apt仍然处于锁定状态。请执行以下操作:

重新启动您的机器(sudo reboot)并尝试再次安装。

如果此时您仍然无法安装,请执行以下操作:

  • 删除锁文件:

    sudo rm /var/lib/apt/lists/lock

  • 删除缓存目录中的锁文件:

    sudo rm /var/cache/apt/archives/lock

  • 安装 ubuntu-restricted-extras:

    sudo apt-get update

    sudo apt-get install ubuntu-restricted-extras

相关内容