Hi List, I have an installtion of Ubuntu 5.04 and try to get Xen running. Xen boots fine except that an ifconfig tells me only the loopback device is present. I think the driver for my OnBoard Networkcard 3C940 is not built in. Can anyone tell me how to solve this issue? I have tried to compile form source which has the same result. I tried to prepare the Kernel for me like the Documentation told me: " make ARCH=xen xconfig " I selected the Yukon Marvel Driver which supports the 3C940 Card. a " cd .. " and " make " gives me the output that there is no rule for make. I also edited the defconfig file for xen0. make world compiles fine. I see the driver during compiling. But still the same issue. Please anyone help me. Kind Regards Dennis Erlach _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Guilherme H. Polo G.
2005-May-31 15:37 UTC
Re: [Xen-users] No networkcard with Xen2.0.6 (3C940)
I use this same network and when I was using xen stable there was no problem with it. But I would say what is going on is this: when you run make world, it cleans your kernel tree and everything else that was compiled before in your xen dir, so it erases your .config that had this module (or bultin). After you change options for xen0 kernel, do make dist or make kbuild at xen main dir, then install with ./install.sh or make install. If you are really sure it compiled within the xen0 kernel (I doubt this if you ran make world) try loading (module: sk98lin). On Tue, 2005-05-31 at 12:06 +0200, opensource@gmx.de wrote:> Hi List, > > I have an installtion of Ubuntu 5.04 and try to get Xen running. > Xen boots fine except that an ifconfig tells me only the loopback device > is present. > I think the driver for my OnBoard Networkcard 3C940 is not built in. > Can anyone tell me how to solve this issue? > > I have tried to compile form source which has the same result. > > I tried to prepare the Kernel for me like the Documentation told me: > " make ARCH=xen xconfig " > I selected the Yukon Marvel Driver which supports the 3C940 Card. > a " cd .. " and " make " gives me the output that there is no rule for make. > I also edited the defconfig file for xen0. make world compiles fine. I > see the driver during compiling. > > But still the same issue. > > Please anyone help me. > > Kind Regards > Dennis Erlach > > _______________________________________________ > 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
opensource@gmx.de
2005-Jun-01 11:05 UTC
Re: [Xen-users] No networkcard with Xen2.0.6 (3C940)
Hi again, my problem is nearly solved. As I described I saw the driver beeing compiled (yes it was sk98lin) but was wondering why I have no eth0 while booting xen0. ifconfig showed only the lo device. An ifconfig eth0 up solved the problem and I could configure my card. But I have to run ifconfig everytime I restart my xen0 System. Don''t get me wrong I have prevously configured my eth0 Card before installing xen. So what am I doing wrong here. Am I missing something? Kind Regards Dennis Erlach>I use this same network and when I was using xen stable there was no >problem with it. But I would say what is going on is this: when you run >make world, it cleans your kernel tree and everything else that was >compiled before in your xen dir, so it erases your .config that had this >module (or bultin). After you change options for xen0 kernel, do make >dist or make kbuild at xen main dir, then install with ./install.sh or >make install. If you are really sure it compiled within the xen0 kernel >(I doubt this if you ran make world) try loading (module: sk98lin). > >On Tue, 2005-05-31 at 12:06 +0200, opensource@gmx.de wrote: > > >>Hi List, >> >>I have an installtion of Ubuntu 5.04 and try to get Xen running. >>Xen boots fine except that an ifconfig tells me only the loopback device >>is present. >>I think the driver for my OnBoard Networkcard 3C940 is not built in. >>Can anyone tell me how to solve this issue? >> >>I have tried to compile form source which has the same result. >> >>I tried to prepare the Kernel for me like the Documentation told me: >>" make ARCH=xen xconfig " >>I selected the Yukon Marvel Driver which supports the 3C940 Card. >>a " cd .. " and " make " gives me the output that there is no rule for make. >>I also edited the defconfig file for xen0. make world compiles fine. I >>see the driver during compiling. >> >>But still the same issue. >> >>Please anyone help me. >> >>Kind Regards >>Dennis Erlach >> >>_______________________________________________ >>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
I''m not an Ubuntu user but I would think all you would need to do is to create a /etc/sysconfig/network-scripts/ifcfg-eth0(or Ubuntu equiv.) and set the network to start on boot with ''service network on'' or the Ubuntu equivalent. here''s an example ifcfg-eth0 .. DEVICE=eth0 BOOTPROTO=static IPADDR=192.168.0.2 NETMASK=255.255.255.0 NETWORK=192.168.0.0 BROADCAST=192.168.0.255 ONBOOT=yes Hope this help some :) John Fairbairn> Hi again, > > my problem is nearly solved. > As I described I saw the driver beeing compiled (yes it was sk98lin) but > was wondering why I have no eth0 while booting xen0. > ifconfig showed only the lo device. > > An ifconfig eth0 up solved the problem > and I could configure my card. > > But I have to run ifconfig everytime I restart my xen0 System. > Don''t get me wrong I have prevously configured my eth0 Card before > installing xen. > So what am I doing wrong here. > Am I missing something? > > Kind Regards > Dennis Erlach > >>I use this same network and when I was using xen stable there was no >>problem with it. But I would say what is going on is this: when you run >>make world, it cleans your kernel tree and everything else that was >>compiled before in your xen dir, so it erases your .config that had this >>module (or bultin). After you change options for xen0 kernel, do make >>dist or make kbuild at xen main dir, then install with ./install.sh or >>make install. If you are really sure it compiled within the xen0 kernel >>(I doubt this if you ran make world) try loading (module: sk98lin). >> >>On Tue, 2005-05-31 at 12:06 +0200, opensource@gmx.de wrote: >> >> >>>Hi List, >>> >>>I have an installtion of Ubuntu 5.04 and try to get Xen running. >>>Xen boots fine except that an ifconfig tells me only the loopback device >>>is present. >>>I think the driver for my OnBoard Networkcard 3C940 is not built in. >>>Can anyone tell me how to solve this issue? >>> >>>I have tried to compile form source which has the same result. >>> >>>I tried to prepare the Kernel for me like the Documentation told me: >>>" make ARCH=xen xconfig " >>>I selected the Yukon Marvel Driver which supports the 3C940 Card. >>>a " cd .. " and " make " gives me the output that there is no rule for >>> make. >>>I also edited the defconfig file for xen0. make world compiles fine. I >>>see the driver during compiling. >>> >>>But still the same issue. >>> >>>Please anyone help me. >>> >>>Kind Regards >>>Dennis Erlach >>> >>>_______________________________________________ >>>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 >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users