LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 07-23-2003, 01:24 PM   #1
Cubix
LQ Newbie
 
Registered: Jun 2003
Distribution: Slackware
Posts: 22

Rep: Reputation: 15
network modules?


lo

my networks working perfectly, but only thing is , at the boot process it moans about the 8139too module beining loaded.... i let the slackware installtion prog take care of detecting what card i have and what should be used as drivers.....

what file are the network modules configed in , or if any one has some advice to give plz share


thanks in advance..
 
Old 07-23-2003, 01:38 PM   #2
ArizonaEd
LQ Newbie
 
Registered: Jul 2003
Location: Northeast US
Distribution: Mandrake 7.0, 9.0, 9.1
Posts: 12

Rep: Reputation: 0
do an "lsmod" to see what modules are loaded, chances are you have the 8139 module installed twice... use "rmmod" to remove

-Ed.
 
Old 07-23-2003, 01:50 PM   #3
Cubix
LQ Newbie
 
Registered: Jun 2003
Distribution: Slackware
Posts: 22

Original Poster
Rep: Reputation: 15
this is what iget from "lsmod" no luck with the 8139too being listed more than once.... also.. adding to what i first said : it moans about 6 times about the module 8139too module...

here is my module listing:

Module Size Used by Tainted: P
iptable_filter 1644 0 (autoclean) (unused)
ip_tables 11768 1 [iptable_filter]
nvidia 1539840 10 (autoclean)
keybdev 1952 0 (unused)
mousedev 4212 1
hid 18596 0 (unused)
usbmouse 2008 0 (unused)
input 3200 0 [keybdev mousedev hid usbmouse]
es1371 26824 1
gameport 1452 0 [es1371]
ac97_codec 9512 0 [es1371]
soundcore 3332 4 [es1371]
uhci 24560 0 (unused)
ehci-hcd 14632 0 (unused)
usbcore 58144 1 [hid usbmouse uhci ehci-hcd]
pcmcia_core 38112 0
ide-scsi 8048 0
8139too 15272 1
mii 2240 0 [8139too]
 
Old 07-23-2003, 02:07 PM   #4
ArizonaEd
LQ Newbie
 
Registered: Jul 2003
Location: Northeast US
Distribution: Mandrake 7.0, 9.0, 9.1
Posts: 12

Rep: Reputation: 0
actual msg

what's the actual message (or messages) that it gives on load?

-Ed.
 
Old 07-23-2003, 02:16 PM   #5
Cubix
LQ Newbie
 
Registered: Jun 2003
Distribution: Slackware
Posts: 22

Original Poster
Rep: Reputation: 15
soz.. could get the exact msg from the start up ..dont wanna d/c right now... but it mumbles about trying to insmod the 8139too module and saying irq could be wrnog or something... here is the output from *dmesg*

8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
hub.c: new USB device 00:10.0-1, assigned address 2
usb.c: USB device 2 (vend/prod 0x46d/0xc024) is not claimed by any active driver.
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
8139cp: 10/100 PCI Ethernet driver v0.3.0 (Sep 29, 2002)
 
Old 07-23-2003, 02:23 PM   #6
ArizonaEd
LQ Newbie
 
Registered: Jul 2003
Location: Northeast US
Distribution: Mandrake 7.0, 9.0, 9.1
Posts: 12

Rep: Reputation: 0
aha!

So it looks like lilo.conf may have an entry to put 8139 into your system on boot. Post the output of /etc/lilo.conf

-Ed.
 
Old 07-23-2003, 02:28 PM   #7
Cubix
LQ Newbie
 
Registered: Jun 2003
Distribution: Slackware
Posts: 22

Original Poster
Rep: Reputation: 15
nup...

doesnt look like it , but here it is anyway...

Code:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
boot = /dev/hda2
message = /boot/boot_message.txt
prompt
timeout = 1200
# Override dangerous defaults that rewrite the partition table:
change-rules
  reset
# VESA framebuffer console @ 1024x768x256
vga = 773
# Normal VGA console
# vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
 
Old 07-23-2003, 02:37 PM   #8
ArizonaEd
LQ Newbie
 
Registered: Jul 2003
Location: Northeast US
Distribution: Mandrake 7.0, 9.0, 9.1
Posts: 12

Rep: Reputation: 0
shoot

Shoot. That's one small lilio.conf.

Well it seems that something is trying to load that module on boot. Why not try this command to figure out what is trying to load it?

find /etc -type f -exec grep -il 8139 {} \; > /tmp/tmpfile &

And post the results. Chances are it's something in /etc/sysconfig/network-scripts

-Ed.
 
Old 07-23-2003, 02:54 PM   #9
Cubix
LQ Newbie
 
Registered: Jun 2003
Distribution: Slackware
Posts: 22

Original Poster
Rep: Reputation: 15
ermm..

that comand u give me correct .... it just bitches about missing arg to the exec....
 
Old 07-23-2003, 03:10 PM   #10
ArizonaEd
LQ Newbie
 
Registered: Jul 2003
Location: Northeast US
Distribution: Mandrake 7.0, 9.0, 9.1
Posts: 12

Rep: Reputation: 0
ok... I think the spacing is off... I'll retype it with "_" symbolizing a space

find_/etc_-type_f_-exec_grep_-il_8139_{}_\;_>/tmp/file_&

Get it?

-Ed.
 
  


Reply



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
passing parameters to network modules muru Linux - Networking 4 10-21-2005 10:44 AM
network card modules?? seanz6688 Linux - Newbie 3 02-21-2004 10:14 PM
Don't know if network card modules are installed ? sanfran49 Linux - Software 3 02-12-2004 12:53 PM
Re: modprobe: Note: /etc/modules.conf is more recent than lib/modules/2.4.9/modules.d Andy.M Linux - General 1 01-24-2002 01:50 AM
Re: modprobe: Note: /etc/modules.conf is more recent than lib/modules/2.4.9/modules.d Andy.M Linux - Newbie 2 01-24-2002 01:40 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 07:05 PM.

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