Answers:
如果要使用一个命令而不使用软件源标记,则在终端中输入:
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与规范的区别)
sudo add-apt-repository "deb http://archive.canonical.com/ubuntu $(lsb_release -sc) partner"
然后更新软件包列表:
sudo apt-get update
ps
$(lsb_release -sc)
检查您的Ubuntu版本,并将其名称放在源链接中。由于12.04叫precise
,你可以在一个终端测试lsb_release -sc
给出precise
。这将在软件源中添加您的Ubuntu版本的确切名称。错误的字词,无济于事。
有关存储库中的所有差异,请阅读https://help.ubuntu.com/community/Repositories/Ubuntu
sudo apt-get update
然后才能安装所需的软件包。
首先,打开软件中心。单击“编辑”,然后单击“软件源”,以打开软件源窗口。打开后,选中“社区维护的免费和开源软件(Universe)”框。
现在,所有Universe软件包都应该像其他所有软件包一样显示在软件中心中。
更多信息:
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository multiverse
sudo add-apt-repository restricted
注意:
启用存储库后,请不要忘记对其进行更新。运行以下命令以更新存储库,
sudo apt-get update