Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
can't install because there's no driver for my NIC
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
Stefan Pantiru
Tux's lil' helper
Tux's lil' helper


Joined: 23 May 2004
Posts: 80
Location: Iasi, Romania

PostPosted: Tue Jun 08, 2004 10:50 am    Post subject: can't install because there's no driver for my NIC Reply with quote

The driver form my NIC that I'm connecting to the internet with, is fealnx.ko. But this driver doesn't seems to be present in /lib/modules/.../drivers/net on the live cd, so I can't connect to the internet. And this very NIC is the only one I can do this with, because my ISP does a MAC check when connecting.

I DO have fealnx.ko (found it somewhere) but cannot copy it in /lib/modules/.../drivers/net because file-system is read-only...

Is there ANY way I can solve this problem?

Thank you for reading...
_________________
Viata-i grea, dar trece...
Back to top
View user's profile Send private message
flyinspirit001
Apprentice
Apprentice


Joined: 25 May 2004
Posts: 266
Location: localhost,localdomain

PostPosted: Tue Jun 08, 2004 11:39 am    Post subject: Reply with quote

how do you mount /root partition on boot? the fact that's in readonly implies an error maybe @boot..what told u dmesg -a or var/log/messages?

bye
_________________
"Ride the infinity, be your best. For you, for all"
Dungeon01 - linux registered user #362502
Back to top
View user's profile Send private message
Stefan Pantiru
Tux's lil' helper
Tux's lil' helper


Joined: 23 May 2004
Posts: 80
Location: Iasi, Romania

PostPosted: Tue Jun 08, 2004 12:01 pm    Post subject: Reply with quote

I have the feeling I haven't made myself clear...

I wanna install Gentoo.

I'm booting the Gentoo intallation live cd. I obviously don't know how a live cd works, nor how it mounts it's /root partition. But I do know that my NIC isn't working because the required driver is not present on the live cd. I DO have the driver but don't know what to do with it.

Given this, I can't even download a stage from the internet... this is the very first step: configuring the Internet connection... So I hit a wall before even starting the installation...
_________________
Viata-i grea, dar trece...
Back to top
View user's profile Send private message
Scan-C
n00b
n00b


Joined: 10 Jun 2003
Posts: 70

PostPosted: Tue Jun 08, 2004 12:58 pm    Post subject: Reply with quote

copy the module you have to /mnt then do modprobe /mnt/fealnx.ko
don't know if this will work but it's worth a shot
Back to top
View user's profile Send private message
saccory
Apprentice
Apprentice


Joined: 18 Feb 2004
Posts: 176
Location: Göttingen, Germany

PostPosted: Tue Jun 08, 2004 1:14 pm    Post subject: Reply with quote

Are you sure you don't look for fealnx.o? Did you try a modprobe fealnx?
Back to top
View user's profile Send private message
Stefan Pantiru
Tux's lil' helper
Tux's lil' helper


Joined: 23 May 2004
Posts: 80
Location: Iasi, Romania

PostPosted: Tue Jun 08, 2004 1:23 pm    Post subject: Reply with quote

Quote:
copy the module you have to /mnt then do modprobe /mnt/fealnx.ko
don't know if this will work but it's worth a shot


Already tryed that.. it sais "cannot locate /mnt/fealnx.ko" like it thinks the whole this is the name of the driver, not a path.. anyway.. doesn't work

Quote:
Are you sure you don't look for fealnx.o? Did you try a modprobe fealnx?


C'mon...
_________________
Viata-i grea, dar trece...
Back to top
View user's profile Send private message
Maedhros
Bodhisattva
Bodhisattva


Joined: 14 Apr 2004
Posts: 5511
Location: Durham, UK

PostPosted: Tue Jun 08, 2004 1:29 pm    Post subject: Reply with quote

If the driver is totally absent on this livecd, why not try a different livecd, like knoppix?
_________________
No-one's more important than the earthworm.


Last edited by Maedhros on Tue Jun 08, 2004 2:06 pm; edited 1 time in total
Back to top
View user's profile Send private message
Stefan Pantiru
Tux's lil' helper
Tux's lil' helper


Joined: 23 May 2004
Posts: 80
Location: Iasi, Romania

PostPosted: Tue Jun 08, 2004 1:38 pm    Post subject: Reply with quote

Already tryed that too, Maedhros.

It gives some erros when I
Code:
#env-update
. Lots of errors.
_________________
Viata-i grea, dar trece...
Back to top
View user's profile Send private message
GuidoJ
Guru
Guru


Joined: 24 Dec 2002
Posts: 444
Location: Netherlands

PostPosted: Tue Jun 08, 2004 2:47 pm    Post subject: Reply with quote

Use 'insmod' instead of 'modprobe':
Code:
insmod /path/to/your_module.o

This should work if the module can be properly linked to the kernel at runtime. I doubt that that is possible though.
Back to top
View user's profile Send private message
Stefan Pantiru
Tux's lil' helper
Tux's lil' helper


Joined: 23 May 2004
Posts: 80
Location: Iasi, Romania

PostPosted: Tue Jun 08, 2004 2:54 pm    Post subject: Reply with quote

I'll try that in a few hours. Can't do it right now...

But if modprobe works at the runtime... why shouldn't insmod? What's the difference between them?
_________________
Viata-i grea, dar trece...
Back to top
View user's profile Send private message
GuidoJ
Guru
Guru


Joined: 24 Dec 2002
Posts: 444
Location: Netherlands

PostPosted: Tue Jun 08, 2004 9:44 pm    Post subject: Reply with quote

Stefan Pantiru wrote:
But if modprobe works at the runtime... why shouldn't insmod? What's the difference between them?

Dunno. I've been trying to write a driver for a USB ADSL modem and I never copied the driver to /lib/modules/whatever. I could never load the module with modprobe, but loading it with insmod worked perfectly fine.

Note that I really doubt that you can use the module, because it's not built against the kernel on the Gentoo Live CD. AFAIK this is a must. For instance, if I do a kernel upgrade, I always have to re-emerge the nvidia-kernel and other separate kernel modules.
Back to top
View user's profile Send private message
monkey89
Guru
Guru


Joined: 08 Mar 2004
Posts: 596

PostPosted: Tue Jun 08, 2004 11:13 pm    Post subject: Reply with quote

Stefan Pantiru wrote:
I'll try that in a few hours. Can't do it right now...

But if modprobe works at the runtime... why shouldn't insmod? What's the difference between them?


The difference is modprobe can calculate dependencies, but it relies on a file to know module names. Insmod is the failsafe.

When you used knoppix, you say you had env-update errors. My guess is that this is not Knoppix related. Did you follow the alternate install guide? If/when you used mirrorselect, did you fix the /etc/make.conf so that it didn't have the line saying something about ipv6 servers?

-Monkey
Back to top
View user's profile Send private message
Stefan Pantiru
Tux's lil' helper
Tux's lil' helper


Joined: 23 May 2004
Posts: 80
Location: Iasi, Romania

PostPosted: Fri Jul 23, 2004 4:03 pm    Post subject: Reply with quote

Just for the record... I solved this by simply using another NIC to install... and afterwords installed my real NIC. Seemd most viable option.
_________________
Viata-i grea, dar trece...
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