windows icon indicating copy to clipboard operation
windows copied to clipboard

[Bug]: BdsDxe: failed to load Boot0002 "UEFI QEMU QEMU HARDDISK " from PciRoot(0x0)/Pci(0xA,0x0)/Scsi(0x0,0x0): Not Found

Open Czj1997-02 opened this issue 2 months ago • 4 comments

Operating system

Ubuntu20.04

Description

BdsDxe: failed to load Boot0002 "UEFI QEMU QEMU HARDDISK " from PciRoot(0x0)/Pci(0xA,0x0)/Scsi(0x0,0x0): Not Found

Docker compose

services:
  windows:
    image: dockurr/windows
    container_name: windows
    environment:
      VERSION: "win11"
      RAM_SIZE: "8G"
      CPU_CORES: "4"
      DISK_SIZE: "64G"
      USERNAME: "root"
      PASSWORD: "root"
      LANGUAGE: "Chinese"
      # 设置KVM为N,表示不使用KVM加速
      KVM: "N"
    volumes:
      - /opt/windows/storage:/storage
      - /opt/windows/data:/data
    # 设置 privileged 允许访问所有设备
    privileged: true
    # devices:
      # ls -l /dev
      # ls -l /dev | grep kvm
      # sudo chmod 666 /dev/udmabuf 
      # - /dev/udmabuf:/dev/udmabuf
    cap_add:
      - NET_ADMIN
    ports:
      - 8006:8006
      - 3389:3389/tcp
      - 3389:3389/udp
    stop_grace_period: 2m

Docker log

BdsDxe: failed to load Boot0002 "UEFI QEMU QEMU HARDDISK " from PciRoot(0x0)/Pci(0xA,0x0)/Scsi(0x0,0x0): Not Found
windows  | BdsDxe: loading Boot0001 "UEFI QEMU DVD-ROM QM00013 " from PciRoot(0x0)/Pci(0x5,0x0)/Sata(0x0,0xFFFF,0x0)
windows  | BdsDxe: starting Boot0001 "UEFI QEMU DVD-ROM QM00013 " from PciRoot(0x0)/Pci(0x5,0x0)/Sata(0x0,0xFFFF,0x0)

Screenshots (optional)

image

Czj1997-02 avatar Dec 02 '24 08:12 Czj1997-02