LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-23-2004, 08:10 PM   #1
mikrasov
LQ Newbie
 
Registered: Jul 2004
Location: San Diego, CA
Distribution: Fedora Core 2 (64-bit)
Posts: 13

Rep: Reputation: 0
Network does not load


I installed Slackware 10 and my network is not working. I can't acess the internet nor ping my router. My network works in both windows and fedora core 2 but no luck with slackware.

I have noticed a number of threads with similar problems but no real sollutions.

I am a newbie Linux user so I don't know a whole lot. But from what I read

lsmod

and

ifconfig

might help you diagnose my problem.

root@nexus:~# lsmod
Module Size Used by Tainted: P
snd-pcm-oss 37736 0 (unused)
snd-mixer-oss 12504 2 [snd-pcm-oss]
keybdev 2052 0 (unused)
mousedev 4212 1
hid 21220 0 (unused)
usbmouse 2040 0 (unused)
input 3200 0 [keybdev mousedev hid usbmouse]
snd-emu10k1 62920 3
snd-pcm 56072 0 [snd-pcm-oss snd-emu10k1]
snd-timer 13604 0 [snd-pcm]
snd-hwdep 4804 0 [snd-emu10k1]
snd-page-alloc 6328 0 [snd-emu10k1 snd-pcm]
snd-util-mem 1136 0 [snd-emu10k1]
snd-ac97-codec 49500 0 [snd-emu10k1]
snd-rawmidi 12740 0 [snd-emu10k1]
snd-seq-device 3888 0 [snd-emu10k1 snd-rawmidi]
snd 30852 1 [snd-pcm-oss snd-mixer-oss snd-emu10k1 snd-pcm snd-timer snd-hwdep snd-util-mem snd-ac97-codec snd-rawmidi snd-seq-device]
soundcore 3396 8 [snd]
emu10k1-gp 1352 0 (unused)
gameport 1420 0 [emu10k1-gp]
ohci1394 24112 0 (unused)
ieee1394 42276 0 [ohci1394]
uhci 24444 0 (unused)
ehci-hcd 17580 0 (unused)
usbcore 59308 1 [hid usbmouse uhci ehci-hcd]
nvidia 4585676 6
pcmcia_core 39972 0
ide-scsi 9328 0
agpgart 43940 3


root@nexus:~# ifconfig
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)

root@nexus:~# ifconfig eth0
eth0: error fetching interface information: Device not found

root@nexus:~# ifconfig eth0 up
eth0: unknown interface: No such device

System specs might help too:
-Athlon 64 3200+
-Geforce 4 ti4800
-Audigy 2 Platinum
-MB: Asus K8V SE (integrated network card)


I'm really anxious to use slackware and any sugestions would be much apreciated.
 
Old 09-23-2004, 08:21 PM   #2
CroMagnon
Member
 
Registered: Sep 2004
Location: New Zealand
Distribution: Debian
Posts: 900

Rep: Reputation: 33
I don't see a module for a network card there (which is ok - it might not be loaded, or it might be compiled directly into the kernel).

Does 'dmesg | grep eth0' show anything?
 
Old 09-23-2004, 08:40 PM   #3
mikrasov
LQ Newbie
 
Registered: Jul 2004
Location: San Diego, CA
Distribution: Fedora Core 2 (64-bit)
Posts: 13

Original Poster
Rep: Reputation: 0
root@nexus:~# dmesg | grep eth0
(does not display anything and goes to new line)

Last edited by mikrasov; 09-23-2004 at 08:49 PM.
 
Old 09-23-2004, 09:01 PM   #4
CroMagnon
Member
 
Registered: Sep 2004
Location: New Zealand
Distribution: Debian
Posts: 900

Rep: Reputation: 33
OK, you need to add kernel support for your network card (which probably means recompiling the kernel from source - are you comfortable doing that?).

I would boot up Fedora and do the dmesg | grep eth0 again to find out what driver it is using, so you can make sure that option is enabled in the make *config.
 
Old 09-23-2004, 09:18 PM   #5
mikrasov
LQ Newbie
 
Registered: Jul 2004
Location: San Diego, CA
Distribution: Fedora Core 2 (64-bit)
Posts: 13

Original Poster
Rep: Reputation: 0
I've never done it before but I will definatly try.

on fedora core 2 the driver is:

divert: allocating divert_blk for eth0
eth0: Yukon Gigabit Ethernet 10/100/1000Base-T Adapter
eth0: network connection up using port A
eth0: no IPv6 routers present

Last edited by mikrasov; 09-23-2004 at 09:30 PM.
 
Old 09-23-2004, 09:39 PM   #6
CroMagnon
Member
 
Registered: Sep 2004
Location: New Zealand
Distribution: Debian
Posts: 900

Rep: Reputation: 33
Well, good luck! Here is a nice guide as it can be a little too complicated to explain in a forum post The overall procedure is relatively painless, but you might make a few broken kernels as you find your way through the various options.

http://www.digitalhermit.com/linux/K...ild-HOWTO.html

As an extra hint: always leave an option in your bootloader to boot with your previous kernel (even if it doesn't have network support, at least it boots, and you can use it to compile a working replacement).
 
Old 09-23-2004, 09:48 PM   #7
gbonvehi
Senior Member
 
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145

Rep: Reputation: 53
Is it wireless card? PCI? PCMCIA? Do you know which chip it has?

Try: lspci and look for a ethernet card (if it's a PCI one of course )

Last edited by gbonvehi; 09-23-2004 at 09:53 PM.
 
Old 09-23-2004, 10:05 PM   #8
mikrasov
LQ Newbie
 
Registered: Jul 2004
Location: San Diego, CA
Distribution: Fedora Core 2 (64-bit)
Posts: 13

Original Poster
Rep: Reputation: 0
Its integrated on my motherboard.

As for what the network chip is its
Marvell 88E8001 Gigabit LAN

So do you think i should recompile the kernel or is there another solution. The only thing with recompiling the kernel, my Lilo is on my master boot record so I haven't a clue about how I would go about editing it.
 
Old 09-23-2004, 10:48 PM   #9
CroMagnon
Member
 
Registered: Sep 2004
Location: New Zealand
Distribution: Debian
Posts: 900

Rep: Reputation: 33
I think if you use "make bzlilo" instead of "make bzimage", the build process will fix lilo up for you, but it's not hard to do yourself. Just edit /etc/lilo.conf, copy your existing linux section, and modify the appropriate parts. Once that's done, run /sbin/lilo to update the MBR.

An alternative way to compiling your own kernel is to try and find a precompiled module for that Yukon driver that matches your kernel, but I find this is usually more trouble than just compiling it yourself.
 
Old 09-24-2004, 12:47 AM   #10
mikrasov
LQ Newbie
 
Registered: Jul 2004
Location: San Diego, CA
Distribution: Fedora Core 2 (64-bit)
Posts: 13

Original Poster
Rep: Reputation: 0
Wow my solution turned out to be fairly easy. Thanks you guys for setting me on the right track. Turns out that the asus integrated network driver doesn't come with slackware.

I went to marvell.com and dled it. It was reall easy to install. So anyone else who has this problem thats what you should try.

So I'm currently in slackware

Oh and i'm still gona try recompiling my kernel cause thats something I've been wanting to do

Thanks a lot for all the help.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
2 network cards, single network, load balancing? tormentum Linux - Networking 1 02-13-2005 02:37 PM
Network Load Balancing namdn Linux - Networking 1 09-20-2004 03:14 AM
Network Load Balancing bwilliam79 Linux - Networking 1 08-10-2004 10:38 AM
How to load a Network? robson8112 Linux - Networking 3 01-04-2004 06:52 PM
how to load a network driver dansen Linux - Hardware 0 11-28-2002 03:50 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 12:01 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration