更新答案

更新答案

由于我的游戏硬件支持 IOMMU,因此我决定将机器迁移到 Linux。

设置:

  • AMD FX-8350
  • 8 GB 1600
  • 华硕 Sabertooth 990FX R1.0
  • ATI HD 5450(用于基础系统)
  • nvidia GTX970(用于虚拟机)

我安装了一个干净的 Void Linux,设置了 IOMMU,并修复了我的 IVRS 表。之后,我将 nVidia GTX 970 绑定到vfio-pci内核模块。然后我设置了libvirtd守护进程及其依赖项,我必须手动添加virtlogd守护dbus进程。然后我安装了 virt-manager 并根据答案中的建议设置了一个新的 VM。

更新(解决 BSOD)

在尝试使用预构建的 arch OVMF 图像并获得相同结果后,我开始更改所有选项。你知道以防万一。

我尝试的第一件事是从CPU 中的host-passthrough/切换到。现在安装程序可以顺利启动。所以 IRQL 错误是由 CPU 直通引起的!Copy host CPU configurationHypervisor Default

问题:如果我模拟 CPU 而不是直接将其移交给他人,性能将受到影响。因此,目标是让host-passthrough/Copy host CPU configuration工作...

原始问题:

当我尝试从当前且经过测试的 Win10.iso 启动时,它给出了 BSOD IRQL_NOT_LESS_OR_EQUAL

那么我该如何修复 BSOD?

我发现该错误与内存分配有关,但我不知道该做何改变才能使其正常工作。

我已经启动并运行了 VM(因此可以解决该错误),除了来自 nVidia 的错误 43,但后来我意识到我的基本系统已损坏,因此我决定进行全新重新安装,整个过程一直运行良好,直到第一次 VM 启动。

这是当前的 XML。它缺少 vfio-drivers.iso 和 Bootdrive,因为问题是 Win10.iso 无法启动。

<domain type='kvm'>
  <name>win10</name>
  <uuid>6f957f60-c90c-4d33-8821-01348fa531a9</uuid>
  <memory unit='KiB'>6291456</memory>
  <currentMemory unit='KiB'>6291456</currentMemory>
  <vcpu placement='static'>8</vcpu>
  <os>
    <type arch='x86_64' machine='pc-q35-2.12'>hvm</type>
    <loader readonly='yes' type='pflash'>/usr/share/edk2.git/ovmf-x64/OVMF_CODE-pure-efi.fd</loader>
    <nvram>/var/lib/libvirt/qemu/nvram/win10_VARS.fd</nvram>
  </os>
  <features>
    <acpi/>
    <apic/>
    <hyperv>
      <relaxed state='on'/>
      <vapic state='on'/>
      <spinlocks state='on' retries='8191'/>
    </hyperv>
    <vmport state='off'/>
  </features>
  <cpu mode='host-passthrough' check='none'/>
  <clock offset='localtime'>
    <timer name='rtc' tickpolicy='catchup'/>
    <timer name='pit' tickpolicy='delay'/>
    <timer name='hpet' present='no'/>
    <timer name='hypervclock' present='yes'/>
  </clock>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <pm>
    <suspend-to-mem enabled='no'/>
    <suspend-to-disk enabled='no'/>
  </pm>
  <devices>
    <emulator>/usr/bin/qemu-system-x86_64</emulator>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/home/pitch/Downloads/Win10_1803_EnglishInternational_x64.iso'/>
      <target dev='sdb' bus='sata'/>
      <readonly/>
      <boot order='1'/>
      <address type='drive' controller='0' bus='0' target='0' unit='1'/>
    </disk>
    <controller type='usb' index='0' model='ich9-ehci1'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x1d' function='0x7'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci1'>
      <master startport='0'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x1d' function='0x0' multifunction='on'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci2'>
      <master startport='2'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x1d' function='0x1'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci3'>
      <master startport='4'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x1d' function='0x2'/>
    </controller>
    <controller type='sata' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x1f' function='0x2'/>
    </controller>
    <controller type='pci' index='0' model='pcie-root'/>
    <controller type='pci' index='1' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='1' port='0x10'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
    </controller>
    <controller type='pci' index='2' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='2' port='0x11'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
    </controller>
    <controller type='pci' index='3' model='pcie-to-pci-bridge'>
      <model name='pcie-pci-bridge'/>
      <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
    </controller>
    <controller type='pci' index='4' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='4' port='0x12'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
    </controller>
    <controller type='pci' index='5' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='5' port='0x13'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x3'/>
    </controller>
    <controller type='pci' index='6' model='pcie-root-port'>
      <model name='pcie-root-port'/>
      <target chassis='6' port='0x14'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x4'/>
    </controller>
    <controller type='virtio-serial' index='0'>
      <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
    </controller>
    <interface type='network'>
      <mac address='52:54:00:36:19:70'/>
      <source network='default'/>
      <model type='virtio'/>
      <address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
    </interface>
    <input type='mouse' bus='ps2'/>
    <input type='keyboard' bus='ps2'/>
    <sound model='ich6'>
      <address type='pci' domain='0x0000' bus='0x03' slot='0x01' function='0x0'/>
    </sound>
    <hostdev mode='subsystem' type='usb' managed='yes'>
      <source>
        <vendor id='0x046d'/>
        <product id='0xc069'/>
      </source>
      <address type='usb' bus='0' port='1'/>
    </hostdev>
    <hostdev mode='subsystem' type='usb' managed='yes'>
      <source>
        <vendor id='0x046d'/>
        <product id='0xc316'/>
      </source>
      <address type='usb' bus='0' port='2'/>
    </hostdev>
    <hostdev mode='subsystem' type='pci' managed='yes'>
      <source>
        <address domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
      </source>
      <address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
    </hostdev>
    <memballoon model='virtio'>
      <address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
    </memballoon>
  </devices>
</domain>

旧 XML

这是我的原始 libvirt XML:

<domain type='kvm'>
  <name>win10</name>
  <uuid>502f32c7-01fc-4690-98b7-85c1c82e392b</uuid>
  <memory unit='KiB'>4194304</memory>
  <currentMemory unit='KiB'>4194304</currentMemory>
  <vcpu placement='static'>4</vcpu>
  <os>
    <type arch='x86_64' machine='pc-i440fx-2.12'>hvm</type>
    <loader readonly='yes' type='pflash'>/usr/share/edk2.git/ovmf-x64/OVMF_CODE-pure-efi.fd</loader>
    <nvram>/var/lib/libvirt/qemu/nvram/win10_VARS.fd</nvram>
    <boot dev='hd'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <hyperv>
      <relaxed state='on'/>
      <vapic state='on'/>
      <spinlocks state='on' retries='8191'/>
    </hyperv>
    <vmport state='off'/>
  </features>
  <cpu mode='host-passthrough' check='none'/>
  <clock offset='localtime'>
    <timer name='rtc' tickpolicy='catchup'/>
    <timer name='pit' tickpolicy='delay'/>
    <timer name='hpet' present='no'/>
    <timer name='hypervclock' present='yes'/>
  </clock>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <pm>
    <suspend-to-mem enabled='no'/>
    <suspend-to-disk enabled='no'/>
  </pm>
  <devices>
    <emulator>/usr/bin/qemu-system-x86_64</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2'/>
      <source file='/var/lib/libvirt/images/win10.qcow2'/>
      <target dev='sdb' bus='sata'/>
      <address type='drive' controller='0' bus='0' target='0' unit='1'/>
    </disk>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/home/pitch/Downloads/Win10_1803_EnglishInternational_x64.iso'/>
      <target dev='hda' bus='ide'/>
      <readonly/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <disk type='file' device='floppy'>
      <driver name='qemu' type='raw'/>
      <source file='/home/pitch/Downloads/virtio-win-0.1.149.iso'/>
      <target dev='fda' bus='fdc'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <controller type='usb' index='0' model='ich9-ehci1'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci1'>
      <master startport='0'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci2'>
      <master startport='2'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci3'>
      <master startport='4'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/>
    </controller>
    <controller type='pci' index='0' model='pci-root'/>
    <controller type='fdc' index='0'/>
    <controller type='ide' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <controller type='virtio-serial' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/>
    </controller>
    <controller type='scsi' index='0' model='virtio-scsi'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/>
    </controller>
    <controller type='sata' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/>
    </controller>
    <interface type='network'>
      <mac address='52:54:00:04:2a:7a'/>
      <source network='default'/>
      <model type='rtl8139'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
    </interface>
    <serial type='pty'>
      <target type='isa-serial' port='0'>
        <model name='isa-serial'/>
      </target>
    </serial>
    <console type='pty'>
      <target type='serial' port='0'/>
    </console>
    <channel type='spicevmc'>
      <target type='virtio' name='com.redhat.spice.0'/>
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
    </channel>
    <input type='tablet' bus='usb'>
      <address type='usb' bus='0' port='1'/>
    </input>
    <input type='mouse' bus='ps2'/>
    <input type='keyboard' bus='ps2'/>
    <graphics type='spice' autoport='yes'>
      <listen type='address'/>
      <image compression='off'/>
    </graphics>
    <sound model='ich6'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
    </sound>
    <video>
      <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </video>
    <redirdev bus='usb' type='spicevmc'>
      <address type='usb' bus='0' port='2'/>
    </redirdev>
    <redirdev bus='usb' type='spicevmc'>
      <address type='usb' bus='0' port='3'/>
    </redirdev>
    <memballoon model='virtio'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/>
    </memballoon>
  </devices>
</domain>

为了测试,我尝试删除虚拟机配置。以下是 XML 转储:

<domain type='kvm'>
  <name>win10</name>
  <uuid>502f32c7-01fc-4690-98b7-85c1c82e392b</uuid>
  <memory unit='KiB'>6291456</memory>
  <currentMemory unit='KiB'>5242880</currentMemory>
  <vcpu placement='static'>8</vcpu>
  <os>
    <type arch='x86_64' machine='pc-i440fx-2.12'>hvm</type>
    <loader readonly='yes' type='pflash'>/usr/share/edk2.git/ovmf-x64/OVMF_CODE-pure-efi.fd</loader>
    <nvram>/var/lib/libvirt/qemu/nvram/win10_VARS.fd</nvram>
    <bootmenu enable='no'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <hyperv>
      <relaxed state='on'/>
      <vapic state='on'/>
      <spinlocks state='on' retries='8191'/>
    </hyperv>
    <vmport state='off'/>
  </features>
  <cpu mode='host-passthrough' check='partial'/>
  <clock offset='localtime'>
    <timer name='rtc' tickpolicy='catchup'/>
    <timer name='pit' tickpolicy='delay'/>
    <timer name='hpet' present='no'/>
    <timer name='hypervclock' present='yes'/>
  </clock>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <pm>
    <suspend-to-mem enabled='no'/>
    <suspend-to-disk enabled='no'/>
  </pm>
  <devices>
    <emulator>/usr/bin/qemu-system-x86_64</emulator>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/home/pitch/Downloads/Win10_1803_EnglishInternational_x64.iso'/>
      <target dev='sda' bus='scsi'/>
      <readonly/>
      <boot order='1'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <controller type='usb' index='0' model='ich9-ehci1'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci1'>
      <master startport='0'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci2'>
      <master startport='2'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci3'>
      <master startport='4'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/>
    </controller>
    <controller type='pci' index='0' model='pci-root'/>
    <controller type='scsi' index='0' model='virtio-scsi'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/>
    </controller>
    <controller type='virtio-serial' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
    </controller>
    <input type='mouse' bus='ps2'/>
    <input type='keyboard' bus='ps2'/>
    <hostdev mode='subsystem' type='pci' managed='yes'>
      <source>
        <address domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
      </source>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </hostdev>
    <hostdev mode='subsystem' type='usb' managed='yes'>
      <source>
        <vendor id='0x046d'/>
        <product id='0xc069'/>
      </source>
      <address type='usb' bus='0' port='1'/>
    </hostdev>
    <hostdev mode='subsystem' type='usb' managed='yes'>
      <source>
        <vendor id='0x046d'/>
        <product id='0xc316'/>
      </source>
      <address type='usb' bus='0' port='2'/>
    </hostdev>
    <memballoon model='virtio'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/>
    </memballoon>
  </devices>
</domain>

答案1

更新答案

听起来您已经能够重新安装 Windows,但第一次启动时出现蓝屏。此更新的答案解决了这个问题。

当涉及硬件变化时,无论是虚拟化还是裸机,Windows 都很脆弱。

如果您在安装后对 libvirt 域 XML 中的某些内容进行了更改,则IRQL_NOT_LESS_OR_EQUAL很容易发生蓝屏死机。

如果您不记得自己更改了什么,那么找出导致蓝屏的原因就特别困难。例如,如果我在scsi( virtio-scsi) 磁盘总线上安装了 Windows,然后将磁盘总线更改为virtio( virtio-blk),那么在客户机崩溃之前,我会得到这样的信息,但没有任何详细信息:

UEFI TianoCore Windows 启动

解决此问题的最简单方法是预先按照您的需要配置 libvirt 域 XML,然后为该硬件重新安装 Windows。

更难的方法是启动 Windows 安装 ISO,使用 添加 virtio-win 驱动程序DISM,然后希望其中一个驱动程序能够修复 BSOD。您必须调整以下说明:这个超级用户的回答。这是一个令人烦恼的过程,并且没有成功的保证。

(在安装后更改启动磁盘总线的情况下,Windows 10 似乎无法做到这一点,我发现

因此,免去故障排除的麻烦,再次重新安装 Windows 即可。

以下是我为 Windows 定制 libvirt 域 XML 的方法:

  • 已安装的启动磁盘使用TRIM 支持作为scsi其磁盘总线。discard='unmap'<driver>
  • 安装程序 CD/ISO 驱动器使用总线sata,以便 Windows 安装程序可以启动。
  • virtio-win驱动程序 ISO 驱动器也使用sata,以便 Windows 安装程序可以读取它。
  • 我使用下面的q35属性代替()machine<type><os>pci440fx更好地支持 PCIe 直通因为 i440FX 仅支持 PCI。请注意,q35需要一组不同的<controller>元素。如果您删除(取消定义)当前客户机,创建一个新客户机,选中“安装前自定义配置”,然后将芯片组从 更改为 ,则可以在 中virt-manager设置此项。i440FXQ35
  • 该网络适配器型号是virtio为了获得最佳性能。
  • 视频模型为 QXL,具有更佳的显示性能。

在 Windows 安装程序中,在完成磁盘分区步骤之前,从 virtio-win ISO 安装所有兼容的驱动程序:

Windows 安装程序:选择要安装的驱动程序

希望重新安装后,您不再会遇到蓝屏死机的情况。


旧答案

这个答案假设您正在尝试重新安装 Windows。

根据您提供的 libvirt XML 文件,您不是从 ISO 文件启动的 ( cdrom)。您似乎是直接从虚拟机映像启动的,该映像可能包含安装在不同硬件上的 Windows,因此与虚拟化硬件不兼容。

cdrom您可以通过添加来启动

    <boot dev='cdrom'/>

正上方

    <boot dev='hd'/>

然后正常启动虚拟机。请注意,Windows 启动盘可能会给您一个限时提示,让您按任意键启动安装程序。


或者,您可以通过 virt-manager 启用启动,cdrom如下所示:

virt-manager 中的启动选项

答案2

  <cpu mode='host-passthrough' check='none'/>

我通过将 CPU 类型从“host-passthrough/host-model”设置为预定义的“Opteron G4”模板解决了这个问题 - 我有一个 Threadripper 处理器。Windows 无法处理太多可能性。

希望这对您有帮助。

编辑 2019.03.25

有关我的解决方案的更多详细信息:我遇到了与上述相同的问题,我可以通过将 Virt-Manager 中的 CPU 类型(不编辑 XML 文件)设置为“Opteron G4”来“解决”。

我通过此方法解决了 Windows 问题,但仍在与其他问题作斗争,并且 GPU-Passthrough 无法正常工作。我可以启动 VM,但 GPU 未在 VM 中正确列出,无法安装驱动程序,无法检测到 GPU。

我找到了这个教程:https://heiko-sieger.info/running-windows-10-on-linux-using-kvm-with-vga-passthrough/从我的角度来看,它涵盖了有关 GPU-Passthrough 的很多主题。尤其是“故障排除”部分,它最终帮助我解决了我的问题。

由于我当时使用的是 X399 Taichi 主板和 Threadripper CPU,但当时它们无法工作,所以我遇到了几个问题,包括 CPU-host-passthrough 问题,这对我来说实际上没有什么意义,因为我已经在其他硬件上成功地完成了这个任务。

对我来说,最终更新 BIOS 就成功了。有一个专门针对这些功能的更新。

此后,一切都顺利进行。

根据我的经验,它需要:

-硬件需要准备好 + 寻找相关的 BIOS 更新。

-需要激活主板上的设置,例如 SVM/xVTd、IOMMU、ACS 和其他主板相关选项。

-使用最新的软件包可能会提供最好的体验。

-它需要两个 GPU。第一个应该是板载的或专用的。否则它可能无法顺利运行……

-nVidia 不喜欢它,AMD 是 Linux 的朋友。

希望这能有所帮助。如有其他问题,请随时提问。

相关内容