我正在尝试使用 java 的 libvirt api 创建一个 kvm。我面临的问题是我需要一个设备(图像文件(例如:kvm.img))。我正在使用 .xml 文件使用 libvirt api 和 java 创建 kvm。现在我正在做的是首先使用从终端创建的 qemu-img 创建 .img 文件。qemu-img create /var/lib/libvirt/images/kvm.img 10G
是我正在使用的代码并在 xml 中创建我提到的 kvm<source file='var/lib/libvirt/images/kvm.img'/>
现在我需要知道 libvirt api 中是否有任何方法可以通过 xml 文件创建 .img 文件,并且我也需要了解 xml 文件(创建 img 文件)
我正在使用 libvirt 1.0
我用来创建 kvm 的 xml 文件是:
<domain type='kvm'><name>ft</name><memory>131072</memory><currentMemory>131072</currentMemory><vcpu>1</vcpu><os><type arch='x86_64' machine='pc-0.12'>hvm</type><boot dev='hd'/></os><features><acpi/></features> <clock offset='utc'/> <on_poweroff>destroy</on_poweroff><on_reboot>restart</on_reboot><on_crash>destroy</on_crash> <devices><emulator>/usr/bin/kvm</emulator><disk type='file' device='disk'><source file='var/lib/libvirt/images/ft.img'/><target dev='hda' bus='ide'/></disk><interface type='network'><mac address='52:54:00:8b:08:dd'/><source network='default'/><model type='virtio'/></interface><input type='mouse' bus='ps2'/><graphics type='vnc' port='-1' autoport='yes' listen='127.0.0.1'/><video><model type='cirrus' vram='9216' heads='1'/> </video></devices></domain>
在java中我使用libvirt方法,Domain createVm = con.domainCreateXML(str, 0);
因为str
我正在传递xml字符串