2

I'm trying to make a bootable USB from a Windows 10 iso. I have tried to use woeusb to do that, like the internet tutorials say, but even with the apt updated woeusb can't be located, nor does the version on the snap store works. So then I've mounted the iso and copied it's files into the USB.

That also didn't work, even manually selecting "boot from USB" the computer would just go straight to the linux install. I think that means that didn't work, even though I have used this same usb stick earlier today to install linux. What can be done?

EDIT: makeusb progress bar keeps going back once it is nearly done. Note that the rate is negative in the screenshot. enter image description here

José
  • 123
  • 1
  • 1
  • 5
  • 2
  • 1
    I'm trying right now, but the progress bar seems to go backwards on and off, and it has been like this for a while. I've added a screenshot in the question. – José Sep 13 '20 at 18:59
  • When the write buffer is filled (more is written to the buffer than from the buffer) it goes backward. When the whole content of the iso file is written, the buffer will gradually get smaller. The buffered alias 'dirty' data will be written to the target drive. Finally all data will be written, and you will get information about that. The write speed to the target drive is usually limited by the memory cells of the USB pendrive. – sudodus Sep 13 '20 at 19:06
  • Nautilus has a built-in ISO flasher. Did you try it? – adazem009 Sep 13 '20 at 19:15
  • If none of these solutions work for you, I would try Ventoy: https://www.ventoy.net/en/index.html. It makes adding bootable ISOs to a USB drive as simple as copying the image to the drive. – ajgringo619 Sep 13 '20 at 21:20
  • 2
    eventually mkusb worked out, it just took a lot of time, I'm leaving the question in case somebody has the same issue – José Sep 13 '20 at 22:00
  • When a USB pendrive or memory card has been used for a long time it can get extremely slow at writing. Then it can help to wipe the whole device (overwrite with zeros), and the write speed will be restored to almost the original speed. You can do that with mkusb too. – sudodus Sep 14 '20 at 05:56
  • Since the newer versions of Windows made the .wim file over 4GB, almost all instructions on Internet are wrong. You cannot then put the .wim file on a FAT32 partition. And FAT32 required for UEFI boot. The Windows tools split the .wim file. Do not know why Windows just does not split the file in the ISO. – oldfred Sep 14 '20 at 15:03

1 Answers1

8

Installing Windows using mkusb-plug

enter image description here

Step 1

enter image description here

Step 2

enter image description here

Step 3

[enter image description here]4]

Step 4

enter image description here

Step 5

enter image description here

Step 6

enter image description here

Step 7

enter image description here

Step 8

You should now have a USB installer ready to infect your computer with Windows

https://help.ubuntu.com/community/mkusb#Windows_USB_install_drive

C.S.Cameron
  • 19,519