|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] HVM success reports required for wiki
I've got Windows SBS 2003 R2 up and running on an Asus M2NPV-MX.
I followed Klaus Kudielka's instructions (thank-you Klaus!) and
installed the OS using qemu initially then booted it with Xen after the
installation completed.
Here's my h/w and s/w details:
MB: Asus M2NPV-MX with BIOS version 0502
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+
RAM: 2x1GB
Distro: Ubuntu 6.06 LTS
Kernel: 2.6.16.29-xen
Xen: 3.0.3
Guest OS: Windows Small Business Server 2003 R2
And here is my xen config:
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 = 512
shadow_memory = 8
name = "sbs2003"
vif = [ 'type=ioemu, bridge=xenbr0, model=ne2k_pci' ]
disk = [ 'file:/vserver/sbs2003.img,ioemu:hda,w',
'phy:/dev/hdb,hdc:cdrom,r' ]
device_model = '/usr/' + arch_libdir + '/xen/bin/qemu-dm'
boot="c"
vnc=1
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|