summaryrefslogtreecommitdiff
path: root/system/xen/README.SLACKWARE
diff options
context:
space:
mode:
authormario <mario@slackverse.org>2011-07-17 12:43:12 -0300
committerRobby Workman <rworkman@slackbuilds.org>2011-07-21 22:52:10 -0500
commit29f2e42098ae40204d9009b56d3e1f4145bd5b30 (patch)
tree7641cd78ac97d41518fc57ebbf65bb57928dd764 /system/xen/README.SLACKWARE
parent47ac89cd6c90eff8dcef43bf03a63d3f3fad8faa (diff)
downloadslackbuilds-29f2e42098ae40204d9009b56d3e1f4145bd5b30.tar.gz
system/xen: Added (the Xen virtualization hypervisor)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'system/xen/README.SLACKWARE')
-rw-r--r--system/xen/README.SLACKWARE38
1 files changed, 38 insertions, 0 deletions
diff --git a/system/xen/README.SLACKWARE b/system/xen/README.SLACKWARE
new file mode 100644
index 0000000000..8d3ac3c1bd
--- /dev/null
+++ b/system/xen/README.SLACKWARE
@@ -0,0 +1,38 @@
+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.
+
+Before Xen can be used, xenstored, xenconsoled and xenbackendd services must
+be started, wich must be done with rc.xencommons script.
+The rc.xend script is no longer needed if you are going to use 'xl' instead
+of 'xm'. As a matter of fact, 'xm' is marked as supported but deprecated in
+Xen 4.1. Future versions of Xen will no longer support 'xm'.
+You may wish to add these lines to /etc/rc.d/rc.local to start this service
+after booting from your Xen kernel:
+
+ if [ -d /proc/xen ]; then
+ if [ -x /etc/rc.d/rc.xencommons ]; then
+ echo "Starting XEN commons: /etc/rc.d/rc.xencommons"
+ /etc/rc.d/rc.xencommons start
+ fi
+ if [ -x /etc/rc.d/rc.xendomains ]; then
+ echo "Starting XEN domains: /etc/rc.d/rc.xendomains"
+ /etc/rc.d/rc.xendomains start
+ fi
+ fi
+
+You may also add these lines to /etc/rc.d/rc.local_shutdown:
+
+ if [ -d /proc/xen ]; then
+ if [ -x /etc/rc.d/rc.xendomains ]; then
+ echo "Stopping XEN domains: /etc/rc.d/rc.xendomains"
+ /etc/rc.d/rc.xendomains stop
+ fi
+ if [ -x /etc/rc.d/rc.xencommons ]; then
+ echo "Stopping XEN commons: /etc/rc.d/rc.xencommons"
+ /etc/rc.d/rc.xencommons stop
+ fi
+ fi
+
+Remember to give executable permission to /etc/rc.d/rc.local_shutdown:
+
+ chmod 0755 /etc/rc.d/rc.local_shutdown