Displaying 1 result from an estimated 1 matches for "acw2".
Did you mean:
acc2
2007 Jun 18
1
CentOS 5 and Xen Windows domU
...This
is the config file I'm using:
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
shadow_memory = 520
name = "acw2"
vcpus=4
vif = [ 'type=ioemu, mac=00:18:32:6c:00:ba, bridge=xenbr0' ]
disk = [ 'phy:/dev/acw1/acw2,ioemu:hda,w',
'file:/isos/en_ws_2003_std_sp1_vl.iso,ioemu:hdc:cdrom,r' ]
cdrom='/dev/hdc'
boot='dca'
#boot='a'
device_model = '/usr/' + arc...