---
docs/drivers.html.in | 1 +
docs/drvvmware.html.in | 67 ++++++++++++++++++++++++++++++++++++++++++++++++
docs/index.html.in | 3 ++
3 files changed, 71 insertions(+), 0 deletions(-)
create mode 100644 docs/drvvmware.html.in
diff --git a/docs/drivers.html.in b/docs/drivers.html.in
index b97200c..ecad03a 100644
--- a/docs/drivers.html.in
+++ b/docs/drivers.html.in
@@ -27,6 +27,7 @@
<li><strong><a
href="drvuml.html">UML</a></strong> - User Mode Linux</li>
<li><strong><a
href="drvvbox.html">VirtualBox</a></strong></li>
<li><strong><a href="drvesx.html">VMware
ESX</a></strong></li>
+ <li><strong><a href="drvvmware.html">VMware
Workstation/Player</a></strong></li>
<li><strong><a
href="drvxen.html">Xen</a></strong></li>
</ul>
diff --git a/docs/drvvmware.html.in b/docs/drvvmware.html.in
new file mode 100644
index 0000000..273e0a0
--- /dev/null
+++ b/docs/drvvmware.html.in
@@ -0,0 +1,67 @@
+<html>
+ <body>
+ <h1>VMware Workstation/Player hypervisors driver</h1>
+ <p>
+ 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
+ <a
href="http://www.vmware.com/support/developer/vix-api/vix110_referen...;.
+ </p>
+ <p>
+ This driver uses the "vmrun" utility which is distributed with the VMware
VIX API.
+ You can download the VIX API from <a
href="http://www.vmware.com/support/developer/vix-api/">here...;.
+
+ <h2>Connections to VMware driver</h2>
+
+ <p>
+ The libvirt VMware driver provides per-user drivers (the "session"
instance).
+ Two uris are available:
+ <ul>
+ <li>"vmwareplayer" for VMware Player</li>
+ <li>"vmwarews" for VMware Workstation</li>
+ </ul>
+ Some example connection URIs for the driver are:
+ </p>
+
+<pre>
+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)
+</pre>
+
+ <h2><a name="xmlconfig">Example domain XML
config</a></h2>
+
+<pre>
+<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>
+</pre>
+
+ </body>
+</html>
diff --git a/docs/index.html.in b/docs/index.html.in
index 57ea84e..501f3e3 100644
--- a/docs/index.html.in
+++ b/docs/index.html.in
@@ -59,6 +59,9 @@
The <a
href="http://www.vmware.com/">VMware ESX and GSX</a>
hypervisors
</li>
<li>
+ The <a
href="http://www.vmware.com/">VMware Workstation and
Player</a> hypervisors
+ </li>
+ <li>
Storage on IDE/SCSI/USB disks, FibreChannel, LVM, iSCSI, NFS and filesystems
</li>
</ul>
--
1.7.0.4