I have downloaded Virtualbox from the official repository. However, I can't manage to install it on Ubuntu 19.10:
> lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 19.10
Release: 19.10
Codename: eoan
It says that my configuration does not have some dependencies:
dpkg -i virtualbox-6.0_6.0.14-133895~Ubuntu~bionic_amd64.deb
Selecting previously unselected package virtualbox-6.0.
(Reading database ... 183239 files and directories currently installed.)
Preparing to unpack virtualbox-6.0_6.0.14-133895~Ubuntu~bionic_amd64.deb ...
Unpacking virtualbox-6.0 (6.0.14-133895~Ubuntu~bionic) ...
dpkg: dependency problems prevent configuration of virtualbox-6.0:
virtualbox-6.0 depends on libqt5opengl5 (>= 5.0.2); however:
Package libqt5opengl5 is not installed.
virtualbox-6.0 depends on libqt5printsupport5 (>= 5.0.2); however:
Package libqt5printsupport5 is not installed.
virtualbox-6.0 depends on libqt5x11extras5 (>= 5.6.0); however:
Package libqt5x11extras5 is not installed.
virtualbox-6.0 depends on libsdl1.2debian (>= 1.2.11); however:
Package libsdl1.2debian is not installed.
virtualbox-6.0 depends on libvpx5 (>= 1.6.0); however:
Package libvpx5 is not installed.
dpkg: error processing package virtualbox-6.0 (--install):
dependency problems - leaving unconfigured
Processing triggers for systemd (242-7ubuntu3) ...
Processing triggers for gnome-menus (3.32.0-1ubuntu1) ...
Processing triggers for desktop-file-utils (0.24-1ubuntu1) ...
Processing triggers for mime-support (3.63ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for shared-mime-info (1.10-1) ...
Errors were encountered while processing:
virtualbox-6.0
Running sudo apt-get install -f
won't install the dependencies, but will remove the uncomplete installation of Virtualbox. Am I missing something?
sudo apt install virtualbox
will work; your issue is trying to install an unofficial (official for 18.04 but you're not running 18.04 thus it's unofficial) package. – guiverc Oct 23 '19 at 07:03and suggests running '/sbin/vboxconfig' as root. This also fails, compiling kernel modules ends with this log entry: /tmp/vbox.0/r0drv/linux/mp-r0drv-linux.c:287:18: error: void value not ignored as it ought to be 287 | int rc = smp_call_function(rtmpLinuxAllWrapper, &Args, 0 /* wait */); What to do?
– Enno Oct 25 '19 at 06:41vritualbox-dkms
before that,dkms
is good enough for vbox 6.1. – frank_108 Dec 25 '19 at 20:11