说,我有 floppy.vfd 图像。
我应该如何填写 xml 文件以附加软盘映像?我有类似这样的模板
<disk type='*' device='*'>
<device name='*' type='*'/>
<target dev='*' bus='*'/>
</disk>
是的,我在网上搜索了有关连接软盘的信息,但没有找到,甚至在 libvirt.org 上也没有找到
答案1
你需要device=floppy
,dev=fda
和bus=fdc
,例如
<disk type='file' device='floppy'>
<source file='/var/lib/libvirt/images/floppy.vfd'/>
<target dev='fda' bus='fdc'/>
</disk>