virtualbox-5.0はubuntu-server 14.04.4にはインストールされません。

virtualbox-5.0はubuntu-server 14.04.4にはインストールされません。

バーチャルボックスをインストールできません。

最近ubuntu-server 14.04.4を使用してシステム全体を再インストールしました。推奨されるようにvirtualboxリポジトリを追加しました。彼らのウェブサイト:追加しました

deb http://download.virtualbox.org/virtualbox/debian jessie contrib

私のsource.listに対応するキーとapt-get update-edを追加しました(すべて機能しました)。その後、apt-get install virtualbox-5.0次のエラーが発生しました。

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: libdevmapper1.02.1 (>= 2:1.02.90) but 2:1.02.77-6ubuntu2 is to be installed
                  Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04.1 is to be installed
E: Unable to correct problems, you have held broken packages.

提案どおりに維持されたパッケージを確認し、適性を試してみました。ここ

apt-mark showhold出力がなく、aptitude唯一の解決策はインストールしないことを主張しますvirtualbox-5.0

gavinsyancey@boxen:~$ sudo aptitude install virtualbox-5.0
The following NEW packages will be installed:
  libaudio2{a} libmysqlclient18{a} libqt4-declarative{a} libqt4-network{a} libqt4-opengl{a} libqt4-script{a} libqt4-sql{a} libqt4-sql-mysql{a} libqt4-xml{a} libqt4-xmlpatterns{a} 
  libqtdbus4{a} libqtgui4{a} mysql-common{a} virtualbox-5.0{b} 
0 packages upgraded, 14 newly installed, 0 to remove and 0 not upgraded.
Need to get 73.9 MB of archives. After unpacking 191 MB will be used.
The following packages have unmet dependencies:
 virtualbox-5.0 : Depends: libdevmapper1.02.1 (>= 2:1.02.90) but 2:1.02.77-6ubuntu2 is installed.
                  Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04.1 is installed.
The following actions will resolve these dependencies:

     Keep the following packages at their current version:
1)     virtualbox-5.0 [Not Installed]                     



Accept this solution? [Y/n/q/?] n

*** No more solutions available ***

The following actions will resolve these dependencies:

     Keep the following packages at their current version:
1)     virtualbox-5.0 [Not Installed]                     



Accept this solution? [Y/n/q/?] 
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.

この時点では、次に何をすべきかわかりません。自分のコンピュータにvirtualboxをインストールするにはどうすればよいですか?

要求どおり、出力は次のようapt-cache policy virtualboxになります。

virtualbox:
  Installed: (none)
  Candidate: 4.3.36-dfsg-1+deb8u1ubuntu1.14.04.1
  Version table:
     4.3.36-dfsg-1+deb8u1ubuntu1.14.04.1 0
        500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/multiverse amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ trusty-security/multiverse amd64 Packages
     4.3.10-dfsg-1 0
        500 http://us.archive.ubuntu.com/ubuntu/ trusty/multiverse amd64 Packages

ベストアンサー1

ファイルを編集し、/etc/apt/sources.list次の行のいずれかを追加します。

 deb http://download.virtualbox.org/virtualbox/debian trusty contrib

保存と終了

修正する sudo apt-get update

dkmの設置

 sudo apt-get install dkms

Oracle公開鍵を設定します。

 wget http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc
 sudo apt-key add oracle_vbox.asc

Oracleバーチャルボックスのインストール

 sudo apt-get update
 sudo apt-get install virtualbox-5.0

おすすめ記事