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,438 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
Yurii Kolesnykov
- 1,259
- 8
- 10
-
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-efiotherwise 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
debas you wish (Software Center, GDebi, Terminal). - Install
grub-pc-binpackage. - Edit
/usr/bin/winusbto fix the 512 error by modifyinggrub-installinstruction 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,353
- 4
- 40
- 61