What’s my effort worth to you?

If you find the information here useful, time saving, and valuable - as I hope you will, please consider making a small donation.

It will help me keep this site running, and that means more useful articles in the future!

What's not to like!? :D

Problems with virtualbox 4.0.2 and linux kernel 2.6.38? Here’s a solution..

Just copy/paste this entire line into a terminal window…

sudo cd /usr/share/virtualbox/src/vboxhost && for file in `grep “autoconf.h” * -R| cut -f1 -d:`; do sed -i ‘s/^#\(\s*\)include <linux\/autoconf\.h>/#\1include <generated\/autoconf.h>/g’ $file; done

Then type;

sudo /etc/init.d/vboxdrv setup

The virtualbox driver should now compile.

The file “autoconf.h” has been moved in more recent kernels from <linux/autoconf.h>

Continue reading Problems with virtualbox 4.0.2 and linux kernel 2.6.38? Here’s a solution..