Tuesday, December 13, 2016

Make A Bootable Windows 10 USB Install Stick On Linux With WinUSB Fork

Make A Bootable Windows 10 USB Install Stick On Linux With WinUSB Fork


WinUSB is a tool that can be used to create a bootable USB Windows installer from an ISO or a DVD, either using a GUI or from the command line.

The application looks pretty much abandoned, with the latest release dating back to 2013 however, GitHub user slacka forked it, fixed most of its bugs, and updated it to support both wxWidgets 2 and 3.


A few months ago I tried using the original WinUSB to create a bootable Windows 10 pendrive, but it failed. Im not sure if thats because of the changes in Windows 10, in Ubuntu (which I used to create the USB) or both, but using slackas WinUSB fork worked, although I did encounter a small issue (see below).

I tested slackas WinUSB fork to create a bootable Windows 10 USB on Ubuntu 16.04, and while using the GUI, I got an error (already reported) near the end of the process. However, I was still able to use the resulted bootable USB to install Windows 10:



The error doesnt occur when creating a Windows USB stick using WinUSB from the command line.

I should add that I only tested the WinUSB fork with Windows 10 on Ubuntu 16.04, but it should work with Windows 7 and Windows 8 / 8.1 (and older Ubuntu versions) as well. Also, I performed the Windows 10 installation in VirtualBox, and not on real hardware.

If you want to test the bootable Windows USB youve created using WinUSB, before installing it on real hardware, you can use VirtualBox. To be able to boot from USB in VirtualBox, see THIS AskUbuntu answer (make sure your username is added to the "vboxusers" and "disk" groups, or it wont work - youll find the commands to do this in the AskUbuntu link above, under "EDIT").


Install WinUSB fork in Ubuntu or Linux Mint


I uploaded slackas WinUSB fork to the main WebUpd8 PPA, to make it easier to install in Ubuntu (16.04, 15.10, 15.04 and 14.04 or Linux Mint (17.x or 18) and derivatives. To add the PPA and install WinUSB, use the following commands:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install winusb
If you dont want to add the PPA, you can grab the deb from HERE.

Arch Linux users can install slackas WinUSB fork via AUR.

For other Linux distributions, download it from GitHub.

The original WinUSB is also available in a PPA (provides packages up to Ubuntu 14.10 only!).


Create a bootable Windows 10 USB install stick using WinUSB


A. Create a bootable Windows USB install stick using the WinUSB GUI

Simply launch WinUSB from the menu / Dash, select the Windows 10 (again, it probably also works with Windows 7 and 8 / 8.1) ISO or DVD,, then select the USB drive under "Target device" and click "Install". 

Remember that you may encounter THIS issue while using the GUI (however, in my test, the bootable Windows 10 USB worked despite of that).

B. Create a bootable Windows USB install stick from the command line using WinUSB

If you want to create a bootable Windows USB from the command line, you must first determine what the USB physical drive is. You can easily find this out from the WinUSB GUI (youll find it under "Target device" - in my case its "/dev/sdc"). You can also find the device using GNOME Disks, or from the command line, using "lsblk" and so on.

Important: make sure you use the correct USB device because it will be formatted!

Once you know the device and the path to the ISO, to create a bootable Windows USB stick from the command line, use:
sudo winusb --format </path/to/windows.iso> <device>
Heres an example:
sudo winusb --format /home/andrei/Downloads/win10.iso /dev/sdc


Available link for download