I am Linux user and currently there is no Windows* PC s available to me . I just want to experience the Windows 8 I have a Windows 8 Image/files I have a running Ubuntu PC I have an 8 GB USB disk I want to install Windows in a old PC which doesn't have support for UEFI boot. Is there any solution available ?
Asked
Active
Viewed 1,373 times
1 Answers
2
In Non-UEFI machines, we can use GRUB2 to make USB stick bootable. Then, we can use 'ntldr' command in the GRUB2 to boot Windows from USB.
- Enable the boot flag on the target partition of the USB. It can be easily done with the use of the tool called "GParted". It is a GUI tool for drive partitioning .
- If the installation image is a ISO file, Mount it and access the files.
- Copy the all files to root of USB drive
Install GRUB to USB Drive.
grub-install --target=i386-pc --boot-directory="/media/user/MyUSBDrive/boot" /dev/sdXConfigure GRUB to boot Widows.
Place the following file as "/boot/grub/grub.cfg" in the USB dirve
set menu_color_normal=white/black set menu_color_highlight=black/light-gray menuentry 'Install Windows 8' { ntldr /bootmgr }
See complete answer at my blog Creating a bootable windows USB from Linux
A.B.
- 92,125
harish2704
- 451