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,445 times
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,253
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,653