Skip to main content

Error! Could not locate dkms.conf file install VirtualBox 4.1.8 on Ubuntu 11.10

Tried to update my Ubuntu host today and it did pickup that new version of VirtualBox is available (4.1.8). All other packages installed properly except that VirtualBox installation was complaining about missing dkms.conf file, see error message below.
$: sudo /etc/init.d/vboxdrv setup
 * Stopping VirtualBox kernel modules                                    [ OK ] 
 * Uninstalling old VirtualBox DKMS kernel modules                              
Error! Could not locate dkms.conf file.
File:  does not exist.
                                                                         [ OK ]
 * Trying to register the VirtualBox kernel modules using DKMS           [ OK ] 
 * Starting VirtualBox kernel modules                                    [ OK ] 

Though it looks like installation was fine but I am concerned about its effects to VirtualBox functionality. To fix this, do:

$: cd /var/lib/dkms/vboxhost
$: sudo rm -r 4.1.4
$: sudo /etc/init.d/vboxdrv setup

Of course you have to replace 4.1.4 with the old version of VirtualBox that you don't need.

~technos

Tags:
VirtualBox, Ubuntu, dkms.conf, file not found

Comments

Barosl LEE said…
Thanks! It solved the problem. I removed 4.0.12/ directory, and two broken symbolic links that had pointed to 4.0.12/2.6.38-10-generic/x86_64.

I don't know why they are not deleted automatically. Maybe it's a bug or something?
Barosl LEE said…
Thanks! It solved the problem. I removed 4.0.12/ directory, and two broken symbolic links that had pointed to 4.0.12/2.6.38-10-generic/x86_64.

I don't know why they are not deleted automatically. Maybe it's a bug or something?
Unknown said…
Thank you! I experienced this bug when upgrading from 4.1.8 to 4.1.10. This advice has helped improve the situation.
NickJ said…
I had the same with some old files left over from VirtualBox 3.2.6. Doing the following stopped the "Error! Could not locate dkms.conf file" messages:

sudo rm -r /var/lib/dkms/vboxnetadp /var/lib/dkms/vboxdrv /var/lib/dkms/vboxnetflt
Thanks for sharing NickJ.
Anonymous said…
It works! Thanks a lot!
ClementC said…
I had a similar issue on an Ubuntu VirtualBox guest rather than a host. The solution was to remove /var/lib/dkms/vboxguest/[old version] and run "sudo service vboxadd setup"
Anonymous said…
Thanks!!!!!
Furkan A said…
Thanks.
Anonymous said…
Thanks for the solution!
Anonymous said…
Thank you! for me the directory was /var/lib/dkms/ndiswrapper
it contained two directories: 1.59 and 1.60.
In 1.59 was a broken link (target non-existing). After removing the 1.59 directory, the "apt-get upgrade" worked.

Popular posts from this blog

The following add-ins could not be started MonoDevelop.GnomePlatform

Installing MonoDevelop in OpenSUSE 12.2 from its repository was very easy. When running it for the first time though I got the message: The following add-ins could not be started: The root of the trace shows MonoDevelop.GnomePlatform,2.8 A quick search shows that MonoDevelop depends on libgnomeui . This should have been part of dependencies when installing the application but well.... Below is the screen shot of the error message. References: http://software.1713.n2.nabble.com/MonoDevelop-and-openSUSE-12-1-td7462957.html [2013/04/09] - Same issue observed in OpenSUSE 12.3 and also the same fix. [2014/11/02] - Same issue observed in OpenSUSE 13.3, mondevelop 3.0.6 and the same fix.