-1

i'm using Ubuntu 20.04 and i want to make a bootable usb for Wndows 10. woeusb is not working while trying restore disk in diskpart usb is not picking boot can you suggest me better way?

dlin
  • 3,900
assas
  • 1

2 Answers2

1

You can use dd command

sudo dd status=progress if=name-of.iso of=/dev/sdb

if == input file of == output file

0

I tried all the ways I found on the internet - dd, installing from an repo or from .deb woeusb, the creation partitions by gparted with ntfs and copying the content of the windows-iso with ms-sys mbr etc. All these ways are not working for me. The only way that helped me was:

  1. Re-creation of a new fat32-partition (not ntfs!) on a flash drive with gparted.

  2. Installing unetbootin:

    sudo add-apt-repository ppa:gezakovacs/ppa

    sudo apt-get update

    sudo apt-get install unetbootin

  3. Creation the bootable flash drive from windows-iso with unetbootin

  4. Setting boot-flag on the flash-partition by gparted

Verter
  • 241