1

How do I make a bootable usb pen drive to install my windows 10 iso on 15.04? I'd like detailed instructions with commands and or possibly a link.

Bor
  • 123

2 Answers2

0

There are two methods.

  1. If you have wine preinstalled:

    Download Rufus (you need Wine two run it. then select your iso file and the usb device. the rest is easy

  2. Wine not required:

    Install Winusb. Open a terminal windows (Ctrl+Alt+T)

    Paste the following commands one by one:

    sudo add-apt-repository ppa:colingille/freshlight
    sudo sh -c "sed -i 's/trusty/saucy/g' /etc/apt/sources.list.d/colingille-freshlight-trusty.list"
    sudo apt-get update
    sudo apt-get install winusb
    

    Now, choose From a disk image(iso)

    select your file

    Then select the target device

    Click install

Eric Carvalho
  • 54,385
Ankan
  • 1
0

UNetbootin will do

sudo apt-get install unetbootin

Or you could try a bit-by-bit copy.

Gayan Weerakutti
  • 3,770
  • 26
  • 38
  • I wonder why the developers say it won't do: "UNetbootin allows you to create bootable Live USB drives for Ubuntu and other Linux distributions without burning a CD." – Cornelius Dec 16 '15 at 20:35