Fix Windows 11 USB Install Properly | Generated by AI

Home 2026.02

Question: The dd command to write the Win11_25H2_China_GGK_Chinese_Simplified_x64.iso to /dev/rdisk10 on macOS has finished. Now, on a Lenovo XiaoXin 14 IAH8 laptop currently running Ubuntu, how do I proceed to install Windows 11 from this USB?

Answer:

Your dd command completed successfully (≈7 GB written), so the USB is now prepared as a raw copy of the Windows 11 ISO.

Important note about dd method on non-Windows systems
The plain dd method works for many older Windows versions, but for Windows 10/11 ISOs (especially recent builds like 25H2), it frequently causes problems: the installer boots but fails to detect internal drives (SSD/NVMe shows as missing). This happens because Windows expects a specific partition layout, FAT32 + NTFS split for large install.wim files (>4 GB), and proper boot files that dd does not create correctly.

  1. Do not try booting the current USB yet — the chance of failure is high.
  2. Boot back into Ubuntu on your Lenovo XiaoXin 14.
  3. Install and use a better tool to re-create the bootable USB properly:
    • Ventoy (easiest and recommended in 2025–2026)
      • Download Ventoy → https://www.ventoy.net (or from GitHub releases)
      • Run Ventoy → install it to your USB drive (it formats the USB and creates two partitions)
      • Simply copy your .iso file(s) to the Ventoy data partition
      • Done — Ventoy handles Windows 11 quirks automatically (including large .wim splitting if needed)
    • Alternative tools if you prefer:
      • WoeUSB (good for single Windows ISOs, supports NTFS target)
        • Install via PPA or flatpak: sudo apt install woeusb
        • Example: sudo woeusb --device your.iso /dev/sdX
      • mkusb or woeusb-ng (also handle the large install.wim issue)
  4. After creating the USB with Ventoy / WoeUSB:
    • Safely eject the USB.

How to boot and install Windows 11 on Lenovo XiaoXin 14 IAH8

Lenovo XiaoXin series (IdeaPad-like, Chinese domestic line) usually uses these keys:

Common BIOS changes needed for Windows 11 install

  1. Go to Security tab → set Secure Boot → Disabled
  2. Go to Boot tab:
    • Set Boot Mode / Boot PriorityUEFI (not Legacy/CSM unless you have special needs)
    • Make sure USB / UEFI USB appears in boot order (move it to top if needed)
  3. Save & Exit (usually F10 → Yes)

Then restart and use F12 to select the USB.

Installation flow (once booted into Windows Setup)

Quick troubleshooting checklist

If the dd USB miraculously works — great, but experience shows ~70–80% failure rate on recent Windows 11 builds when made with dd on macOS/Linux.

References:


Back Donate