LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 04-04-2004, 12:29 PM   #16
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168

@ nick_krym, try this from a terminal as root

modprobe /lib/modules/<your kernel version>/kernel/drivers/net/sis900.o

see if it loads.

Last edited by Peacedog; 04-04-2004 at 12:42 PM.
 
Old 04-04-2004, 01:04 PM   #17
nick_krym
Member
 
Registered: Sep 2002
Location: The Netherlands
Posts: 38

Original Poster
Rep: Reputation: 15
this is so frustating. ok, there was a sis900.o.gz in that directory, so i did gzip -d on it, and then it decompressed into sis900.o. then when i do modprobe /lib/modules/2.4.18/kernel/drivers/net/sis900.o it sais modprobe: Can't locate modules /lib/modules/2.4.18/kernel/drivers/net/sis900.o .
i think this will never work
 
Old 04-04-2004, 01:20 PM   #18
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
try it from the directory

cd /lib/modules/2.4.18/kernel/drivers/net

modprobe sis900.o
 
Old 04-04-2004, 01:27 PM   #19
nick_krym
Member
 
Registered: Sep 2002
Location: The Netherlands
Posts: 38

Original Poster
Rep: Reputation: 15
nope, same error.
 
Old 04-04-2004, 01:28 PM   #20
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
how about this from the directory

insmod sis900.o
 
Old 04-04-2004, 01:31 PM   #21
nick_krym
Member
 
Registered: Sep 2002
Location: The Netherlands
Posts: 38

Original Poster
Rep: Reputation: 15
ok it looked like it worked, so i restarted my pc and the network still doesnt work
 
Old 04-04-2004, 01:32 PM   #22
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
what does lsmod return?
 
Old 04-04-2004, 01:37 PM   #23
nick_krym
Member
 
Registered: Sep 2002
Location: The Netherlands
Posts: 38

Original Poster
Rep: Reputation: 15
pcmcia_core and ide-scsi
 
Old 04-04-2004, 01:41 PM   #24
nick_krym
Member
 
Registered: Sep 2002
Location: The Netherlands
Posts: 38

Original Poster
Rep: Reputation: 15
hmm, then i did insmod again, and now theres sis 900 in the list, but does this mean that i have to do insmod everytime i use linux? and by the way, the network still doesnt work
 
Old 04-04-2004, 01:45 PM   #25
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
the module probably unloaded on boot. when you ran the gzip -d did it leave the original sis900.o.gz intact? if so, remove or delete the extracted file. then then try modprobe again. if modprobe doesn't work, try the insmod, if it loads don't reboot the system. proceed w/trying to configure the network. if you can get the module loaded, then we'll look at getting it to load at every boot. i'm hoping you can get modpbe to work, if you can it should be as simple as adding this

SiS 900/7016 PCI Fast Ethernet
/sbin/modprobe sis900

to the appropriate part of /etc/rc.d/rc.modules
 
Old 04-04-2004, 01:54 PM   #26
nick_krym
Member
 
Registered: Sep 2002
Location: The Netherlands
Posts: 38

Original Poster
Rep: Reputation: 15
ok i deleted sis900.o.gz and modprobe still doesnt work. i loaded sis900 with insmod and did netconfig, still doesnt work. , andy other suggestions?
 
Old 04-04-2004, 02:02 PM   #27
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
i meant to delete the file you extracted, not the original. i was thinking that modprobe was getting confused because there were 2 files there. we can't tell now. i'm going to have to do some searching to see how to reinstall that module.

Last edited by Peacedog; 04-04-2004 at 05:10 PM.
 
Old 04-04-2004, 04:43 PM   #28
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
try modprobe sis900 w/out the .o

if that loads then look at post #25 add the info there. you may have to do rmmod sis900.o first if the module is loaded from the previous insmod command, just check what modules are loaded w/ lsmod.

Last edited by Peacedog; 04-04-2004 at 05:11 PM.
 
Old 04-05-2004, 12:37 AM   #29
nick_krym
Member
 
Registered: Sep 2002
Location: The Netherlands
Posts: 38

Original Poster
Rep: Reputation: 15
yes! it worked, finally i am connected to the network! thanks alot PEACEDOG, i owe you big time.
 
Old 04-05-2004, 06:37 AM   #30
Peacedog
LQ Guru
 
Registered: Sep 2003
Location: Danville, VA
Distribution: Slackware, Windows, FreeBSD, OpenBSD, Mac OS X
Posts: 5,296

Rep: Reputation: 168Reputation: 168
my apologies for not recognizing that i had a syntax error in the above posts. (leaving in the .o) you threw me for a loop w/the "ok, there was a sis900.o.gz in that directory, so i did gzip -d on it, and then it decompressed into sis900.o." in any event, i'm glad your up and running, don't forget to add the info posted in #25, to save your settings across a reboot. happy slacking.
good luck.
 
  


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
Having problems with Network card TheScot Linux - Hardware 2 06-23-2004 03:53 PM
Network card problems WiWa Linux - Networking 16 09-04-2003 11:42 PM
Problems with network card imejia Linux - Hardware 4 06-19-2002 05:18 PM
network card problems mkhan Linux - Networking 21 07-06-2001 10:27 AM
Problems With Network Card mkhan Linux - Networking 3 06-30-2001 10:24 PM

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

All times are GMT -5. The time now is 04:15 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