Tuesday, December 2, 2014

ubuntu - UEFI fails to boot Windows 8 from live usb


I've burned windows 8 image on my usb using dd. There all files like boot efi bootmgr etc. on it. When i press Esc during boot, there comes a menu with 3 options: Ubuntu, UEFI Sony, Enter setup. When i choose UEFI Sony(potential windows), menu disappears for a second and pops up again. If i change boot priority in UEFI, making my usb #1, computer tries to boot Windows for some time, then ignores it and starts ubuntu. I suspect that i am doing completely wrong, but i've wasted the whole day.


Answer



The latest ISOs provided by Microsoft do not work with any of the traditional tools. Quoting from the MKUB community wiki:



It was not possible to extract the content from the Windows iso file directly to a USB pendrive. The files were not copied correctly (with any of the standard copying tools: cp, rsync, dd) in Ubuntu 16.04.1 LTS (the current Ubuntu version, when this feature was added to mkusb-nox). But it works in a reliable way to extract to a tarfile, and then extract from the tarfile to the USB pendrive.



So, the easy solution is to use that exact same tool (tested successfully): MKUSB (for Ubuntu and derivatives, may also work in Debian and derivatives).


Installation:


sudo add-apt-repository ppa:mkusb/ppa
sudo apt-get update
sudo apt-get install mkusb mkusb-nox usb-pack-efi

Special usage instructions for "Windows USB install drive"


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...