diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2012-10-02 13:32:56 -0500 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-10-07 09:18:01 -0400 |
commit | 66e00ebfd7c72e830fe29536604a045d8b3fb4ca (patch) | |
tree | 48b7ff42331abb4d9b759b042f9fc29523c6421c /system/xen/README.SLACKWARE | |
parent | 7bd3b03bf1a0e3a0f7162372c725618dd71b261c (diff) |
system/xen: Added (updated to version 4.2.0 from 13.37 repo)
This isn't quite ready yet, but it should at least mostly work.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xen/README.SLACKWARE')
-rw-r--r-- | system/xen/README.SLACKWARE | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/system/xen/README.SLACKWARE b/system/xen/README.SLACKWARE new file mode 100644 index 000000000000..97c28af6facc --- /dev/null +++ b/system/xen/README.SLACKWARE @@ -0,0 +1,39 @@ +After installing this package, in addition to the /usr/doc/xen-*/README file; +the Xen User Manual is installed as /usr/doc/xen-*/html. + +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 deprecated since Xen 4.2. +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 + |