Hi, I''m a newbie to Xen. I was using VMware until now to work on a guest OS which will boot from a live CD. How to boot the same CD in Xen, and how to write a new configuration file (vmx) file for this. I''m working on a Intel P4 2.8GHz based Desktop PC with 2GB of RAM. Do i need to change my configuration? Please give me steps. Thanks in advance, Sairam ******************************************************************************** This email message (including any attachments) is for the sole use of the intended recipient(s) and may contain confidential, proprietary and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately notify the sender by reply email and destroy all copies of the original message. Thank you. Intoto Inc. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Mi, Mär 05, 2008 at 03:59:40 +0530, M P Sairam wrote:> Hi, > I''m a newbie to Xen. > > I was using VMware until now to work on a guest OS which will boot > from a live CD. How to boot the same CD in Xen, and how to write a new > configuration file (vmx) file for this.1. Create config file /etc/xen/knoppix (you can use any different name) $ cat /etc/xen/knoppix kernel = "hvmloader" builder=''hvm'' memory = 128 name = "knoppix" vif = [ ''type=ioemu, bridge=xenbr0'' ] disk = [ ''file:/path/to/your/knoppix.iso,hda:cdrom,r'' ] device_model = ''qemu-dm'' sdl=0 vnc=1 vncpasswd='''' stdvga=0 serial=''pty'' boot=''d'' 2. Start the domain xm create knoppix 3. Attach to its vnc console: vncviewer 127.0.0.1:0 Note that bridge xenbr0 must exist! If your virtual bridge''s name differs from xenbr0, specify correct name in the config file. Also you can google for any information related to Xen HVM domains.> > I''m working on a Intel P4 2.8GHz based Desktop PC with 2GB of RAM. Do > i need to change my configuration? > > Please give me steps. > > Thanks in advance, > Sairam > > ******************************************************************************** > This email message (including any attachments) is for the sole use of the > intended recipient(s) and may contain confidential, proprietary and > privileged information. Any unauthorized review, use, disclosure or > distribution is prohibited. If you are not the intended recipient, > please immediately notify the sender by reply email and destroy all > copies of the original message. Thank you. > > Intoto Inc. > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users-- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Do i need to upgrade my hardware??? Igor Chubin wrote:> On Mi, Mär 05, 2008 at 03:59:40 +0530, M P Sairam wrote: > >> Hi, >> I''m a newbie to Xen. >> >> I was using VMware until now to work on a guest OS which will boot >> from a live CD. How to boot the same CD in Xen, and how to write a new >> configuration file (vmx) file for this. >> > > > > 1. Create config file /etc/xen/knoppix (you can use any different name) > > > $ cat /etc/xen/knoppix > > > kernel = "hvmloader" > builder=''hvm'' > memory = 128 > name = "knoppix" > vif = [ ''type=ioemu, bridge=xenbr0'' ] > disk = [ ''file:/path/to/your/knoppix.iso,hda:cdrom,r'' ] > device_model = ''qemu-dm'' > sdl=0 > vnc=1 > vncpasswd='''' > stdvga=0 > serial=''pty'' > boot=''d'' > > > 2. Start the domain > > > xm create knoppix > > > 3. Attach to its vnc console: > > vncviewer 127.0.0.1:0 > > > > > Note that bridge xenbr0 must exist! > If your virtual bridge''s name differs from xenbr0, > specify correct name in the config file. > > > > > Also you can google for any information related to > Xen HVM domains. > > >> I''m working on a Intel P4 2.8GHz based Desktop PC with 2GB of RAM. Do >> i need to change my configuration? >> >> Please give me steps. >> >> Thanks in advance, >> Sairam >> >> ******************************************************************************** >> This email message (including any attachments) is for the sole use of the >> intended recipient(s) and may contain confidential, proprietary and >> privileged information. Any unauthorized review, use, disclosure or >> distribution is prohibited. If you are not the intended recipient, >> please immediately notify the sender by reply email and destroy all >> copies of the original message. Thank you. >> >> Intoto Inc. >> >> >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-users >> > >******************************************************************************** This email message (including any attachments) is for the sole use of the intended recipient(s) and may contain confidential, proprietary and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately notify the sender by reply email and destroy all copies of the original message. Thank you. Intoto Inc. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Mi, Mär 05, 2008 at 06:22:35 +0530, M P Sairam wrote:> Do i need to upgrade my hardware???You need a host system with a HVM-capable CPU and HVM-aware BIOS. If your hardware does not support HVM, you may use qemu or switch to pv mode (needs modification of the LiveCD ISO). To use qemu just install it and run: qemu -cdrom livecd.iso> > Igor Chubin wrote: >> On Mi, Mär 05, 2008 at 03:59:40 +0530, M P Sairam wrote: >> >>> Hi, >>> I''m a newbie to Xen. >>> >>> I was using VMware until now to work on a guest OS which will boot >>> from a live CD. How to boot the same CD in Xen, and how to write a >>> new configuration file (vmx) file for this. >>> >> >> >> >> 1. Create config file /etc/xen/knoppix (you can use any different name) >> >> >> $ cat /etc/xen/knoppix >> >> >> kernel = "hvmloader" >> builder=''hvm'' >> memory = 128 >> name = "knoppix" >> vif = [ ''type=ioemu, bridge=xenbr0'' ] >> disk = [ ''file:/path/to/your/knoppix.iso,hda:cdrom,r'' ] >> device_model = ''qemu-dm'' >> sdl=0 >> vnc=1 >> vncpasswd='''' >> stdvga=0 >> serial=''pty'' >> boot=''d'' >> >> >> 2. Start the domain >> >> >> xm create knoppix >> >> >> 3. Attach to its vnc console: >> >> vncviewer 127.0.0.1:0 >> >> >> >> >> Note that bridge xenbr0 must exist! >> If your virtual bridge''s name differs from xenbr0, specify correct name >> in the config file. >> >> >> >> >> Also you can google for any information related to Xen HVM domains. >> >> >>> I''m working on a Intel P4 2.8GHz based Desktop PC with 2GB of RAM. >>> Do i need to change my configuration? >>> >>> Please give me steps. >>> >>> Thanks in advance, >>> Sairam >>> >>> ******************************************************************************** >>> This email message (including any attachments) is for the sole use of >>> the intended recipient(s) and may contain confidential, proprietary >>> and privileged information. Any unauthorized review, use, disclosure >>> or distribution is prohibited. If you are not the intended recipient, >>> please immediately notify the sender by reply email and destroy all >>> copies of the original message. Thank you. >>> >>> Intoto Inc. >>> >>> >>> _______________________________________________ >>> Xen-users mailing list >>> Xen-users@lists.xensource.com >>> http://lists.xensource.com/xen-users >>> >> >> > > > ******************************************************************************** > This email message (including any attachments) is for the sole use of the > intended recipient(s) and may contain confidential, proprietary and > privileged information. Any unauthorized review, use, disclosure or > distribution is prohibited. If you are not the intended recipient, > please immediately notify the sender by reply email and destroy all > copies of the original message. Thank you. > > Intoto Inc. >> _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users-- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Mi, Mär 05, 2008 at 07:35:49 +0530, M P Sairam wrote:> what should i change in ISO Image? I''m getting errors when i''m bootingWhat an operating system is on your image?> up with qemu. I dont know much about the drivers.Can you tell what errors do you get?> > Igor Chubin wrote: >> On Mi, Mär 05, 2008 at 06:22:35 +0530, M P Sairam wrote: >> >>> Do i need to upgrade my hardware??? >>> >> >> >> >> You need a host system with a HVM-capable CPU and HVM-aware BIOS. >> >> >> If your hardware does not support HVM, you may use qemu or switch to pv >> mode (needs modification of the LiveCD ISO). >> >> To use qemu just install it and run: >> >> qemu -cdrom livecd.iso >> >> >> >>> Igor Chubin wrote: >>> >>>> On Mi, Mär 05, 2008 at 03:59:40 +0530, M P Sairam wrote: >>>> >>>>> Hi, >>>>> I''m a newbie to Xen. >>>>> >>>>> I was using VMware until now to work on a guest OS which will >>>>> boot from a live CD. How to boot the same CD in Xen, and how to >>>>> write a new configuration file (vmx) file for this. >>>>> >>>> >>>> 1. Create config file /etc/xen/knoppix (you can use any different name) >>>> >>>> >>>> $ cat /etc/xen/knoppix >>>> >>>> >>>> kernel = "hvmloader" >>>> builder=''hvm'' >>>> memory = 128 >>>> name = "knoppix" >>>> vif = [ ''type=ioemu, bridge=xenbr0'' ] >>>> disk = [ ''file:/path/to/your/knoppix.iso,hda:cdrom,r'' ] >>>> device_model = ''qemu-dm'' >>>> sdl=0 >>>> vnc=1 >>>> vncpasswd='''' >>>> stdvga=0 >>>> serial=''pty'' >>>> boot=''d'' >>>> >>>> >>>> 2. Start the domain >>>> >>>> >>>> xm create knoppix >>>> >>>> >>>> 3. Attach to its vnc console: >>>> >>>> vncviewer 127.0.0.1:0 >>>> >>>> >>>> >>>> >>>> Note that bridge xenbr0 must exist! >>>> If your virtual bridge''s name differs from xenbr0, specify correct >>>> name in the config file. >>>> >>>> >>>> >>>> >>>> Also you can google for any information related to Xen HVM domains. >>>> >>>> >>>>> I''m working on a Intel P4 2.8GHz based Desktop PC with 2GB of >>>>> RAM. Do i need to change my configuration? >>>>> >>>>> Please give me steps. >>>>> >>>>> Thanks in advance, >>>>> Sairam >>>>> >>>>> ******************************************************************************** >>>>> This email message (including any attachments) is for the sole >>>>> use of the intended recipient(s) and may contain confidential, >>>>> proprietary and privileged information. Any unauthorized review, >>>>> use, disclosure or distribution is prohibited. If you are not the >>>>> intended recipient, please immediately notify the sender by >>>>> reply email and destroy all copies of the original message. >>>>> Thank you. >>>>> >>>>> Intoto Inc. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xen-users mailing list >>>>> Xen-users@lists.xensource.com >>>>> http://lists.xensource.com/xen-users >>>>> >>>> >>> ******************************************************************************** >>> This email message (including any attachments) is for the sole use of >>> the intended recipient(s) and may contain confidential, proprietary >>> and privileged information. Any unauthorized review, use, disclosure >>> or distribution is prohibited. If you are not the intended recipient, >>> please immediately notify the sender by reply email and destroy all >>> copies of the original message. Thank you. >>> >>> Intoto Inc. >>> >>> >> >> >>> _______________________________________________ >>> Xen-users mailing list >>> Xen-users@lists.xensource.com >>> http://lists.xensource.com/xen-users >>> >> >> > > > ******************************************************************************** > This email message (including any attachments) is for the sole use of the > intended recipient(s) and may contain confidential, proprietary and > privileged information. Any unauthorized review, use, disclosure or > distribution is prohibited. If you are not the intended recipient, > please immediately notify the sender by reply email and destroy all > copies of the original message. Thank you. > > Intoto Inc. >> _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users-- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
what should i change in ISO Image? I''m getting errors when i''m booting up with qemu. I dont know much about the drivers. Igor Chubin wrote:> On Mi, Mär 05, 2008 at 06:22:35 +0530, M P Sairam wrote: > >> Do i need to upgrade my hardware??? >> > > > > You need a host system with a HVM-capable CPU > and HVM-aware BIOS. > > > If your hardware does not support HVM, > you may use qemu or switch to pv mode (needs > modification of the LiveCD ISO). > > To use qemu just install it and run: > > qemu -cdrom livecd.iso > > > >> Igor Chubin wrote: >> >>> On Mi, Mär 05, 2008 at 03:59:40 +0530, M P Sairam wrote: >>> >>> >>>> Hi, >>>> I''m a newbie to Xen. >>>> >>>> I was using VMware until now to work on a guest OS which will boot >>>> from a live CD. How to boot the same CD in Xen, and how to write a >>>> new configuration file (vmx) file for this. >>>> >>>> >>> >>> 1. Create config file /etc/xen/knoppix (you can use any different name) >>> >>> >>> $ cat /etc/xen/knoppix >>> >>> >>> kernel = "hvmloader" >>> builder=''hvm'' >>> memory = 128 >>> name = "knoppix" >>> vif = [ ''type=ioemu, bridge=xenbr0'' ] >>> disk = [ ''file:/path/to/your/knoppix.iso,hda:cdrom,r'' ] >>> device_model = ''qemu-dm'' >>> sdl=0 >>> vnc=1 >>> vncpasswd='''' >>> stdvga=0 >>> serial=''pty'' >>> boot=''d'' >>> >>> >>> 2. Start the domain >>> >>> >>> xm create knoppix >>> >>> >>> 3. Attach to its vnc console: >>> >>> vncviewer 127.0.0.1:0 >>> >>> >>> >>> >>> Note that bridge xenbr0 must exist! >>> If your virtual bridge''s name differs from xenbr0, specify correct name >>> in the config file. >>> >>> >>> >>> >>> Also you can google for any information related to Xen HVM domains. >>> >>> >>> >>>> I''m working on a Intel P4 2.8GHz based Desktop PC with 2GB of RAM. >>>> Do i need to change my configuration? >>>> >>>> Please give me steps. >>>> >>>> Thanks in advance, >>>> Sairam >>>> >>>> ******************************************************************************** >>>> This email message (including any attachments) is for the sole use of >>>> the intended recipient(s) and may contain confidential, proprietary >>>> and privileged information. Any unauthorized review, use, disclosure >>>> or distribution is prohibited. If you are not the intended recipient, >>>> please immediately notify the sender by reply email and destroy all >>>> copies of the original message. Thank you. >>>> >>>> Intoto Inc. >>>> >>>> >>>> _______________________________________________ >>>> Xen-users mailing list >>>> Xen-users@lists.xensource.com >>>> http://lists.xensource.com/xen-users >>>> >>>> >>> >>> >> ******************************************************************************** >> This email message (including any attachments) is for the sole use of the >> intended recipient(s) and may contain confidential, proprietary and >> privileged information. Any unauthorized review, use, disclosure or >> distribution is prohibited. If you are not the intended recipient, >> please immediately notify the sender by reply email and destroy all >> copies of the original message. Thank you. >> >> Intoto Inc. >> >> > > >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-users >> > >******************************************************************************** This email message (including any attachments) is for the sole use of the intended recipient(s) and may contain confidential, proprietary and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately notify the sender by reply email and destroy all copies of the original message. Thank you. Intoto Inc. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Igor Chubin wrote:> On Mi, Mär 05, 2008 at 07:35:49 +0530, M P Sairam wrote: > >> what should i change in ISO Image? I''m getting errors when i''m booting >> > > What an operating system is on your image? >It is an minimal FC7 image with size around 150 - 160 MB> > >> up with qemu. I dont know much about the drivers. >> > > Can you tell what errors do you get? >I''m attaching the screen shots of the errors.> > > > >> Igor Chubin wrote: >> >>> On Mi, Mär 05, 2008 at 06:22:35 +0530, M P Sairam wrote: >>> >>> >>>> Do i need to upgrade my hardware??? >>>> >>>> >>> >>> You need a host system with a HVM-capable CPU and HVM-aware BIOS. >>> >>> >>> If your hardware does not support HVM, you may use qemu or switch to pv >>> mode (needs modification of the LiveCD ISO). >>> >>> To use qemu just install it and run: >>> >>> qemu -cdrom livecd.iso >>> >>> >>> >>> >>>> Igor Chubin wrote: >>>> >>>> >>>>> On Mi, Mär 05, 2008 at 03:59:40 +0530, M P Sairam wrote: >>>>> >>>>> >>>>>> Hi, >>>>>> I''m a newbie to Xen. >>>>>> >>>>>> I was using VMware until now to work on a guest OS which will >>>>>> boot from a live CD. How to boot the same CD in Xen, and how to >>>>>> write a new configuration file (vmx) file for this. >>>>>> >>>>>> >>>>> 1. Create config file /etc/xen/knoppix (you can use any different name) >>>>> >>>>> >>>>> $ cat /etc/xen/knoppix >>>>> >>>>> >>>>> kernel = "hvmloader" >>>>> builder=''hvm'' >>>>> memory = 128 >>>>> name = "knoppix" >>>>> vif = [ ''type=ioemu, bridge=xenbr0'' ] >>>>> disk = [ ''file:/path/to/your/knoppix.iso,hda:cdrom,r'' ] >>>>> device_model = ''qemu-dm'' >>>>> sdl=0 >>>>> vnc=1 >>>>> vncpasswd='''' >>>>> stdvga=0 >>>>> serial=''pty'' >>>>> boot=''d'' >>>>> >>>>> >>>>> 2. Start the domain >>>>> >>>>> >>>>> xm create knoppix >>>>> >>>>> >>>>> 3. Attach to its vnc console: >>>>> >>>>> vncviewer 127.0.0.1:0 >>>>> >>>>> >>>>> >>>>> >>>>> Note that bridge xenbr0 must exist! >>>>> If your virtual bridge''s name differs from xenbr0, specify correct >>>>> name in the config file. >>>>> >>>>> >>>>> >>>>> >>>>> Also you can google for any information related to Xen HVM domains. >>>>> >>>>> >>>>> >>>>>> I''m working on a Intel P4 2.8GHz based Desktop PC with 2GB of >>>>>> RAM. Do i need to change my configuration? >>>>>> >>>>>> Please give me steps. >>>>>> >>>>>> Thanks in advance, >>>>>> Sairam >>>>>> >>>>>> ******************************************************************************** >>>>>> This email message (including any attachments) is for the sole >>>>>> use of the intended recipient(s) and may contain confidential, >>>>>> proprietary and privileged information. Any unauthorized review, >>>>>> use, disclosure or distribution is prohibited. If you are not the >>>>>> intended recipient, please immediately notify the sender by >>>>>> reply email and destroy all copies of the original message. >>>>>> Thank you. >>>>>> >>>>>> Intoto Inc. >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Xen-users mailing list >>>>>> Xen-users@lists.xensource.com >>>>>> http://lists.xensource.com/xen-users >>>>>> >>>>>> >>>>> >>>>> >>>> ******************************************************************************** >>>> This email message (including any attachments) is for the sole use of >>>> the intended recipient(s) and may contain confidential, proprietary >>>> and privileged information. Any unauthorized review, use, disclosure >>>> or distribution is prohibited. If you are not the intended recipient, >>>> please immediately notify the sender by reply email and destroy all >>>> copies of the original message. Thank you. >>>> >>>> Intoto Inc. >>>> >>>> >>>> >>> >>> >>>> _______________________________________________ >>>> Xen-users mailing list >>>> Xen-users@lists.xensource.com >>>> http://lists.xensource.com/xen-users >>>> >>>> >>> >>> >> ******************************************************************************** >> This email message (including any attachments) is for the sole use of the >> intended recipient(s) and may contain confidential, proprietary and >> privileged information. Any unauthorized review, use, disclosure or >> distribution is prohibited. If you are not the intended recipient, >> please immediately notify the sender by reply email and destroy all >> copies of the original message. Thank you. >> >> Intoto Inc. >> >> > > >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-users >> > >******************************************************************************** This email message (including any attachments) is for the sole use of the intended recipient(s) and may contain confidential, proprietary and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately notify the sender by reply email and destroy all copies of the original message. Thank you. Intoto Inc. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Do, Mär 06, 2008 at 01:45:18 +0530, M P Sairam wrote:> Igor Chubin wrote: >> On Mi, Mär 05, 2008 at 07:35:49 +0530, M P Sairam wrote: >> >>> what should i change in ISO Image? I''m getting errors when i''m >>> booting >> >> What an operating system is on your image? >> > It is an minimal FC7 image with size around 150 - 160 MBTo boot pv domain, you can not use loader installed into ISO. You must load PV-kernel (and initrd if you need it) be means of Xen (and domain 0).>> >> >>> up with qemu. I dont know much about the drivers. >>> >> >> Can you tell what errors do you get? >> > I''m attaching the screen shots of the errors.Here [1] is a description of the QEMU bug, which causes the errors. I don''t know if that patch was included into QEMU mainstream already, anyway you can download and use it to fix QEMU sources yourself. [1] https://bugzilla.novell.com/show_bug.cgi?id=291775 -- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Nico Kadel-Garcia
2008-Mar-06 08:59 UTC
Re: [Xen-users] Help Starting a Guest OS from LiveCD
Igor Chubin wrote:> On Do, Mär 06, 2008 at 01:45:18 +0530, M P Sairam wrote: > >> Igor Chubin wrote: >> >>> On Mi, Mär 05, 2008 at 07:35:49 +0530, M P Sairam wrote: >>> >>> >>>> what should i change in ISO Image? I''m getting errors when i''m >>>> booting >>>> >>> What an operating system is on your image? >>> >>> >> It is an minimal FC7 image with size around 150 - 160 MB >> > > To boot pv domain, you can not use loader installed into ISO. > You must load PV-kernel (and initrd if you need it) > be means of Xen (and domain 0). > >It should also be possible to rebuild the ISO image to use a Xen capable kernel, if you want to have that much fun. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Igor Chubin wrote:> On Do, Mär 06, 2008 at 01:45:18 +0530, M P Sairam wrote: > >> Igor Chubin wrote: >> >>> On Mi, Mär 05, 2008 at 07:35:49 +0530, M P Sairam wrote: >>> >>> >>>> what should i change in ISO Image? I''m getting errors when i''m >>>> booting >>>> >>> What an operating system is on your image? >>> >>> >> It is an minimal FC7 image with size around 150 - 160 MB >> > > To boot pv domain, you can not use loader installed into ISO. > You must load PV-kernel (and initrd if you need it) > be means of Xen (and domain 0). >how to make my existing kernel to have PV Support? Do i need to compile the kernel again!!!!> > >>> >>> >>>> up with qemu. I dont know much about the drivers. >>>> >>>> >>> Can you tell what errors do you get? >>> >>> >> I''m attaching the screen shots of the errors. >> > > > Here [1] is a description of the QEMU bug, > which causes the errors. > > I don''t know if that patch was included into QEMU mainstream already, > anyway you can download and use it to fix QEMU sources yourself. > > > [1] https://bugzilla.novell.com/show_bug.cgi?id=291775 >thanks for the information, i''ll update> > >******************************************************************************** This email message (including any attachments) is for the sole use of the intended recipient(s) and may contain confidential, proprietary and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately notify the sender by reply email and destroy all copies of the original message. Thank you. Intoto Inc. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Do, Mär 06, 2008 at 09:21:05 +0530, M P Sairam wrote:> Igor Chubin wrote: >> On Do, Mär 06, 2008 at 01:45:18 +0530, M P Sairam wrote: >> >>> Igor Chubin wrote: >>> >>>> On Mi, Mär 05, 2008 at 07:35:49 +0530, M P Sairam wrote: >>>> >>>>> what should i change in ISO Image? I''m getting errors when i''m >>>>> booting >>>> What an operating system is on your image? >>>> >>> It is an minimal FC7 image with size around 150 - 160 MB >>> >> >> To boot pv domain, you can not use loader installed into ISO. >> You must load PV-kernel (and initrd if you need it) >> be means of Xen (and domain 0). >> > how to make my existing kernel to have PV Support? Do i need to compile > the kernel again!!!!Yes, you need. And before it you need to patch the kernel with Xen path. You can use kernels from your distro that xenified and built already. -- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users