summaryrefslogtreecommitdiffstats
path: root/system/virtualbox-ose/README.SLACKWARE
diff options
context:
space:
mode:
Diffstat (limited to 'system/virtualbox-ose/README.SLACKWARE')
-rw-r--r--system/virtualbox-ose/README.SLACKWARE21
1 files changed, 21 insertions, 0 deletions
diff --git a/system/virtualbox-ose/README.SLACKWARE b/system/virtualbox-ose/README.SLACKWARE
new file mode 100644
index 0000000000..9068a0bd37
--- /dev/null
+++ b/system/virtualbox-ose/README.SLACKWARE
@@ -0,0 +1,21 @@
+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.
+