How to create Windows bootable usb from linux Debian 13 (huawei).
Download Windows10 ISO and install gparted.
1. Run gparted select your usb
2. Create new device (msdos) MBR not GPT
3. Create 2 partitions
- 2GB fat32
- 10GB NTFS
4. Mount iso (click 2 times)
5. Copy all files from iso to NTFS partition
6. Copy all files from iso without sources to fat32 partition
7. Create sources directory on fat32 partition and copy /sources/boot.wim from iso files to this directory
8. Remove usb safely. Thats all.# Add path if fdisk missing on Debian 13
PATH="/sbin:$PATH"
# Check usb device name
df or fdisk -l
# Unmount optional
umount /dev/sdb
# Copy iso
sudo dd if=debian-13.iso of=/dev/sdb bs=4M status=progress oflag=sync# Fat
NTFS No file size limit (Windows, Linux big files), multisystems device.
fat32 Single file size limit 4GB (Windows devices), copy error for files bigger than 4GB.
exFat SD cards, pendrive (compatybility)
# Devices
msdos MBR < 2TB disk old bios pc
GPT > 2TB disk new bios pcUse isotousb or rufus and create bootable iso from windows.