How to correct virtualbox installation

UbuntuVirtualboxApt Get

Ubuntu Problem Overview


Here is how the error output is if I run virtualbox from the terminal. How to correct it? I am on a Ubuntu 12.10 64bit machine.

virtualbox
WARNING: The character device /dev/vboxdrv does not exist.
	 Please install the virtualbox-ose-dkms package and the appropriate
	 headers, most likely linux-headers-generic.

	 You will not be able to start VMs until this problem is fixed.

EDIT:

I have both the latest linux-headers-generic and virtualbox-ose-dkms packages

Ubuntu Solutions


Solution 1 - Ubuntu

Before attempting to run this be sure that the current running Kernel headers are installed on your system. If you don't you will receive an error indicating that you need to install them or use the --kernelsource option to point to said headers.

Following the directions on this blog post helped me. Basically after you install those two packages you also need to do the reconfiguration:

sudo dpkg-reconfigure virtualbox-dkms

sudo dpkg-reconfigure virtualbox

Solution 2 - Ubuntu

After the two dpkg-reconfigure commands I also needed to run:

sudo modprobe vboxdrv

And to fix eth0:

sudo modprobe vboxnetflt

Solution 3 - Ubuntu

If you have the same problem in ubuntu 12.04 the above solution might not work (at least it didn't work for me and another two - see the error I was getting in note#1 bellow). Installing the Oracle version of Virtualbox however worked just fine.


Note #1: I was getting the errors below:

ndemou  ~ dkms status
virtualbox, 4.1.12: added
ndemou  ~ sudo dkms install virtualbox/4.1.12
Kernel preparation unnecessary for this kernel.  Skipping...

Building module:
cleaning build area....
make KERNELRELEASE=3.5.0-28-generic -C /lib/modules/3.5.0-28-generic/build M=/var/lib/dkms/virtualbox/4.1.12/build.....(bad exit status: 2)
Error! Bad return status for module build on kernel: 3.5.0-28-generic (i686)
Consult /var/lib/dkms/virtualbox/4.1.12/build/make.log for more information.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionfootyView Question on Stackoverflow
Solution 1 - UbuntuMike RuelleView Answer on Stackoverflow
Solution 2 - UbuntuAlexDView Answer on Stackoverflow
Solution 3 - UbuntundemouView Answer on Stackoverflow