我如何启用“Universe”存储库?

我如何启用“Universe”存储库?

如何在受支持的 Ubuntu 版本中访问 Universe 存储库?

答案1

如果您想要一个命令而不使用软件源勾选,则在终端中输入:

sudo add-apt-repository universe

在旧版本的 Ubuntu 上,您可能必须使用完整的源代码行:

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

要启用所有 Ubuntu 软件(main universe restricted multiverse)存储库,请使用

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"

您还可以添加partner具有不同链接的存储库(请参阅 ubuntu 与 canonical 之间的区别)

sudo add-apt-repository "deb http://archive.canonical.com/ubuntu $(lsb_release -sc) partner"

然后更新包列表:

sudo apt-get update

附言

$(lsb_release -sc)检查您的 Ubuntu 版本并将其名称放入源链接中。由于 12.04 被称为,您可以在给出 的precise终端中测试。这会在软件源中添加您的 Ubuntu 版本的准确名称。输入错误的单词,则不会有任何效果。lsb_release -scprecise

有关存储库的所有差异,请阅读https://help.ubuntu.com/community/Repositories/Ubuntu

答案2

首先,打开软件中心。单击“编辑”,然后单击“软件源”以打开软件源窗口。打开后,选中“社区维护的免费和开源软件(宇宙)”复选框。

在此处输入图片描述

现在,所有 Universe 包都应该像其他包一样出现在软件中心。

更多信息:

答案3

启用 Ubuntu 软件存储库的命令行方式对于 12.10 及以上版本:

要启用主存储库,

sudo add-apt-repository main

要启用 Universe 存储库,

sudo add-apt-repository universe

要启用多元宇宙存储库,

sudo add-apt-repository multiverse

要启用受限存储库,

sudo add-apt-repository restricted

笔记:

启用存储库后,请不要忘记更新它。运行以下命令来更新存储库,

sudo apt-get update

答案4

要使用 add-apt-repository,您将需要软件属性包 (software-properties-common):

sudo apt install software-properties-common

然后您可以使用 add-apt-repository 添加所需的存储库:

sudo add-apt-repository universe
sudo apt update

相关内容