qemu_validate: Reject virtiofs with bootindex on s390x with CCW
[libvirt.git] / docs / drvvmware.rst
blob6db1a78a17561c008e7dc209cd76dbc59484ca23
1 =======================================================
2 VMware Workstation / Player / Fusion hypervisors driver
3 =======================================================
5 The libvirt VMware driver should be able to manage any Workstation, Player,
6 Fusion version supported by the VMware VIX API. See the compatibility list
7 `here <https://www.vmware.com/support/developer/vix-api/vix110_reference/>`__.
9 This driver uses the "vmrun" utility which is distributed with the VMware VIX
10 API. You can download the VIX API from
11 `here <https://www.vmware.com/support/developer/vix-api/>`__.
13 Project Links
14 -------------
16 -  The `VMware Workstation and Player <https://www.vmware.com/>`__ hypervisors
17 -  The `VMware Fusion <https://www.vmware.com/fusion>`__ hypervisor
19 Connections to VMware driver
20 ----------------------------
22 The libvirt VMware driver provides per-user drivers (the "session" instance).
23 Three uris are available:
25 -  "vmwareplayer" for VMware Player
26 -  "vmwarews" for VMware Workstation
27 -  "vmwarefusion" for VMware Fusion
29 Some example connection URIs for the driver are:
33    vmwareplayer:///session                  (local access to VMware Player per-user instance)
34    vmwarews:///session                      (local access to VMware Workstation per-user instance)
35    vmwarefusion:///session                  (local access to VMware Fusion per-user instance)
36    vmwarews+tcp://user@example.com/session  (remote access to VMware Workstation, SASl/Kerberos)
37    vmwarews+ssh://user@example.com/session  (remote access to VMware Workstation, SSH tunnelled)
39 Example domain XML config
40 -------------------------
44    <domain type='vmware'>
45      <name>vmware</name>
46      <uuid>bea92244-8885-4562-828b-3b086731c5b1</uuid>
48      <os>
49        <type>hvm</type>
50      </os>
52      <memory>524288</memory>
53      <vcpu>1</vcpu>
55      <features>
56        <pae/>
57        <acpi/>
58      </features>
60      <devices>
61        <disk type='file' device='disk'>
62          <source file='/home/user/tmp/disk.vmdk'/>
63          <target bus='ide' dev='hda'/>
64        </disk>
66        <interface type='bridge'>
67          <target dev='/dev/vmnet1'/>
68          <source bridge=''/>
69          <mac address='00:16:3e:5d:c7:9e'/>
70        </interface>
71      </devices>
72    </domain>