First Post.... Most issues I have have been answered by mailing list without posting, so Thank you in advance... I have modified my grub.conf with the max_loop parameter as follows: title Fedora (2.6.20-2936.fc7xen) root (hd0,0) kernel /boot/xen.gz-2.6.20-2936.fc7 module /boot/vmlinuz-2.6.20-2936.fc7xen ro root=LABEL=/ max_loop=32 rhgb quiet module /boot/initrd-2.6.20-2936.fc7xen.img I then go build my loops, but when I reboot they are missing. I don''t think they are actually usable when I build them as I still cannot start any dom-u''s after the 8th one. Fedora Core 7? Any help here would be appreciated. Regards _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
The problems is only network. I have had this problem I have change my kernel, and now it''s ok. Perhaps you need to get back the xen 2.6.18 kernel. regards yves Ronnie Tartar a écrit :> First Post.... > > Most issues I have have been answered by mailing list without posting, so > Thank you in advance... > > I have modified my grub.conf with the max_loop parameter as follows: > > > title Fedora (2.6.20-2936.fc7xen) > root (hd0,0) > kernel /boot/xen.gz-2.6.20-2936.fc7 > module /boot/vmlinuz-2.6.20-2936.fc7xen ro root=LABEL=/ max_loop=32 > rhgb quiet > module /boot/initrd-2.6.20-2936.fc7xen.img > > I then go build my loops, but when I reboot they are missing. I don''t think > they are actually usable when I build them as I still cannot start any > dom-u''s after the 8th one. > > Fedora Core 7? > > Any help here would be appreciated. > > Regards > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users > >-- Yves-Gaël Chény Directeur technique 44 Boulevard des Pas Enchantés 44230 St Sébastien sur Loire Tel : 02 40 97 62 67 - 08 73 77 24 91 GSM : 06 98 58 41 55 http://www.tranquilitsystems.com/ yves-gael.cheny@tranquil-it-systems.fr Tranquil IT Systems . SAS 37 000 ¤ _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hi, I''ve been confused a little before now getting max_loop to work before now. I use debian etch these days where i add to /etc/modules config file loop max_loop=64. Geoff Yves-Gaël Chény wrote:> The problems is only network. > I have had this problem > I have change my kernel, and now it''s ok. > > Perhaps you need to get back the xen 2.6.18 kernel. > > regards > yves > > > > Ronnie Tartar a écrit : >> First Post.... >> >> Most issues I have have been answered by mailing list without >> posting, so >> Thank you in advance... >> >> I have modified my grub.conf with the max_loop parameter as follows: >> >> >> title Fedora (2.6.20-2936.fc7xen) >> root (hd0,0) >> kernel /boot/xen.gz-2.6.20-2936.fc7 >> module /boot/vmlinuz-2.6.20-2936.fc7xen ro root=LABEL=/ >> max_loop=32 >> rhgb quiet module /boot/initrd-2.6.20-2936.fc7xen.img >> >> I then go build my loops, but when I reboot they are missing. I >> don''t think >> they are actually usable when I build them as I still cannot start any >> dom-u''s after the 8th one. >> >> Fedora Core 7? >> >> Any help here would be appreciated. >> >> Regards >> >> >> _______________________________________________ >> 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
i had exactly the same problem This fixed it: edit /etc/xen/network-bridge Find the line that says: ${vifnum:-$(ip route list | awk ''/^default / { print $NF }'' | sed ''s/^[^0-9]*//'')} Comment it out Put there instead: vifnum=0 Reboot PC Loaded up 12Xens so far with no issues. My original problem was related to the max_loop and it wouldnt bring up peth0 veth0 xenbr0, The fix above fixed it.. if you type: ip route list | awk ''/^default /'' It should say something like this: default via xxx.xxx.xxx.xxx dev eth0 metric 100 The problem is it tried to make veth100... let me know how you go.. Mitch ----- Original Message ----- From: "Geoff Kirk" <geoff.k@takeabyte.no-ip.org> To: <xen-users@lists.xensource.com> Sent: Wednesday, November 07, 2007 7:46 PM Subject: Re: [Xen-users] max loop Hi, I''ve been confused a little before now getting max_loop to work before now. I use debian etch these days where i add to /etc/modules config file loop max_loop=64. Geoff Yves-Gaël Chény wrote:> The problems is only network. > I have had this problem > I have change my kernel, and now it''s ok. > > Perhaps you need to get back the xen 2.6.18 kernel. > > regards > yves > > > > Ronnie Tartar a écrit : >> First Post.... >> >> Most issues I have have been answered by mailing list without posting, so >> Thank you in advance... >> >> I have modified my grub.conf with the max_loop parameter as follows: >> >> >> title Fedora (2.6.20-2936.fc7xen) >> root (hd0,0) >> kernel /boot/xen.gz-2.6.20-2936.fc7 >> module /boot/vmlinuz-2.6.20-2936.fc7xen ro root=LABEL=/ >> max_loop=32 >> rhgb quiet module /boot/initrd-2.6.20-2936.fc7xen.img >> >> I then go build my loops, but when I reboot they are missing. I don''t >> think >> they are actually usable when I build them as I still cannot start any >> dom-u''s after the 8th one. >> >> Fedora Core 7? >> >> Any help here would be appreciated. >> >> Regards >> >> >> _______________________________________________ >> 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 _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Mitch wrote:> i had exactly the same problem > > This fixed it: > edit /etc/xen/network-bridge > Find the line that says: > ${vifnum:-$(ip route list | awk ''/^default / { print $NF }'' | sed > ''s/^[^0-9]*//'')} > Comment it out > Put there instead: > vifnum=0 > Reboot PC > > Loaded up 12Xens so far with no issues. > > My original problem was related to the max_loop and it wouldnt bring > up peth0 veth0 xenbr0, The fix above fixed it.. > if you type: ip route list | awk ''/^default /'' > It should say something like this: > default via xxx.xxx.xxx.xxx dev eth0 metric 100 > The problem is it tried to make veth100... > > let me know how you go.. > > MitchThen shouldn''t it be changed to something like this? ${vifnum:-$(ip route list | sed ''s/ metric .*//g'' | awk ''/^default / { print $NF }'' | sed ''s/^[^0-9]*//'')} shouldn''t it? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Its just what works for me. I havent tried changing the line to that but if someone wants to give it a go? Mitch ----- Original Message ----- From: "Nico Kadel-Garcia" <nkadel@gmail.com> To: "Mitch" <mitchkelly@westnet.com.au> Cc: "Geoff Kirk" <geoff.k@takeabyte.no-ip.org>; <xen-users@lists.xensource.com> Sent: Wednesday, November 07, 2007 8:04 PM Subject: Re: [Xen-users] max loop> Mitch wrote: >> i had exactly the same problem >> >> This fixed it: >> edit /etc/xen/network-bridge >> Find the line that says: >> ${vifnum:-$(ip route list | awk ''/^default / { print $NF }'' | sed >> ''s/^[^0-9]*//'')} >> Comment it out >> Put there instead: >> vifnum=0 >> Reboot PC >> >> Loaded up 12Xens so far with no issues. >> >> My original problem was related to the max_loop and it wouldnt bring up >> peth0 veth0 xenbr0, The fix above fixed it.. >> if you type: ip route list | awk ''/^default /'' >> It should say something like this: >> default via xxx.xxx.xxx.xxx dev eth0 metric 100 >> The problem is it tried to make veth100... >> >> let me know how you go.. >> >> Mitch > Then shouldn''t it be changed to something like this? > > ${vifnum:-$(ip route list | sed ''s/ metric .*//g'' | awk ''/^default / > { print $NF }'' | sed ''s/^[^0-9]*//'')} > > shouldn''t it? > > > _______________________________________________ > 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
On Wed November 7 2007 5:56:37 am Mitch wrote:> My original problem was related to the max_loop and it wouldnt bring up > peth0 veth0 xenbr0, The fix above fixed it.. > if you type: ip route list | awk ''/^default /'' > It should say something like this: > default via xxx.xxx.xxx.xxx dev eth0 metric 100 > The problem is it tried to make veth100...Yep. I had a similar problem on SuSE, where my ''default'' line ended with ''window 65340'', so it was trying to make veth65340! I replaced ''ip route list'' with just ''route'', which didn''t have anything after ''eth0'', and voila - I had my network devices show up in ''ifconfig''. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users