diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2010-05-13 00:42:20 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 00:42:20 +0200 |
commit | a5ec78694960959c9aec67b28bca0f30afd46eeb (patch) | |
tree | 2830bf0c732771e5cc0bfa235dddd354ece7a588 /system/virtualbox-ose/README.SLACKWARE | |
parent | 1d7c033e170e304dfc6245a9f3c2c0a4f18405be (diff) |
system/virtualbox-ose: Updated for version 3.1.2
Diffstat (limited to 'system/virtualbox-ose/README.SLACKWARE')
-rw-r--r-- | system/virtualbox-ose/README.SLACKWARE | 21 |
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 0000000000000..9068a0bd374c3 --- /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. + |