Forgot your password?
typodupeerror
User Journal

Journal lisboa's Journal: Xen 3.0.2-2 in Ubuntu Dapper (6.06)

A little reminder: Ubuntu seems to remove /var/run/xenstored on every boot; so I added some lines to /etc/init.d/xend; here is the patch:

--- /etc/init.d/xend
--- xend.old 2006-06-26 12:28:00.000000000 -0300
+++ xend 2006-06-26 12:22:18.000000000 -0300
@@ -11,6 +11,10 @@
                exit 0
  fi

+if [ ! -d /var/run/xenstored ]; then
+ mkdir -p /var/run/xenstored
+fi
+
  # Wait for Xend to be up
  function await_daemons_up
  {
--- eof

This discussion has been archived. No new comments can be posted.

Xen 3.0.2-2 in Ubuntu Dapper (6.06)

Comments Filter:

"Time is money and money can't buy you love and I love your outfit" - T.H.U.N.D.E.R. #1

Working...