在 Windows 上使用 qemu 安装 bookworm (debian 120

在 Windows 上使用 qemu 安装 bookworm (debian 120

Windows 11 最新 QEMU Debian 12.4.0 netinstall

  1. 按照各种 YouTube 视频中所示安装 QEMU。

  2. 使用 qemu-img.exe 创建我的图像文件如下;

    qemu-img create -f qcow2 debian.img 128G
    Formatting 'debian.img', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib size=137438953472 lazy_refcounts=off refcount_bits=16
    

    dir debian.img表演12/18/2023 05:15 PM 198,656 debian.img

  3. qemu-img 信息显示:

    image: debian.img
    file format: qcow2
    virtual size: 128 GiB (137438953472 bytes)
    disk size: 194 KiB
    cluster_size: 65536
    Format specific information:
        compat: 1.1
        compression type: zlib
        lazy refcounts: false
        refcount bits: 16
        corrupt: false
        extended l2: false
     Child node '/file':
         filename: debian.img
         protocol type: file
         file length: 194 KiB (198656 bytes)
         disk size: 194 KiB
    
  4. 当我尝试将 Debian 安装到此映像中时,我获得了不错的 GUI 安装,但随后它抛出了错误。使用的命令是

    qemu-system-x86_64 -drive          file=debian.img,index=0,media=disk,format=raw -cdrom .\debian-12.4.0-amd64-netinst.iso -m 4G -L Bios -usbdevice mouse -usbdevice keyboard -boot menu=on -rtc          base=localtime,clock=host -parallel none -serial none -name debian -machine acpi=off,hpet=off -no-reboot
    

    抛出的错误表明正在检查实际文件大小(194k)而不是虚拟磁盘空间(128G)

  5. 我无法--preallocation-full在调整大小时或将其作为创建时的 -o 参数(没有(--)。

帮助?

相关内容