Is there a way to run a 2.6.23.x Kernel with Xen 3.1.0 as DomU? I tryed the vmlinux image, then it dosnt start the domain. If i try the vmlinuz image, the domain starts, but there is no output and the domain dosn comes up. With a XEN-patched 2.6.18 it works fine. -- - Michael Schmidt _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Power-Netz (M. Schmidt) wrote:> Is there a way to run a 2.6.23.x Kernel with Xen 3.1.0 as DomU?Need more details about the distribution and the way you are implementing xen. I am running f8 dom0 and domu on my laptop which comes with 2.6.23 kernel by default. Why don''t you use it since it comes out of the box. --Sadique> > I tryed the vmlinux image, then it dosnt start the domain. > If i try the vmlinuz image, the domain starts, but there is no output > and the domain dosn comes up. > > With a XEN-patched 2.6.18 it works fine. >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Sadique Puthen schrieb:> Need more details about the distribution and the way you are > implementing xen. I am running f8 dom0 and domu on my laptop which > comes with 2.6.23 kernel by default. Why don''t you use it since it > comes out of the box. > > --SadiqueI use Debian Etch 4.0.1 with 2.6.18-5-xen-i386 as Dom0 On a Supermiccro Server with paravirtualisation. - Michael Schmidt _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Sadique Puthen wrote:> Power-Netz (M. Schmidt) wrote: >> Is there a way to run a 2.6.23.x Kernel with Xen 3.1.0 as DomU? > > Need more details about the distribution and the way you are > implementing xen. I am running f8 dom0 and domu on my laptop which > comes with 2.6.23 kernel by default.Sorry, Fedora 8 actually comes with 2.6.21 xen kernel. --Sadique> Why don''t you use it since it comes out of the box. > > --Sadique > >> >> I tryed the vmlinux image, then it dosnt start the domain. >> If i try the vmlinuz image, the domain starts, but there is no output >> and the domain dosn comes up. >> >> With a XEN-patched 2.6.18 it works fine. >> > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Am Tuesday, den 11 December hub Power-Netz (M. Schmidt) folgendes in die Tasten: Hi!> Is there a way to run a 2.6.23.x Kernel with Xen 3.1.0 as DomU?I´m running 2.6.23.8 with Xen 3.0, so I strongly guess that your combination is possible, too.> I tryed the vmlinux image, then it dosnt start the domain. > If i try the vmlinuz image, the domain starts, but there is no output > and the domain dosn comes up.That''s confusing. As far as I know only the vmlinux images work, but the bzImage (vmlinuz) won''t work. Please post your DomU config file. Ciao Max -- Follow the white penguin. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
# Virtual host config file name = "d999" kernel = "/virtual/kernel/vmlinux-2.6.23.9-5105" ramdisk = "/virtual/kernel/initrd.img-2.6.23.9-5105" // <-- i tryed it with static kernel and initrd with the same result disk = [''file:/virtual/images/d999,ioemu:sda1,w'', ''file:/backup/d999,ioemu:sdb1,w''] root = "/dev/sda1 ro" cpus = "0,1,2,3" vcpus = 4 memory = 1024 vif = [''bridge=xenbr0, vifname=vif999''] - Michael Schmidt Maximilian Wilhelm schrieb:> Am Tuesday, den 11 December hub Power-Netz (M. Schmidt) folgendes in die Tasten: > > Hi! > > >> Is there a way to run a 2.6.23.x Kernel with Xen 3.1.0 as DomU? >> > > I´m running 2.6.23.8 with Xen 3.0, so I strongly guess that your > combination is possible, too. > > >> I tryed the vmlinux image, then it dosnt start the domain. >> If i try the vmlinuz image, the domain starts, but there is no output >> and the domain dosn comes up. >> > > That''s confusing. As far as I know only the vmlinux images work, but > the bzImage (vmlinuz) won''t work. > > Please post your DomU config file. > > Ciao > Max >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Am Tuesday, den 11 December hub Power-Netz (M. Schmidt) folgendes in die Tasten:> # Virtual host config file > > name = "d999" > kernel = "/virtual/kernel/vmlinux-2.6.23.9-5105" > ramdisk = "/virtual/kernel/initrd.img-2.6.23.9-5105" > // <-- i tryed it with > static kernel and initrd with the same result > disk = [''file:/virtual/images/d999,ioemu:sda1,w'', > ''file:/backup/d999,ioemu:sdb1,w''] > root = "/dev/sda1 ro"The block devices seem to be staticly named xvd* in vanilla kernel, regardless what you specify here. So check all device names to xvd* (sda1 -> xvda1, ...) and have a new try. You may also want to add extra = ''console=hvc0'' to tell the kernel to print everything to this (Xen) console. You also have to edit /etc/inittab to put a getty on this console. Also add hvc0 to /etc/securetty to enable root login via the xen console.> cpus = "0,1,2,3" > vcpus = 4 > memory = 1024 > vif = [''bridge=xenbr0, vifname=vif999'']HTH Ciao Max -- Follow the white penguin. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Maximilian Wilhelm schrieb:> The block devices seem to be staticly named xvd* in vanilla kernel, > regardless what you specify here. > So check all device names to xvd* (sda1 -> xvda1, ...) and have a new > try. > > You may also want to add > extra = ''console=hvc0'' > to tell the kernel to print everything to this (Xen) console. > You also have to edit /etc/inittab to put a getty on this console. > Also add hvc0 to /etc/securetty to enable root login via the xen > console. >Oh, i forgett: the DomUs are FedoraCore 6 systems. - Michael Schmidt _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
One comment, if this is paravirtual, why do you have the ioemu type devices? just try to put xvda1 etc and let us know of the result :) Emre On Dec 11, 2007 1:15 PM, Power-Netz (M. Schmidt) <schmidt@power-netz.de> wrote:> Maximilian Wilhelm schrieb: > > The block devices seem to be staticly named xvd* in vanilla kernel, > > regardless what you specify here. > > So check all device names to xvd* (sda1 -> xvda1, ...) and have a new > > try. > > > > You may also want to add > > extra = ''console=hvc0'' > > to tell the kernel to print everything to this (Xen) console. > > You also have to edit /etc/inittab to put a getty on this console. > > Also add hvc0 to /etc/securetty to enable root login via the xen > > console. > > > Oh, i forgett: the DomUs are FedoraCore 6 systems. > > - Michael Schmidt > > > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >-- Emre Erenoglu erenoglu@gmail.com _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Emre Erenoglu schrieb:> One comment, if this is paravirtual, why do you have the ioemu type > devices? just try to put xvda1 etc and let us know of the result :) > > Emre > > On Dec 11, 2007 1:15 PM, Power-Netz (M. Schmidt) < > schmidt@power-netz.de <mailto:schmidt@power-netz.de>> wrote: > > Maximilian Wilhelm schrieb: > > The block devices seem to be staticly named xvd* in vanilla kernel, > > regardless what you specify here. > > So check all device names to xvd* (sda1 -> xvda1, ...) and have > a new > > try. > > > > You may also want to add > > extra = ''console=hvc0'' > > to tell the kernel to print everything to this (Xen) console. > > You also have to edit /etc/inittab to put a getty on this console. > > Also add hvc0 to /etc/securetty to enable root login via the xen > > console. > > > >ioemu was form a test, i have removed it in the last tests... if i use the extra = ''console=hvc0'' option, i get a output! Much thanks! I get a kernel panic now, but this will be no problem (i think). - Michael Schmidt _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Am Tuesday, den 11 December hub Power-Netz (M. Schmidt) folgendes in die Tasten: Hi!> ioemu was form a test, i have removed it in the last tests... > if i use the extra = ''console=hvc0'' option, i get a output! > Much thanks! I get a kernel panic now, but this will be no problem (i > think).Why does your kernel panic? Is there a XFS file system on your root device? :) Ciao Max -- Follow the white penguin. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> Why does your kernel panic? > Is there a XFS file system on your root device? :) > > Ciao > Max >It was just a mismatched kernel config. Now it runns. XEN DomUs dont run with xfs? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Am Tuesday, den 11 December hub Power-Netz (M. Schmidt) folgendes in die Tasten:> >Why does your kernel panic? > >Is there a XFS file system on your root device? :) > > It was just a mismatched kernel config. Now it runns. > XEN DomUs dont run with xfs?As to a bug in XFS there are some problems with Xen and XFS. It does not Panic every time, but I found it usefull to convert to ext3 :) Ciao Max -- Follow the white penguin. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users