web-dev-qa-db-ja.com

15.10にVirtualBox 5.0をインストールしようとする際の依存関係エラー

Ubuntu GNOME 15.10をGNOME 3.18で実行しており、VirtualBox 5.0をシステムにインストールしようとしています。Debian-based Linux distributionsインストールセクションのすべての指示に従いました here 実際にインストールするには:

Sudo apt-get install virtualbox-5.0

私はこの出力を取得します:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
 virtualbox-5.0 : Depends: libvpx1 (>= 1.0.0) but it is not installable
                  Recommends: libsdl-ttf2.0-0 but it is not going to be installed
                  Recommends: dkms but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

そして、私は実行しようとしました:

Sudo apt-get install -f

しかし、アップグレードまたはインストールするものは何もないという。

だから私は何をしますか? VirtualBox 5.0を本当にインストールする必要がありますが、できないようです。

情報の更新:

apt-cache policy virtualbox-5.0 libvpx1出力:

virtualbox-5.0:
  Installed: (none)
  Candidate: 5.0.10-104061~Ubuntu~trusty
  Version table:
     5.0.10-104061~Ubuntu~trusty 0
        500 http://download.virtualbox.org/virtualbox/debian/ vivid/contrib AMD64 Packages
libvpx1:
  Installed: (none)
  Candidate: (none)
  Version table:
7
user364819

Vividのリポジトリを使用し、このリポジトリ内のVirtualBoxパッケージはlibvpx1に依存します。これはVividでは使用できますが、Wilyでは使用できません。

Wilyを使用しているときに、リポジトリを変更します。

Sudo sed -i 's/vivid/wily/' /etc/apt/sources.list
Sudo apt-get update
Sudo apt-get install virtualbox-5.0
10
A.B.

私はそれがうまくいくと確信しています。

wget http://ftp.us.debian.org/debian/pool/main/libv/libvpx/libvpx1_1.1.0-1_AMD64.deb
Sudo dpkg -i libvpx1_1.1.0-1_AMD64.deb
wget http://ftp.cn.debian.org/debian/pool/main/libp/libpng/libpng12-0_1.2.49-1+deb7u2_AMD64.deb
Sudo dpkg -i libpng12-0_1.2.49-1+deb7u2_AMD64.deb

Sudo apt-get install virtualbox-5.0がVirtualBox 5のインストールがないことを示している場合、インストールファイルを このリンク からダウンロードします

5

これはもう問題ではないはずです。カスタムPPAを追加するときにのみこの問題が発生しましたが、通常のUbuntuバージョン(5.0.14)は他のPPAがなくても完全にインストールできます。

「Sudo apt-get install virtualbox」

0
twicejr