Difference between revisions of "Installing and Running Windows 7 as a Xen HVM domainU Guest"

From Virtuatopia
Jump to: navigation, search
m (Text replacement - "<htmlet>xen<htmlet>" to "<htmlet>xen</htmlet>")
 
(3 intermediate revisions by 2 users not shown)
Line 8: Line 8:
  
  
<google>BUY_XEN_ESSENTIALS</google>
+
<htmlet>xen</htmlet>
  
  
Line 156: Line 156:
  
  
<google>BUY_XEN_ESSENTIALS</google>
+
<htmlet>xen</htmlet>
  
  

Latest revision as of 18:52, 29 May 2016

PreviousTable of ContentsNext
Virtualizing Windows Server 2008 with XenAdding USB Devices to a Xen HVM domainU Guest


Purchase and download the full PDF and ePub versions of this Xen eBook for only $8.99 Add to Cart


This chapter of Xen Virtualization Essentials will cover in detail the steps necessary to install and run Microsoft Windows 7 as a virtualized Xen guest.

Since Windows 7 falls into the Xen category of an unmodified operating system (in other words an operating system that has not been altered specifically to run on the Xen hypervisor) paravirtualization is not an option. The best way, therefore, to virtualize Windows 7 is to configure it as a Xen Hardware Virtual Machine (HVM) guest. For information about the primary differences between paravirtualization, hardware virtualization and full virtualization read the chapter of this book entitled An Overview of Virtualization Techniques.




Requirements for Xen Windows 7 Virtualization

This chapter assumes that the Xen host system is running a Xen enabled kernel and that the standard Xen tools (specifically xm) are also installed. In addition, hardware virtualization requires that the host system hardware include either Intel-VT or AMD-V virtualization support. In order to verify this run the following commands on the host system:

For Intel CPUs:

grep vmx /proc/cpuinfo

For AMD CPUSs:

grep svm /proc/cpuinfo

If neither of the above command produce output then it is likely these features are unavailable and that your hardware is unable to run Xen HVM guests.

Windows 7 Installation Media

In order to install Windows 7 as a Xen HVM guest the next requirement is the operating system installation media. This is likely to be in the form of a DVD. Alternatively, if the media was downloaded from the Microsoft web site, it will be in the form of an ISO image file. Installation may be performed directly from the DVD, from an ISO image, or the contents of the DVD may be copied to an ISO image file on the host system.

To create an ISO image simply insert the DVD into a drive, unmount it if it automounts and then run the following command (substituting /dev/cdrom for your DVD drive device):

dd if=/dev/cdrom of=windows7.iso

Preparing Storage Space for Windows 7

Obviously, the Windows 7 guest system will need disk space into which it can install itself and subsequently execute. This space can take the form of either a physical disk drive connected to the host system or a disk image file accessible to the host system. If a physical disk drive is available for the guest, make a note of the device name. This is typically a device beginning with /dev/sd or /dev/hd followed by a letter (for example /dev/sdc or /dev/hdb).

If a disk image is required one may be created using the dd command-line tool:

dd if=/dev/zero of=xenwin7.img bs=1024k seek=10000 count=0

The above command creates a 10Gb image file named xenwin7.img.

Creating the Xen Windows 7 Configuration File

The next step involves the creation of a domainU configuration file suitable for installing Windows 7 as a Xen guest.

The following file is an example configuration file with the minimal settings required for a Windows 7 Xen guest:

import os, re
arch = os.uname()[4]
if re.search('64', arch):
    arch_libdir = 'lib64'
else:
    arch_libdir = 'lib'

kernel = "/usr/lib/xen/boot/hvmloader"
builder='hvm'
memory = 1024

# Should be at least 2KB per MB of domain memory, plus a few MB per vcpu.
shadow_memory = 8
name = "xenwin7"
vif = [ 'type=ioemu, bridge=xenbr0' ]
acpi = 1
apic = 1
disk = [ 'file:/home/xen/xenwin7.img,hda,w', 'file:/home/xen/windows7.iso,hdc:cdrom,r' ]

device_model = '/usr/' + arch_libdir + '/xen/bin/qemu-dm'

#-----------------------------------------------------------------------------
# boot on floppy (a), hard disk (c) or CD-ROM (d) 
# default: hard disk, cd-rom, floppy
boot="dc"
sdl=0
vnc=1
vncconsole=1
vncpasswd=''

serial='pty'
usbdevice='tablet'

The above example assumes that Windows 7 is going to be installed into a disk image and that the installation media is an ISO image file. If, on the other hand, a physical disk is to be used the disk directive might appear as follows (where /dev/sdb is replaced with the appropriate physcial device name):

disk = [ 'phy:/dev/sdb,hda,w', 'file:/home/xen/windows7.iso,hdc:cdrom,r' ]

Similarly, the disk = directive can be modified to perform the installation from a physical DVD drive as in the following example (where /dev/cdrom is modified to reflect the physical device on your host system):

disk = [ 'phy:/dev/sdb,hda,w', 'phy:/dev/cdrom,hdc:cdrom.r' ]

The above line maps physical disk drive /dev/sdb on the host to /dev/hda on the guest and /dev/cdrom on the host as the CD/DVD device on the guest (note that the CD/DVD device name on your host may be different depending on your Linux distribution).

Alternatively, if a disk image file is to be used as the disk drive the line might instead read:

disk = [ 'file:/home/xen/xenwin2008.img,hda,w', 'phy:/dev/cdrom,hdc:cdrom,r' ]

A number of the configuration settings shown in the above example are to enable a graphical console for our Windows 7 guest operating system. Xen provides a choice of VNC or SDL for supporting a graphical console when the guest is running. For example the following settings select VNC:

vnc = 1
sdl = 0

whilst the following selects SDL:

vnc = 0
sdl = 1

Both SDL and VNC work very well in terms of displaying Windows in a graphical console, although VNC has some distinct advantages over SDL. Firstly, VNC provides greater flexibility than SDL in terms of remote access to the domainU graphical console. With VNC it is possible to connect to the graphical console from other systems, either on the local network or even over the internet. Secondly, when you close a VNC viewer window the guest domain continues to run allowing you to simply reconnect to carry on where you left off. Closing an SDL window, however, immediately terminates the guest domainU system resulting in possible data loss.

By default Xen does not automatically start the VNC console when the domainU guest starts up. In order to have the graphical console spawned automatically, the vncconsole = 1 setting is included.

vncconsole=1

A number of other configuration options are available to modify the guest environment but the above settings are the minimal settings recommended to run a Windows 7 guest with Xen. Once the configuration file is complete save it as xenwin7.cfg.

Starting the Xen Windows 7 HVM Guest

With the configuration complete the next step is to start up the Xen guest environment:

xm create xenwin7.cfg
Using config file "./xenwin7.cfg".
Started domain xenwin7

After a few seconds the VNC or SDL console (depending on the configuration settings) will appear and the Windows 7 installation process will begin. The following figure shows the Windows 7 instance running as a Xen HVM guest displaying in a VNC window:


Windows 7 running as a Xen HVM guest


Purchase and download the full PDF and ePub versions of this Xen eBook for only $8.99 Add to Cart



PreviousTable of ContentsNext
Virtualizing Windows Server 2008 with XenAdding USB Devices to a Xen HVM domainU Guest