Ubuntu 18.04.1 无法安装 VirtualBox-6.0

Ubuntu 18.04.1 无法安装 VirtualBox-6.0

我跟随virtualbox 官方教程基于 Debian 的 Linux 发行版但有些不对劲

osboxes@osboxes:~$ sudo apt-get install virtualbox-6.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-6.0 : Depends: libqt5x11extras5 (>= 5.6.0) but it is not installable
                  Recommends: libsdl-ttf2.0-0 but it is not installable
                  Recommends: pdf-viewer
E: Unable to correct problems, you have held broken packages.

答案1

添加一些存储库并安装缺少的依赖项对我有用:

sudo add-apt-repository universe
sudo add-apt-repository multiverse
sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian bionic contrib"
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install libpng16-16 libqt5core5a libqt5printsupport5 libqt5widgets5 libqt5x11extras5
sudo apt-get install virtualbox-6.0

根据这个答案: Virtual Box 5.1.22 安装失败

相关内容