Rune,
the default xmdefaults file has this
disk = [ 'phy:sda%d,sda1,w' % (7+vmid),
'phy:sda6,sda6,r' ]
Therefore when you pass vmid=1, it attempts to pass sda8 from dom0
into dom1 as sda1. However, it does not look like you have sdaXX.
Therefore, just copy the defaults file and change the above line to
disk= [ 'phy:hda1,sda1,w',
'phy:hda2,sda2,w']
where I am assuming that hda2 is your swap partition. Make sure that
your /etc/fstab file in your root partition for dom1 has the correct
entries to load sda1 as / and sda2 as swap.
You can then start a new domain by using xm create -f <new defaults file> vmid=1
Also, just make sure you are not sharing partitions between dom0 and dom1.
Niraj
On Thu, 15 Jul 2004 12:35:14 +0200, Rune Johan Andresen
<runejoha@xxxxxxxxxxx> wrote:
> Hi, I have one partition, hda1 and one for swapping. I use the default
> xmdefaults config file (with edited link to the image). When I try
> xm create vmid=1 i get an error:
>
> Error creating domain: [Failure instance: Trackeback:
> xen.xend.XendError.vmError, vdb: Segment not foundXXXXXX:
> unname=phy:sda8
>
> How can I edit to make Xen use the right partition, I am not sure how
> Xen really is setup to manage this(?)
>
> Rune
>
> -------------------------------------------------------
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@xxxxxxxxxxxxxxxxxxxxx
> https://lists.sourceforge.net/lists/listinfo/xen-devel
>
-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel
|