I have installed the following packages
virtualbox-kernel-2.0.6_2.6.27.7_smp-i486-1_SBo.tgz
virtualbox-kernel-addons-2.0.6_2.6.27.7_smp-i486-1_SBo.tgz
virtualbox-ose-2.0.6-i486-2_SBo.tgz
virtualbox-ose-addons-2.0.6-i486-2_SBo.tgz
xalan-c-1.10.0-i486-2_SBo.tgz
xalan-c-1.10.0-i486-2_SBo.tgz
acpica-20080829-i486-1_SBo.tgz
qt3.3.8b installed with 12.2
I added the following to rc.local
Code:
# Start vboxdrv
if [ -x /etc/rc.d/rc.vboxdrv ]; then
. /etc/rc.d/rc.vboxdrv start
fi
# Start vboxnet
if [ -x /etc/rc.d/rc.vboxnet ]; then
. /etc/rc.d/rc.vboxnet start
fi
when I run /etc/rc.d/rc.vboxdrv setup I get the following:
Code:
root@jdslack:/etc/rc.d# /etc/rc.d/rc.vboxdrv setup
Stopping VirtualBox kernel module ...done.
Recompiling VirtualBox kernel module ...failed!
(Look at /var/log/vbox-install.log to find out what went wrong)
The log tells me that there is a problem with line 255 of rc.vboxdrv
which looks like this
Code:
255 if ! $BUILDINTMP install > $LOG 2>&1; then
256 failure "Look at $LOG to find out what went wrong"
257 fi
Does anyone know what is wrong with my install?
Thank you - please let me know if I did not provide enough information