Ubuntu 10.04 VirtualBox Network Bridging Failure

If you’re using Ubuntu 10.04 and can’t get VirtualBox to start it may be giving you messages about loading “vboxnetflt”.  For some reason the latest round of updates screwed up the ability for the network bridging modules to load properly. You’ve tried to modprobe vboxnetlft just like the message on screen tells you but you get this message:

FATAL: Error inserting vboxnetflt (/lib/modules/2.6.32-22-generic/updates/dkms/vboxnetflt.ko): Invalid module format

Here’s the workaround until there is a proper set of updates:

sudo modprobe vboxdrv
sudo insmod /lib/modules/$(uname -r)/updates/dkms/vboxnetflt.ko
sudo insmod /lib/modules/$(uname -r)/updates/dkms/vboxnetadp.ko
Share