2013-05-03 18:25:37 +04:00
<?xml version="1.0" encoding="UTF-8"?>
2017-07-26 20:01:25 +03:00
<!DOCTYPE html>
2013-05-03 18:25:37 +04:00
< html xmlns = "http://www.w3.org/1999/xhtml" >
2010-12-23 11:35:51 +03:00
< body >
2013-09-24 20:24:31 +04:00
< h1 > VMware Workstation / Player / Fusion hypervisors driver< / h1 >
2010-12-23 11:35:51 +03:00
< p >
2013-09-24 20:24:31 +04:00
The libvirt VMware driver should be able to manage any Workstation,
Player, Fusion version supported by the VMware VIX API. See the
compatibility list
2010-12-23 11:35:51 +03:00
< 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.
2011-04-02 02:02:10 +04:00
You can download the VIX API
from < a href = "http://www.vmware.com/support/developer/vix-api/" > here< / a > .
< / p >
2010-12-23 11:35:51 +03:00
2017-07-26 17:52:42 +03:00
< h2 > < a id = "project" > Project Links< / a > < / h2 >
2011-07-15 22:33:17 +04:00
< ul >
< li >
The < a href = "http://www.vmware.com/" > VMware Workstation and
Player< / a > hypervisors
< / li >
2013-09-24 20:24:31 +04:00
< li >
The < a href = "http://www.vmware.com/fusion" > VMware Fusion< / a >
hypervisor
< / li >
2011-07-15 22:33:17 +04:00
< / ul >
2010-12-23 11:35:51 +03:00
< h2 > Connections to VMware driver< / h2 >
< p >
The libvirt VMware driver provides per-user drivers (the "session" instance).
2013-09-24 20:24:31 +04:00
Three uris are available:
2010-12-23 18:56:11 +03:00
< / p >
2010-12-23 11:35:51 +03:00
< ul >
< li > "vmwareplayer" for VMware Player< / li >
< li > "vmwarews" for VMware Workstation< / li >
2013-09-24 20:24:31 +04:00
< li > "vmwarefusion" for VMware Fusion< / li >
2010-12-23 11:35:51 +03:00
< / ul >
2010-12-23 18:56:11 +03:00
< p >
2010-12-23 11:35:51 +03:00
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)
2013-09-24 20:24:31 +04:00
vmwarefusion:///session (local access to VMware Fusion per-user instance)
2010-12-23 11:35:51 +03:00
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 >
2017-07-26 17:52:42 +03:00
< h2 > < a id = "xmlconfig" > Example domain XML config< / a > < / h2 >
2010-12-23 11:35:51 +03:00
< 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 >