aboutsummaryrefslogtreecommitdiffstats
path: root/stubdom/README
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-02-26 15:11:51 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-02-26 15:11:51 +0000
commit98317c0a457c92a7d199d4a2a72062a8dfed02cb (patch)
tree7a8c1b9a88cafe388e7d1c08380db1b17f0083ec /stubdom/README
parent480b3a06d1fd212851286a9803ffed70bbe3d9d9 (diff)
downloadxen-98317c0a457c92a7d199d4a2a72062a8dfed02cb.tar.gz
xen-98317c0a457c92a7d199d4a2a72062a8dfed02cb.tar.bz2
xen-98317c0a457c92a7d199d4a2a72062a8dfed02cb.zip
stubdom: log and documentation fixes
- Document that for vnclisten names and 127.0.0.1 should not be used. - Documentation cosmetic fixes - Dump qemu output to the usual logs Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'stubdom/README')
-rw-r--r--stubdom/README19
1 files changed, 11 insertions, 8 deletions
diff --git a/stubdom/README b/stubdom/README
index 42c47601fa..4b9bef6b19 100644
--- a/stubdom/README
+++ b/stubdom/README
@@ -16,10 +16,12 @@ ln -s /usr/share/qemu/keymaps /exports/usr/share/qemu
In your HVM config "hvmconfig",
-- use VNC, set vnclisten to "172.30.206.1" for instance:
+- use VNC, set vnclisten to "172.30.206.1" for instance. Do not use a host name
+as Mini-OS does not have a name resolver. Do not use 127.0.0.1 since then you
+will not be able to connect to it.
-vnc=1
-vnclisten="172.30.206.1"
+vnc = 1
+vnclisten = "172.30.206.1"
- use /usr/lib/xen/bin/stubdom-dm as dm script
@@ -28,14 +30,15 @@ device_model = '/usr/lib/xen/bin/stubdom-dm'
- comment the disk statement:
#disk = [ 'file:/tmp/install.iso,hdc:cdrom,r', 'phy:/dev/sda6,hda,w', 'file:/tmp/test,hdb,r' ]
-Create /etc/xen/stubdom-hvmconfig ("hvmconfig" must match your main config file)
-with
+Create /etc/xen/stubdom-hvmconfig (where "hvmconfig" is your HVM guest domain
+name) with
-kernel="/usr/lib/xen/boot/stubdom.gz"
-vif=[ 'ip=172.30.206.1', 'ip=10.0.1.1,mac=aa:00:00:12:23:34']
+kernel = "/usr/lib/xen/boot/stubdom.gz"
+vif = [ 'ip=172.30.206.1', 'ip=10.0.1.1,mac=aa:00:00:12:23:34']
disk = [ 'file:/tmp/install.iso,hdc:cdrom,r', 'phy:/dev/sda6,hda,w', 'file:/tmp/test,hdb,r' ]
where
- 172.30.206.1 is the IP for vnc,
-- 'ip=10.0.1.1,mac=' is the same net configuration as in the hvmconfig script,
+- 'ip=10.0.1.1,mac= etc...' is the same net configuration as in the hvmconfig
+script,
- and disk = is the same block configuration as in the hvmconfig script.