]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Add info about VMware driver to the libvirt website
authorJean-Baptiste Rouault <jean-baptiste.rouault@diateam.net>
Thu, 23 Dec 2010 08:35:51 +0000 (09:35 +0100)
committerEric Blake <eblake@redhat.com>
Thu, 23 Dec 2010 15:12:15 +0000 (08:12 -0700)
docs/drivers.html.in
docs/drvvmware.html.in [new file with mode: 0644]
docs/index.html.in

index b97200c872ef16b4b3b755d3811334e1b621e57f..ecad03a60a9a5992c04412e460bd59e21d503263 100644 (file)
@@ -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 (file)
index 0000000..273e0a0
--- /dev/null
@@ -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_reference/">here</a>.
+    </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</a>.
+
+    <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>
+&lt;domain type='vmware'&gt;
+  &lt;name&gt;vmware&lt;/name&gt;
+  &lt;uuid&gt;bea92244-8885-4562-828b-3b086731c5b1&lt;/uuid&gt;
+
+  &lt;os&gt;
+    &lt;type&gt;hvm&lt;/type&gt;
+  &lt;/os&gt;
+
+  &lt;memory&gt;524288&lt;/memory&gt;
+  &lt;vcpu&gt;1&lt;/vcpu&gt;
+
+  &lt;features&gt;
+    &lt;pae/&gt;
+    &lt;acpi/&gt;
+  &lt;/features&gt;
+
+  &lt;devices&gt;
+    &lt;disk type='file' device='disk'&gt;
+      &lt;source file='/home/user/tmp/disk.vmdk'/&gt;
+      &lt;target bus='ide' dev='hda'/&gt;
+    &lt;/disk&gt;
+
+    &lt;interface type='bridge'&gt;
+      &lt;target dev='/dev/vmnet1'/&gt;
+      &lt;source bridge=''/&gt;
+      &lt;mac address='00:16:3e:5d:c7:9e'/&gt;
+    &lt;/interface&gt;
+  &lt;/devices&gt;
+&lt;/domain&gt;
+</pre>
+
+    </body>
+</html>
index 57ea84e8f28ae1814ba5bb562fedb890d4e453bf..501f3e39648dbb67698ce56d09fc85539a6f4555 100644 (file)
@@ -58,6 +58,9 @@
       <li>
         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>