1

I am trying to start a VM using VirtualBox, however I get the following errors.

VB error 1

VB error 2

I have read many pages on this error (some on this forum) but none of the suggested fixes I have found seem to work. During install, whether using apt-get or a downloaded .deb I get install errors.

Terminal - install errors

I have tried installing VirtualBox 4.1 and 4.2 with the same results. Some suggestions I read sat to update the headers, where I get more errors.

Terminal - header errors

I must have some component or other missing from my system that VirtualBox does not like and dependencies that are not getting resolved :(

Are there any other suggestions?

Muhnamana
  • 1,880
Andrew
  • 644

2 Answers2

0

I gave up trying to get Virtualbox to work so I installed VMware. However after installing and running apt-get update and apt-get upgrade, VMware didn’t work :( But when I opened Virtualbox again, it did! So it worked out the fix for Virtualbox was to install VMware. It must have installed a dependency I needed. At least it works now!

Andrew
  • 644
0

After Virtualbox stopped working again, I found a more permanent fix on Super User. The below commands install the latest headers. The last one updates Virtualbox with the new information.

sudo apt-get update

apt-cache search linux-headers-$(uname -r)

sudo apt-get install linux-headers-$(uname -r)

sudo ./etc/init.d/vboxdrv setup
Andrew
  • 644