There is no working Win USB software for Ubuntu 15.10 to create a bootable windows USB stick. There is another software to use for this purpose (or even a newer version of the Win USB)?
Asked
Active
Viewed 9,443 times
1
-
2See http://askubuntu.com/questions/289559/how-can-i-create-a-windows-bootable-usb-stick-with-ubuntu for the current answer. If 15.10 is different that topic needs updating. – Rinzwind Oct 23 '15 at 14:08
2 Answers
2
Just format drive in FAT32 fs and extract contents of Windows.iso to it. Replace /dev/sdX with appropriate device:
mkfs.fat -F 32 /dev/sdX1 -n WINSETUP
mkdir -p /mnt/WINSETUP /mnt/WINSOURCE
mount /dev/sdX1 /mnt/WINSETUP
mount ~/Downloads/Windows.iso /mnt/WINSOURCE
cp -rv /mnt/WINSOURCE/* /mnt/WINSETUP

yurikoles
- 1,262
-
It should be noted that this is a good method, but only for UEFI bootable media that should work with Windows 8 and newer. – Cornelius Nov 19 '15 at 20:49
1
You can install WinUSB in Ubuntu 15.10. However, there are some things to consider:
- be sure you get the newest version that does not depend on
grub
, but ongrub-pc | grub-efi
otherwise you may make your system non bootable; - you cannot make UEFI bootable flashdrives with it. Only the old MBR bootable type.
Here are the steps:
- Download build from here, the second page: Launchpad.
- Install the
deb
as you wish (Software Center, GDebi, Terminal). - Install
grub-pc-bin
package. - Edit
/usr/bin/winusb
to fix the 512 error by modifyinggrub-install
instruction from script withgrub-install --target=i386-pc --boot-directory="$partitionMountPath/boot" "$device"
.
If the GUI is not starting you can still use the CLI winusb
. Otherwise the only remaining solution is to compile from source with ./config.sh
and make
.
I also wrote about this on my website here.

Cornelius
- 9,483
- 4
- 40
- 62