0

Trying to install oracle VM on ubuntu on 16.04 ..It keeps erroring our when start oracle VM:

RTR3InitEx failed with rc=-1912 (rc=-1912)

The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing

'/sbin/vboxconfig'

may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user. 

kishore@kishore-ThinkPad-T410:/usr/bin$ dpkg --list virtualbox-*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                        Version            Architecture       Description
+++-===========================-==================-==================-===========================================================
ii  virtualbox-5.1:i386         5.1.24-117012~Ubun i386               Oracle VM VirtualBox
un  virtualbox-guest-additions- <none>             <none>             (no description available)
un  virtualbox-guest-modules    <none>             <none>             (no description available)
un  virtualbox-ose              <none>             <none>             (no description available)

ishore@kishore-ThinkPad-T410:/usr/bin$ uname -a
Linux kishore-ThinkPad-T410 4.4.0-83-generic #106-Ubuntu SMP Mon Jun 26 17:54:43 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

let me know if you need more information

Pilot6
  • 92,041

1 Answers1

2

You installed a 32-bit version of VirtualBox. That is wrong for your 64-bit system.

Run

sudo apt purge virtualbox-5.1:i386

and install the 64-bit version using dpkg.

Pilot6
  • 92,041