QEMU 无法在 UEFI 中启动 iso 文件

QEMU 无法在 UEFI 中启动 iso 文件

问题

我想在 QEMU KVM 中运行 Windows 8.1 iso。为此,我已经下载了必要的 OVMF 文件(来自这里)。我可以在 UEFI 模式下成功启动 Windows 10,但使用相同的设置,我似乎无法使用版本 8.1 实现相同的效果。我检查了 iso 文件以寻找线索,但根据dumpet它没有任何问题:

%./dumpet -i Windows_8.1.iso 


Validation Entry:
    Header Indicator: 0x01 (Validation Entry)
    PlatformId: 0x00 (80x86)
    ID: "Microsoft Corporation"
    Checksum: 0x494c
    Key bytes: 0x55aa
Boot Catalog Default Entry:
    Entry is bootable
    Boot Media emulation type: no emulation
    Media load segment: 0x0 (0000:7c00)
    System type: 0 (0x00)
    Load Sectors: 8 (0x0008)
    Load LBA: 5184 (0x00001440)
Section Header Entry:
    Header Indicator: 0x91 (Final Section Header Entry)
    PlatformId: 0xef (EFI)
    Section Entries: 1
    ID: ""
Boot Catalog Section Entry:
    Entry is bootable
    Boot Media emulation type: no emulation
    Media load address: 0 (0x0000)
    System type: 0 (0x00)
    Load Sectors: 1 (0x0001)
    Load LBA: 2156 (0x0000086c)

我还尝试检查两个 Windows 版本的转储结果之间的差异:

Validation Entry:                       Validation Entry:
    Header Indicator: 0x01 (Validation Entry)           Header Indicator: 0x01 (Validation Entry)
    PlatformId: 0x00 (80x86)                    PlatformId: 0x00 (80x86)
    ID: "Microsoft Corporation"                 ID: "Microsoft Corporation"
    Checksum: 0x494c                        Checksum: 0x494c
    Key bytes: 0x55aa                       Key bytes: 0x55aa
Boot Catalog Default Entry:                 Boot Catalog Default Entry:
    Entry is bootable                       Entry is bootable
    Boot Media emulation type: no emulation             Boot Media emulation type: no emulation
    Media load segment: 0x0 (0000:7c00)             Media load segment: 0x0 (0000:7c00)
    System type: 0 (0x00)                       System type: 0 (0x00)
    Load Sectors: 8 (0x0008)                    Load Sectors: 8 (0x0008)
    Load LBA: 5184 (0x00001440)               |     Load LBA: 546 (0x00000222)
Section Header Entry:                       Section Header Entry:
    Header Indicator: 0x91 (Final Section Header Entry)     Header Indicator: 0x91 (Final Section Header Entry)
    PlatformId: 0xef (EFI)                      PlatformId: 0xef (EFI)
    Section Entries: 1                      Section Entries: 1
    ID: ""                              ID: ""
Boot Catalog Section Entry:                 Boot Catalog Section Entry:
    Entry is bootable                       Entry is bootable
    Boot Media emulation type: no emulation             Boot Media emulation type: no emulation
    Media load address: 0 (0x0000)                  Media load address: 0 (0x0000)
    System type: 0 (0x00)                       System type: 0 (0x00)
    Load Sectors: 1 (0x0001)                    Load Sectors: 1 (0x0001)
    Load LBA: 2156 (0x0000086c)               |     Load LBA: 548 (0x00000224)

.iso 文件包含以下文件:

%tree -L 2 /mnt    

├── autorun.inf
├── boot
│   ├── bcd
│   ├── bootfix.bin
│   ├── boot.sdi
│   ├── bootsect.exe
│   ├── en-us
│   ├── etfsboot.com
│   ├── fonts
│   ├── memtest.exe
│   └── resources
├── bootmgr
├── bootmgr.efi
├── efi
│   ├── boot
│   └── microsoft
├── setup.exe
├── sources
│   ├── *MANY .dll FILES*
└── support
    └── logging

问题

我应该尝试不同的 iso,因为它已损坏,还是问题与虚拟机本身有关?

相关内容