diff options
author | mario <mario@slackverse.org> | 2010-10-10 14:17:24 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-10-10 14:17:24 -0500 |
commit | 602d2eb9eed94819b5cf4480ef403639afe028f5 (patch) | |
tree | 5c08c37f6f960a111af84c5aa58466c95947e73d /system/xen/README.SLACKWARE | |
parent | f5fdea9bb70cc8950ab3e5c1ff0437bc7351cf52 (diff) | |
download | slackbuilds-602d2eb9eed94819b5cf4480ef403639afe028f5.tar.gz |
system/xen: Added (the Xen virtualization hypervisor)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xen/README.SLACKWARE')
-rw-r--r-- | system/xen/README.SLACKWARE | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/system/xen/README.SLACKWARE b/system/xen/README.SLACKWARE new file mode 100644 index 0000000000..a9bea1dd8c --- /dev/null +++ b/system/xen/README.SLACKWARE @@ -0,0 +1,31 @@ +After installing this package, in addition to the /usr/doc/xen-*/README file; +the Xen User Manual is installed as /usr/doc/xen-*/pdf/user.pdf. + +The rc.xend service must be started before Xen can be used. +You may wish to add these lines to /etc/rc.d/rc.local to start this service +after booting from your xen kernel. + + if [[ $(uname -r) = *xen ]]; then + if [ -x /etc/rc.d/rc.xend ]; then + /etc/rc.d/rc.xend start + fi + if [ -x /etc/rc.d/rc.xendomains ]; then + /etc/rc.d/rc.xendomains start + fi + fi + +You may also add these lines to /etc/rc.d/rc.local_shutdown + + if [[ $(uname -r) = *xen ]]; then + if [ -x /etc/rc.d/rc.xendomains ]; then + /etc/rc.d/rc.xendomains stop + fi + if [ -x /etc/rc.d/rc.xend ]; then + /etc/rc.d/rc.xend stop + fi + fi + +Remember to give executable permission to /etc/rc.d/rc.local_shutdown: + + chmod 0755 /etc/rc.d/rc.local_shutdown + |