> -----Original Message-----
> From: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
> [mailto:xen-users-bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of Franck
> Sent: 19 June 2007 12:43
> To: xen-users@xxxxxxxxxxxxxxxxxxx
> Subject: RE: [Xen-users] Xen and Windows
>
>
> >
> >
> >> -----Original Message-----
> >> From: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
> >> [mailto:xen-users-bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of Franck
> >> Sent: 19 June 2007 11:51
> >> To: xen-users@xxxxxxxxxxxxxxxxxxx
> >> Subject: [Xen-users] Xen and Windows
> >>
> >> Hi,
> >>
> >> xend work fine now :) YAHOO
> >>
> >> I'm trying to install Win2003 on xen 3.1 64Bits with this
> tutorial :
> >> http://www.xensource.com/files/xen_install_windows.pdf
> >>
> >> All is fine except at the end :(
> >> xm create /etc/xen/available/win2003.hvm
> >> Error: (22, 'Invalid argument')
> >>
> >
> > Don't think the xend-log is useful here... The error
> message indicates
> > that your config file is "brokened".
>
> yes, i'm sure but perhaps someone has been the same problem
>
> >> win2003.hvm is a copy of xmexample.hvm
> >>
> >> # win2003.hvm
> >> # ==========> 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
> >> name = "windows2003"
> >> vif = [ 'type=ioemu, bridge=xenbr0' ]
> >> disk = [ 'phy:vg00/windows2003,ioemu:hda,w' ]
> >> cdrom="/media/iso_images/windows_2003_standard.iso"
> >
> > I'm not sure if 3.1 accepts the "cdrom=" statement. Better
> to use the
> > new model of adding something like this on the "disk=" line:
> > "file:some-filename-with-path,hdc:cdrom,r"
>
> disk = [ 'phy:vg00/windows2003,ioemu:hda,w', ',hdc:cdrom,r' ]
I suppose you REALLY have something (sensible) between "'" and ","
before hdc above, right?
Ah, and also try giving an absolute path for the first part, such as
"phy:/dev/vg00..." (check that this is really the right path, of
course). I don't think "ioemu:" is necessary either, so you can remove
that for 3.1. That's probably not helping, but it's worth a try.
--
Mats
>
> > You should also have a line for the device model:
> > device_model='/usr/' + arch_libdir + '/xen/bin/qemu-dm"
>
> Yes, i've this ...
>
> Results are the same :(
>
> Franck
> --
> http://www.linuxpourtous.com
>
>
> _______________________________________________
> Xen-users mailing list
> Xen-users@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-users
>
>
>
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|