slackbuilds_ponce/system/virtualbox/README.SLACKWARE
Heinz Wiesinger b210a8c79f system/virtualbox: Updated for version 4.2.0.
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2012-09-18 19:34:05 -05:00

23 lines
606 B
Text

You'll need to add the following lines to /etc/rc.d/rc.local:
# Start vboxdrv
if [ -x /etc/rc.d/rc.vboxdrv ]; then
/etc/rc.d/rc.vboxdrv start
fi
This will load the support kernel module for VirtualBox.
You'll then need to add the following lines to /etc/rc.d/rc.local_shutdown:
# Stop vboxdrv
if [ -x /etc/rc.d/rc.vboxdrv ]; then
/etc/rc.d/rc.vboxdrv stop
fi
Any user accounts that plan to use virtualbox will need to be members
of the "vboxusers" group.
In order to use USB devices in VirtualBox Guests you may have to restart
your host system after installing the virtualbox package.