回答:
Multiverseリポジトリには、ライセンスの制限を示す「無料ではない」パッケージ(ソフトウェア)が含まれています。
Multiverseリポジトリには、非フリーとして分類されたソフトウェアが含まれています。このソフトウェアは、一部の管轄区域では許可されていない場合があります。このリポジトリから各パッケージをインストールするときは、国の法律で使用が許可されていることを確認する必要があります。また、このソフトウェアにはセキュリティ更新プログラムが含まれていない場合があります。
Ubuntuリポジトリの哲学に関する追加情報については、デフォルトのUbuntuソフトウェアリポジトリの概要を参照してください。
リポジトリは、コマンドラインから、またはグラフィカルに有効化できます。
ソフトウェアセンターを開き、上部の[Ubuntuソフトウェア]タブに移動して、マルチバースを選択(オフ)します。
[リロード]ボタンを使用して、パッケージリストを更新します。
/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
manページから:
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