世界!次の問題を解決してください。仮想マシン FOO を hdd から (いつでも) 起動するには、input.xml ファイルの起動オプションを変更する必要があります。間違いはありますか?output.xml に smth を追加する必要がありますか? (input.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>
(output.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>