WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

[Xen-users] Win XP install on physical drive partition

To: xen-users@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-users] Win XP install on physical drive partition
From: peter <pwithc@xxxxxxxxxxxxx>
Date: Sun, 25 Feb 2007 19:08:04 -0500 (EST)
Delivery-date: Mon, 26 Feb 2007 01:47:15 -0800
Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=earthlink.net; b=fjrZmYdtZwFelBP0xIVhBckbGlPCsuHLYzC+q+3B+YK+EcGegbnUQ/n9zvQ3Q3mI; h=Message-ID:Date:From:Reply-To:To:Subject:Mime-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:X-ELNK-Trace:X-Originating-IP;
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
Reply-to: peter <pwithc@xxxxxxxxxxxxx>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
I have Xen 3.0.3 running on Mandriva 2007.  The hardware supports full 
Virturalization and is enabled.

I have attempted to install Win XP as guest domain on partitions on the main 
sda and also on a hdb drive installed in the system.  In both cases the 
installer loads from an ISO but stops when it fails to find a drive to install 
on.

I have success when I create an image file and allow the install to go there. 
The following is the hvm file:
#---------------------------------------------------------
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 = 256

name = "XP-01"

disk = [  'file:/etc/xen/images/Winxp.img,ioemu:hda,w' ]

#comment out after install
#cdrom="/tmp/xpsp2.iso" 

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

serial="pty"
#---------------------------------------------------------

I wanted this to work:

disk = [ 'phy:hdb1,hda,w' ]
or
disk = [ 'phy:sda9,hda,w' ]

but this is when the XP installer finds no disk to format.  I am sure I am 
missing some basic concept here so sorry in advance for my ignorance.

Regards, peter

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-users] Win XP install on physical drive partition, peter <=