Answers:
Multiverse存储库包含“非免费”的软件包(软件),指的是许可限制。
Multiverse存储库包含已归类为非免费的软件。在某些司法管辖区可能不允许该软件。从此存储库安装每个软件包时,应验证您所在国家/地区的法律允许您使用它。另外,此软件可能不包含安全更新。
有关ubuntu存储库的基本原理的其他信息,请参阅默认Ubuntu软件存储库概述。
您可以从命令行或以图形方式启用存储库。
打开软件中心,导航到顶部的“ Ubuntu软件”选项卡,选择(复选)multiverse。
使用“重新加载”按钮更新您的包裹清单。
/etc/apt/sources.list
用任何编辑器打开。
# command line editor (nano)
sudo -e /etc/apt/sources.list
# graphical editor
gksu gedit /etc/apt/sources.list
取消注释(从前面删除#)multiverse
或在需要时将其添加到其中,因此这些行如下所示:
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
#deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric multiverse
deb http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
#deb-src http://us.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
deb-src
如果需要下载源代码,请取消注释行(大多数用户将不需要源代码,因此如有疑问,请将其禁用)。
保存您的编辑(如果您使用nano,Ctrl+ X,然后输入Y以保存更改),然后更新包列表,运行
sudo apt-get update
sed
取消注释以结尾的行multiverse
:sudo sed -i '/^#.*multiverse$/s/^# //g' /etc/apt/sources.list
sudo apt-add-repository multiverse
更好,更现代。
较新版本的Ubuntu可用的另一个选项:
sudo apt-add-repository multiverse && sudo apt-get update
从手册页:
Examples:
apt-add-repository 'deb http://myserver/path/to/repo stable myrepo'
apt-add-repository 'http://myserver/path/to/repo myrepo'
apt-add-repository 'https://packages.medibuntu.org free non-free'
apt-add-repository http://extras.ubuntu.com/ubuntu
apt-add-repository ppa:user/repository
apt-add-repository multiverse
从命令行而不使用文本编辑器或GUI:
sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list
sudo sed -i "/^# deb .* multiverse$/ s/^# //" /etc/apt/sources.list; sudo apt-get update