]> xenbits.xensource.com Git - xenclient/toolstack.git/commitdiff
update a bit the README file.
authorVincent Hanquez <vincent.hanquez@eu.citrix.com>
Sun, 26 Jul 2009 11:40:05 +0000 (12:40 +0100)
committerVincent Hanquez <vincent.hanquez@eu.citrix.com>
Sun, 26 Jul 2009 11:40:05 +0000 (12:40 +0100)
xenvm/xenvm.readme

index e1c58c4f9ebb5db7ef1f84bac8696500287d71af..f25e687d4ce039b59fc0bf36164ca3001eefc3dd 100644 (file)
@@ -96,12 +96,14 @@ syntax:
 
 The following command are supported:
 
+       - help
        - pause
        - unpause
        - destroy
-       - suspend <file>
-       - suspend live <file>
-       - restore <file>
+       - start
+       - suspend file=<file>
+       - suspend file=<file> live=true
+       - restore file=<file>
        - checkpoint <file>
        - shutdown
        - restart
@@ -110,11 +112,9 @@ The following command are supported:
 = Running with xen-unstable
 
 It's possible to run with xen-unstable directly, but you need the
-qemu-dm-wrapper script and xenguest binary in /opt/xensource/bin/.
-They are available in ocaml/xenguest/xenguest and scripts/qemu-dm-wrapper
-in the api.hg repository. For people that can't build ocaml tools,
-you can get the binary/script on some testings machines, but be careful about
-architecture, and out-of-date-ness.
+qemu-dm-wrapper script and xenguest binary in /usr/bin/.
+They are available in xenguest/xenguest and scripts/qemu-dm-wrapper
+in the toolstack.git repository.
 
 And you need to replace your udev rules by the one available in
 scripts/xen-backend.rules and scripts/xen-frontend.rules and add the
@@ -124,11 +124,9 @@ scripts/tap scripts/block scripts/block-front scripts/vif into
 Also note that since xen-unstable doesn't have the dm-ready patch,
 hvm domain takes unfortunately a substantial time (around 20s.) to start.
 
-On a rio build, xenvm should be ready out-of-the-box
-
 = Example of config
 
-PV config with one LVM disk and one VIF :
+PV config with one LVM disk called 'test' and one VIF :
 
 ----8<----
 uuid = 00000000-0000-0000-0000-000000000001
@@ -136,20 +134,20 @@ hvm = false
 kernel = /boot/vmlinuz-2.6.18-xenU
 cmdline = root=/dev/sda1 ro
 memory = 64
-disk = /dev/VG_XenStorage-8cbac5b8-edeb-b04b-d455-e08e07ec3088/test:phy:sda:w:disk
+disk = /dev/vg/test:phy:sda:w:disk
 vif =
 ----8<----
 
-HVM config for installing a win2k3.. iso :
+HVM config for installing a windows 2k3 from iso on a LVM disk called 'testhvm':
 
 ----8<----
 uuid = 00000000-0000-0000-0000-000000000002
 hvm = true
 memory = 256
-disk = /dev/VG_XenStorage-8cbac5b8-edeb-b04b-d455-e08e07ec3088/testhvm:phy:hda:w:disk
+disk = /dev/vg/testhvm:phy:hda:w:disk
 disk = /var/opt/xen/iso_import/w2k3eesp2.iso:file:hdd:r:cdrom
 boot = dc
-pae = false
-acpi = false
-apic = false
+pae = true
+acpi = true
+apic = true
 ----8<----