Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
network | dsl problems
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
Turr-I-Can
Tux's lil' helper
Tux's lil' helper


Joined: 15 Jan 2003
Posts: 86

PostPosted: Wed Jan 15, 2003 3:31 pm    Post subject: network | dsl problems Reply with quote

After having some problems and solving them (search) I have problems getting an internet connection via dsl. I read a lot in this forum but I didn't find the answer.

I installed Gentoo 1.4 via chroot (from Suse Linux system), I had no problems downloading all the stuff. But when I boot gentoo and type ifconfig -a only the "lo" is found.

So I think I have to configure the system to find the eth0 device on startup. Afterwards I will worry about my dsl connection.

When "chroot"ing from Suse to Gentoo I easily get a connection?! Thx for any help.

edit: I could copy+paste part of the kernel .config but I don't know if or which part of it is important.
Back to top
View user's profile Send private message
lghman
Guru
Guru


Joined: 29 Nov 2002
Posts: 548
Location: Florida

PostPosted: Wed Jan 15, 2003 4:05 pm    Post subject: Reply with quote

Did you make sure and compile your network cards drivers into the kernel?

--sonik
Back to top
View user's profile Send private message
Turr-I-Can
Tux's lil' helper
Tux's lil' helper


Joined: 15 Jan 2003
Posts: 86

PostPosted: Wed Jan 15, 2003 4:33 pm    Post subject: Reply with quote

Well, I have an onboard ethernet controller 10/100 mbs - VIA VT 6103.

I didn't find it in the list "network device support" so I included most of the devices as modul. Here's one part of my .config

Quote:

#
# Network device support
#
CONFIG_NETDEVICES=y

#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
CONFIG_BONDING=m
CONFIG_EQUALIZER=m
CONFIG_TUN=m
# CONFIG_NET_RANDOM is not set
# CONFIG_ETHERTAP is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
# CONFIG_SUNLANCE is not set
CONFIG_HAPPYMEAL=m
# CONFIG_SUNBMAC is not set
# CONFIG_SUNQE is not set
CONFIG_SUNGEM=m
CONFIG_NET_VENDOR_3COM=y
CONFIG_EL1=m
CONFIG_EL2=m
CONFIG_ELPLUS=m
CONFIG_EL16=m
CONFIG_EL3=m
CONFIG_3C515=m
# CONFIG_ELMC is not set
# CONFIG_ELMC_II is not set
CONFIG_VORTEX=m
CONFIG_LANCE=m
CONFIG_NET_VENDOR_SMC=y
CONFIG_WD80x3=m
# CONFIG_ULTRAMCA is not set
CONFIG_ULTRA=m
# CONFIG_ULTRA32 is not set
CONFIG_SMC9194=m
CONFIG_NET_VENDOR_RACAL=y
CONFIG_NI5010=m
CONFIG_NI52=m
CONFIG_NI65=m
CONFIG_AT1700=m
CONFIG_DEPCA=m
CONFIG_HP100=m
# CONFIG_NET_ISA is not set
CONFIG_NET_PCI=y
CONFIG_PCNET32=m
CONFIG_ADAPTEC_STARFIRE=m
CONFIG_AC3200=m
CONFIG_APRICOT=m
CONFIG_CS89x0=m
CONFIG_TULIP=m
CONFIG_TC35815=m
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
CONFIG_DE4X5=m
CONFIG_DGRS=m
CONFIG_DM9102=m
CONFIG_EEPRO100=m
# CONFIG_LNE390 is not set
CONFIG_FEALNX=m
CONFIG_NATSEMI=m
# CONFIG_NATSEMI_CABLE_MAGIC is not set
CONFIG_NE2K_PCI=m
# CONFIG_NE3210 is not set
# CONFIG_ES3210 is not set
CONFIG_8139CP=m
CONFIG_8139TOO=m
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
CONFIG_8139TOO_8129=y
# CONFIG_8139_NEW_RX_RESET is not set
CONFIG_SIS900=m
CONFIG_EPIC100=m
CONFIG_SUNDANCE=m
CONFIG_TLAN=m
CONFIG_VIA_RHINE=m
# CONFIG_VIA_RHINE_MMIO is not set
CONFIG_WINBOND_840=m
CONFIG_NET_POCKET=y
CONFIG_ATP=m
CONFIG_DE600=m
# CONFIG_DE620 is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_MYRI_SBUS is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_SK98LIN is not set
# CONFIG_TIGON3 is not set
CONFIG_FDDI=y
CONFIG_DEFXX=m
CONFIG_SKFP=m
# CONFIG_HIPPI is not set
CONFIG_PLIP=m
CONFIG_PPP=m
# CONFIG_PPP_MULTILINK is not set
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
CONFIG_PPPOE=m
CONFIG_SLIP=m
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
CONFIG_RCPCI=m
CONFIG_SHAPER=m

#
# Wan interfaces
#
# CONFIG_WAN is not set
Back to top
View user's profile Send private message
lghman
Guru
Guru


Joined: 29 Nov 2002
Posts: 548
Location: Florida

PostPosted: Wed Jan 15, 2003 4:43 pm    Post subject: Reply with quote

Ok, so its probably fair to say that you compiled in the drivers for it. Now you have to MANUALLY load each one until you find the one that works. Try tulip first, thats what most of the onboards run on. Just incase you dont know how to do it:
Code:
sonik@tryptamine sonik $sudo /sbin/modprobe tulip

or to list the currently running modules (to make sure it loaded correctly)
Code:
sonik@tryptamine sonik $ sudo /sbin/lsmod
Module                  Size  Used by    Tainted: P 
smbfs                  39152   2  (autoclean)
ntfs                   54304   1  (autoclean)
NVdriver             1066976  11  (autoclean)
sr_mod                 16024   0  (autoclean) (unused)
ide-scsi                8816   0
3c59x                  27856   1
sonik@tryptamine sonik $


if you are root you can leave out the /sbin/ part and the sudo

--sonik
Back to top
View user's profile Send private message
Turr-I-Can
Tux's lil' helper
Tux's lil' helper


Joined: 15 Jan 2003
Posts: 86

PostPosted: Wed Jan 15, 2003 5:09 pm    Post subject: Reply with quote

Hi there, right now I'm using lynx :D to post here. I used modprobe and lsmod and there I didn't find a loaded ethernet card driver module. "modprobe via-rhine" did the trick. Well I don't have a -Rhine but it uses the same driver as my device. Thank you very much for your help!
Back to top
View user's profile Send private message
lghman
Guru
Guru


Joined: 29 Nov 2002
Posts: 548
Location: Florida

PostPosted: Wed Jan 15, 2003 5:14 pm    Post subject: Reply with quote

enjoyy your gentoo!

lol

--sonik
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum