世界!请 smb 帮我解决以下问题:我需要更改 input.xml 文件中的启动选项,以便虚拟机 FOO (任何时间)从硬盘启动。有没有错误,这会起作用吗?我应该向 output.xml 添加 smth 吗?(输入.xml)
<domain type='qemu' >
<name>FOO</name>
<os>
<type>hvm</type>
<kernel>/var/lib/qemu/install/vmlinuz</kernel>
<initrd>/var/lib/qemu/install/initrd</initrd>
<cmdline> kickstart=http://example.com/myguest.ks </cmdline>
</os>
<memory>131072</memory>
<vcpu>1</vcpu>
<devices>
<disk type='file'>
<source file='/var/lib/qemu/images/FOO.img'/>
<target dev='hda'/>
</disk>
</devices>
</domain>
(输出.xml)
<domain type='qemu' >
<name>FOO</name>
<os>
<type>hvm</type>
<boot dev='hd'/>
</os>
<memory>131072</memory>
<vcpu>1</vcpu>
<devices>
<disk type='file'>
<source file='/var/lib/qemu/images/FOO.img'/>
<target dev='hda'/>
</disk>
</devices>
</domain>