mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
f2f9742d4d
The rule generating the HTML docs passing the --html flag to xsltproc. This makes it use the legacy HTML parser, which either ignores or tries to fix all sorts of broken XML tags. There's no reason why we should be writing broken XML in the first place, so removing --html and adding the XHTML doctype to all files forces us to create good XML. This adds the XHTML doc type and fixes many, many XML tag problems it exposes. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
83 lines
2.5 KiB
XML
83 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<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>.
|
|
</p>
|
|
|
|
<h2><a name="project">Project Links</a></h2>
|
|
|
|
<ul>
|
|
<li>
|
|
The <a href="http://www.vmware.com/">VMware Workstation and
|
|
Player</a> hypervisors
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>Connections to VMware driver</h2>
|
|
|
|
<p>
|
|
The libvirt VMware driver provides per-user drivers (the "session" instance).
|
|
Two uris are available:
|
|
</p>
|
|
<ul>
|
|
<li>"vmwareplayer" for VMware Player</li>
|
|
<li>"vmwarews" for VMware Workstation</li>
|
|
</ul>
|
|
<p>
|
|
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>
|