+++ author = "Blagovest Petrov" title = "Virtualize a broken Windows XP machine with KVM or Xen, Part1" date = "2013-11-03" tags = [ "Windows", "Virtualization", ] categories = [ "System Administration", ] +++ ![Maquinas sucias by Javier Aroche, on Flickr](http://farm4.staticflickr.com/3217/2423244723_f0cff8ddf1.jpg) There are a lot of dirty legacy Personal Computers which are online and cannot be reinstalled. The most common problems are that they are installed with a special software and the CDs are lost or licensing problems. But what will happen when your zombie Durom dies? And your boss wants to use the accounting software ASAP.. The best scenario is when your HDD is healthy 🙂 First, you shoud find a cheap HDD -> USB converter. This is the clearest solution because I don’t want to turn off my virtual hypervisors and probably, the old machine would have an IDE HDDs. Chinese combined IDE/SATA -> USB converters can be found for 15-16$. ![USB Converter from AliExpress](img/sku_226847_1.jpg) # IMPORTANT! The old PC’s are too dirty and their cases are sharp and dangerous! You should have a DPT vaccine and suitable protective clothing!!! The HDD must be put on a PC with a hardware acceleration and KVM installed. In my case, my personal laptop was the salvation. I prepared a dummy VM with virt-manager, just to generate the XML file for libvirt. Use the simplest configuration. WinXP runs on an old hardware... Here are some steps in images: ![1](img/1.png) ![4](img/4.png) Just one CPU with 1024Mb Ram is OK ![2](img/2.png) It’s not necessary to have WinXP iso. Use something just to generate the XML for LibVirt. ![3](img/3.png) The disk is also not revelant. It will be removed after the configuration. ![5](img/5.png) Better use `i686` for Windows XP ![6](img/6.png) Force off the machine after this window and open the terminal. In the terminal, type `virsh dumpxml WinXp > WinXp.xml` . Open the generated text file with your text editor and find the following stanzas: ```xml
``` Remove the whole stanza about the CD Rom and change the disk configuration like this: ```xml
``` `/dev/sdX` must be your hard drive, connected with the chinese gadget. Make sure it’s not mounted on the host system. Now your XP machine should run directly from the hard drive.