0

I am creating a windows 10 bootable usb on my system, ubuntu by following this video: https://www.youtube.com/watch?v=nwKp8E2xIAc

At 2m41sec, he says that the iso file can be downloaded from: https://www.microsoft.com/en-us/software-download/windows10

and is 5MB. However, when I go on the website and download it, it is 5GB. So, I assume that I am not downloading the right file.

Could you please indicate me from where I can get this iso file ?

1 Answers1

0

You've downloaded the right ISO. It could not be so little.

To write Windows 10 ISO to flash drive (tried on 20.04), you could try the following:

  1. Install WoeUSB:

    sudo add-apt-repository ppa:nilarimogard/webupd8
    wget http://mirrors.kernel.org/ubuntu/pool/universe/w/wxwidgets3.0/libwxgtk3.0-0v5_3.0.4+dfsg-3_amd64.deb
    sudo dpkg -i libwxgtk3.0-0v5_3.0.4+dfsg-3_amd64.deb
    sudo apt install woeusb
    
  2. Write win10 iso using the following command in terminal:

    sudo woeusb --device path_to/Win10.iso /dev/sdX
    

    You could use lsblk and blkid commands to identify your flash drive device name for example, by name or by size:

    sdd      8:48   1  14.7G  0 disk 
    └─sdd1   8:49   1  14.7G  0 part
    
  3. Maybe, the following also be helpful. Set boot flag on USB flash drive:

    sudo parted /dev/sdd set 1 boot on
    
Pablo Bianchi
  • 15,657
Gryu
  • 7,559
  • 9
  • 33
  • 52