diff --git a/docs/drivers.html.in b/docs/drivers.html.in index b97200c872..ecad03a60a 100644 --- a/docs/drivers.html.in +++ b/docs/drivers.html.in @@ -27,6 +27,7 @@
+ The libvirt VMware Workstation driver should be able to manage any Workstation and + Player version supported by the VMware VIX API. See the compatibility list + here. +
++ This driver uses the "vmrun" utility which is distributed with the VMware VIX API. + You can download the VIX API from here. + +
+ The libvirt VMware driver provides per-user drivers (the "session" instance). + Two uris are available: +
+vmwareplayer:///session (local access to VMware Player per-user instance) +vmwarews:///session (local access to VMware Workstation per-user instance) +vmwarews+tcp://user@example.com/session (remote access to VMware Workstation, SASl/Kerberos) +vmwarews+ssh://user@example.com/session (remote access to VMware Workstation, SSH tunnelled) ++ +
+<domain type='vmware'> + <name>vmware</name> + <uuid>bea92244-8885-4562-828b-3b086731c5b1</uuid> + + <os> + <type>hvm</type> + </os> + + <memory>524288</memory> + <vcpu>1</vcpu> + + <features> + <pae/> + <acpi/> + </features> + + <devices> + <disk type='file' device='disk'> + <source file='/home/user/tmp/disk.vmdk'/> + <target bus='ide' dev='hda'/> + </disk> + + <interface type='bridge'> + <target dev='/dev/vmnet1'/> + <source bridge=''/> + <mac address='00:16:3e:5d:c7:9e'/> + </interface> + </devices> +</domain> ++ + + diff --git a/docs/index.html.in b/docs/index.html.in index 57ea84e8f2..501f3e3964 100644 --- a/docs/index.html.in +++ b/docs/index.html.in @@ -58,6 +58,9 @@