Wine をインストールしようとすると、次のようになります:
sudo apt-get install wine
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package wine is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'wine' has no installation candidate
これは私には意味が分かりません。私はUbuntu 15.04 Vividを使っていて、パッケージ。
の内容はetc/apt/sources.list
以下のとおりです。
deb http://ports.ubuntu.com/ vivid main restricted universe multiverse
# deb-src http://ports.ubuntu.com/ vivid main restricted multiverse
deb http://ports.ubuntu.com/ vivid-updates main restricted universe multiverse
# deb-src http://ports.ubuntu.com/ vivid-updates main restricted universe multiverse
deb http://ports.ubuntu.com/ vivid-security main restricted universe multiverse
# deb-src http://ports.ubuntu.com/ vivid-security main restricted universe multiverse
deb http://ports.ubuntu.com/ vivid-backports main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ vivid main universe restricted multiverse
答え1
Wine は Universe リポジトリにあり、デフォルトで有効になっているはずです。ソフトウェアとアップデート > Ubuntu ソフトウェア > コミュニティが管理する無料のオープンソース ソフトウェア (universe) で有効になっているかどうかを確認します。有効になっていない場合は、ボックスにチェックを入れます。
その後実行しsudo apt-get update
てwineをインストールできます。
あるいは、最新の不安定バージョンを含む PPA も利用可能です。これをインストールするには、次のコマンドを実行します。
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
その後再度実行します。
これら 2 つのうちのいずれかを実行した後、sudo apt-get install wine
wine のインストールを実行するだけです。