Best solution? Rather than borrowing my partners machine all the time I figure I should be using virtualisation to run Windows XP instances on my machine to test webapps.
To do this you (obviously) need a windows licence appropriate for which ever flavour of windows you are going to use.
I have a .vdi file that represents a basic XP installation I just need to get it running on this machine (since formatting). So first up I have to get VirtualBox installed....
Oracle kindly provide a yum repo to enable easy install and updates of VirtualBox on rpm based machines. To make use of that we have to create a virtualbox repo file.
[root@bigfoot yum.repos.d]# pwd/etc/yum.repos.d[root@bigfoot yum.repos.d]# cat virtualbox.repo[virtualbox]name=Fedora $releasever - $basearch - VirtualBoxbaseurl=http://download.virtualbox.org/virtualbox/rpm/fedora/$releasever/$basearchenabled=1gpgcheck=1gpgkey=http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc[root@bigfoot yum.repos.d]#
Now it's easy to install VirtualBox using yum. A bit of "yum provides" searching of repos reveals the appropriate package to install:
[root@bigfoot yum.repos.d]# yum install VirtualBox-3.2
There we have it.
How I love the package management systems of Linux for installing stuff!