我尝试使用libvirt python(defineXML函数)创建新的域esxi。 这是xml的一部分:
<devices>
<disk device="disk" type="file">
<source file="[datastore1] ubuntu2/ubuntu2.vmdk" />
<target dev='sda' bus='scsi'/>
<address type='drive' controller='0' bus='0' unit='0'/>
</disk>
<disk type='file' device='cdrom'>
<source file='[datastore1] ubuntu-14.04.5-desktop-i386.iso'/>
<target dev='hda' bus='ide'/>
<address type='drive' controller='0' bus='0' unit='0'/>
</disk>
</devices>
但它只在我指定另一个域的vmdk时才有效。是否有任何解决方案? 谢谢你的帮助!