web-dev-qa-db-ja.com

Ubuntu 18.04.1サーバーにVirtualbox-5.2をインストールできない

HP ProLiant DL380 Generation 7(G7)で実行されているUbuntu 18.04.1サーバーの新規インストールがあります。 VirtualBox 5.2をインストールしようとしています。

このウェブサイトでチュートリアルを使用しました: https://linuxize.com/post/how-to-install-virtualbox-on-ubuntu-18-04/

コマンドSudo apt-get install virtualbox-5.2を実行すると、わかりました。

The following packages have unmet dependencies:  
**virtualbox-5.2 : Depends: libqt5x11extras5 (>= 5.6.0) but it is not installable**  
Recommends: libsdl-ttf2.0-0 but it is not installable  
Recommends: gcc but it is not going to be installed  
Recommends: make but it is not going to be installed or  
build-essential but it is not going to be installed or  
dpkg-dev but it is not going to be installed  
Recommends: binutils but it is not going to be installed  
Recommends: pdf-viewer  
E: Unable to correct problems, you have held broken packages.

まったく同じ方法で月曜日にvirtualboxをインストールしましたが、それで動作しました。これを修正する方法がわかりません。この問題が突然発生するのはなぜですか?

更新:非常によく似た質問を見つけました。 buntu 16.04にOracle VirtualBox 5.1をインストール

1
Chris Fraser

UbuntuリポジトリからVirtualboxをインストールすることをお勧めしますが、現時点では5.2よりも低い場合があります。

すでにリポジトリを追加している場合(リンクされたチュートリアルのステップ2)、このコマンドで リポジトリを削除する方法? から削除します。

Sudo add-apt-repository -r ppa:<ppa to remove>

または、/etc/apt/sources.list.d/で作成したファイルを削除しても機能します。

マルチバースリポジトリを有効にし、aptパッケージを更新します

Sudo apt update

そして今、最新のバーチャルボックスをインストールします

Sudo apt install virtualbox
2
Katu