如何(Libvirt)将软盘映像设备附加到客户虚拟机?

如何(Libvirt)将软盘映像设备附加到客户虚拟机?

说,我有 floppy.vfd 图像。

我应该如何填写 xml 文件以附加软盘映像?我有类似这样的模板

<disk type='*' device='*'>
    <device name='*' type='*'/>
    <target dev='*' bus='*'/>
</disk>

是的,我在网上搜索了有关连接软盘的信息,但没有找到,甚至在 libvirt.org 上也没有找到

答案1

你需要device=floppydev=fdabus=fdc,例如

<disk type='file' device='floppy'>
  <source file='/var/lib/libvirt/images/floppy.vfd'/>
  <target dev='fda' bus='fdc'/>
</disk>

相关内容