Microsoft has just released Windows 8 Consumer Preview. Here’s a method to install Windows 8 in Linux using KVM and Qemu. You can use this beta version of Windows 8 until the 15th of January 2013, after which it will be unusable. Here are the requirements to install Windows 8: 1 GHz Processor or greater 1 GB RAM 20 GB free storage for the 64-bit version Before you start, make sure your processor supports Intel Virtualization Technology (VT) or AMD’s AMD V CPU virtualization extensions. Type this command to check vmx or svm flags:
1 |
egrep --color "(vmx|svm)" /proc/cpuinfo |
If this is the case, you can install KVM. Type the following command for RPM-based distributions such as Fedora:
1 |
sudo yum install kvm |
or the following command for Debian or Ubuntu:
1 |
sudo apt-get install qemu-kvm |
Then download the ISO image of Windows 8 on Microsoft website (64-bit version) :
1 |
wget http://iso.esd.microsoft.com/WCPDL/BD1B8A49393E30CC9C4E5C88457D73E964F1F3B18/Windows8-ConsumerPreview-64bit-English.iso |
Create a 20 GB virtual hard drive to install Windows 8: […]