Tuesday, January 03, 2012

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

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...