Libvirt: isa 버스를 사용할 수 없나요?

Libvirt: isa 버스를 사용할 수 없나요?

qemu로 Windows95를 실행하는 방법을 찾았습니다. (약간 향수가 나네요. 테스트를 위해 오래된 시스템을 사용했습니다.)

 /usr/bin/qemu-system-i386  -L pc-bios -m 64 -hda /home/user/.local/libvirt/images/win95.img  -net nic,model=ne2k_isa -net user -soundhw sb16 --enable-kvm -cpu qemu32 -M isapc

이 라인은 CPU 사용량이 적을 때 잘 작동합니다.

이제 libvirt로 가져오고 싶습니다.

.args 파일을 만듭니다.

LC_ALL=C 
PATH=/bin:/usr/bin:/sbin:/usr/sbin
HOME=/home/user
USER=user
LOGNAME=user qemu-system-i386  -L pc-bios -M isapc -m 64 -hda win95.img -net nic,model=ne2k_isa -net user -soundhw sb16 --enable-kvm -cpu qemu32

변화...

virsh domxml-from-native qemu-argv file.args  > win95.xml

그런데 달리려고 하면...

virsh는 win95.xml을 생성합니다.

error: Failed to create domain from win95.xml
error: XML error: No PCI buses available

XML 파일은 다음과 같습니다. libvirt에서 isa를 얻을 수 없습니까?

<domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>
  <name>unnamed</name>
  <uuid>37b8dc38-63bb-4206-94f8-26f47bce21b9</uuid>
  <memory unit='KiB'>65536</memory>
  <currentMemory unit='KiB'>65536</currentMemory>
  <vcpu placement='static'>1</vcpu>
  <os>
    <type machine='isapc'>hvm</type>
  </os>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <devices>
    <emulator>/usr/bin/qemu-system-i386</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='raw'/>
      <source file='/home/user/.local/libvirt/images/win95.img'/>
      <target dev='hda' bus='ide'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <controller type='usb' index='0'/>
    <controller type='ide' index='0'/>
    <interface type='user'>
      <mac address='52:54:00:d8:35:b3'/>
      <model type='ne2k_isa'/>
    </interface>
    <graphics type='sdl'/>
    <sound model='sb16'/>
    <video>
      <model type='cirrus' vram='16384' heads='1'/>
    </video>
    <memballoon model='none'/>
  </devices>
  <qemu:commandline>
    <qemu:arg value='-L'/>
    <qemu:arg value='pc-bios'/>
  </qemu:commandline>
</domain>

관련 정보