LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Installation of Fa311 Nic. Plz HELP!! (https://www.linuxquestions.org/questions/linux-software-2/installation-of-fa311-nic-plz-help-5399/)

jpmast 08-13-2001 10:29 PM

Installation of Fa311 Nic. Plz HELP!!
 
I am beginning to frrl stupid. I am new to linux, and can't figure out how to get this dumb nic's drivers installed.

I am running Mandrake 7.0 and have the Netgear FA311 NIC. Please help and soon.

LinuxGod 08-14-2001 01:48 AM

Netgear.com
 
Go to netgear.com
download the linux driver
copy it to a directory on the linux station
make sure all files are in lower case
and type make fa311
then insmod fa311

Then you must copy that object file (fa311.o)
to, in redhat case /lib/modules/2.4.2/kernel/drivers/net
then cd to /lib/modules/2.4.2
type depmod -a

then goto /etc/modules.conf
and notice the other drivers
and add fa311.o in the same fashion

hmm that should do it.

drjimstuckinwin 08-14-2001 02:59 AM

Hi
These cards can be tricky! A search on these boards will show you how tricky. However if you have kernel 2.4. it's supported, recompile with the natsemi dp83810 driver, and it will work.
Jim

jpmast 08-15-2001 08:20 PM

:confused:
Ok, I am must be a Real Idiot.
How do you find out which version of the kernal you are running??
I am running 2.2.14-15mdk I think???? (I don't really know though)
Will I need to replace my Kernal or can I make this work with this card???

DMR 08-15-2001 08:45 PM

There might be something helpful in this thread from a few days ago.

cinnix 08-16-2001 01:00 AM

For some information on your kernel do a

Code:

uname -a
Often this information is also put in /etc/issue or one of the first entries in your logs during boot-up

LinuxGod 08-16-2001 02:26 AM

Re: Netgear.com
 
Quote:

Originally posted by LinuxGod
Go to netgear.com
download the linux driver
copy it to a directory on the linux station
make sure all files are in lower case
and type make fa311
then insmod fa311

Then you must copy that object file (fa311.o)
to, in redhat case /lib/modules/2.4.2/kernel/drivers/net
then cd to /lib/modules/2.4.2
type depmod -a

then goto /etc/modules.conf
and notice the other drivers
and add fa311.o in the same fashion

hmm that should do it.

If nothing else work just load the tulip driver by typing
insmod tulip


jpmast 08-16-2001 12:52 PM

OK, I have done
Insmod tulip
I then when in and set up the network configuration in drakconfg, and rebooted my system. Now on Boot, the eth0 is failing during the innilization.
I am looking at my switch, and there is a liink there, but the card is not getting any act, and is not showing up as really connected. I tried for shits and giggles to get to the web, and as I expected, I was not able to get out. I know that something has been done incorrctly, but I have gone back over this many times, and it all looks correct. I am missing somthig.
Is there any classification LOWER than NEWBIE, or do I need to make one up??
In a Win OS, I have no problems configuring the TCP/IP settings, but in Mandrake, I am beating my head on the wall. They say that learning can be hard, but so far, the hardest thing is the wall I keep beating my head on. Can anyone help?? I don't know.

drjimstuckinwin 08-16-2001 03:08 PM

Just a couple more steps.
Type linuxconf in a root terminal.
Can't remember the exact line you need (am in windozeland at work), but it's something like "this host basic information".
Enter ip address, netmask, hostname etc, or select dhcp.
On the interface tab where you enter ip stuff there will be a drop down box for eth0 etc. you need eth0. The tab below should be the one for the kernel module, select the one you need. If yours isn't there, TYPE IT IN!
Click activate changes, and off you (should) go.
I couldn't get my fa311 going at first, may be a redhat thing though. It's definitely supported in later kernels though.
Keep at it.
Jim

DMR 08-16-2001 04:14 PM

Have you turned off Plug-N-Play support in your BIOS yet? If not, try it; it can cause conflicts with PCI cards running under Linux.

jpmast 08-16-2001 06:02 PM

I have turned off the BIOS Plung N' Pray, and I have already tried to set the Network settings (ie ip, subnet, ect....) and tried DHCP (my cable router does this) but I still am getting the eth0 inilization in the bootup process. Is there anything else I am missing here.

By the way. I really want to say Thanks to everyone who is assisting me with this problem. Getting there slowly but surly.

jharris 08-16-2001 06:15 PM

Quote:

Originally posted by jpmast
OK, I have done Insmod tulip
You want to use
Code:

modprobe tulip
as this will load any modules that tulip.o depends on for correct operation, insmod doesn't do this for you.
Quote:

Originally posted by jpmast
I then when in and set up the network configuration in drakconfg, and rebooted my system. Now on Boot, the eth0 is failing during the innilization.
Has anyone explained that commands like insmod and modprobe will only work until you reboot?? If you want to make this happen at boot time you'll need to find the script that loads your modules and put the line in there (sorry can't help on this one, I'm not a Mandrake user!), or find the graphical tool that will do it for you. To find out if the module is getting loaded at boot time run
Code:

lsmod
from the command prompt after a reboot - this will list all the modules that are loaded - you should see tulip listed there. If you are using DHCP then you can always just try running
Code:

dhcpcd
from the command line (after loading the tulip module!) to see if you get a lease from your DHCP server. If you do then you know your setup is fine - you just need it to active itself at startup.

HTH

Jamie...

jpmast 08-16-2001 08:21 PM

Thanks for that last reply, but I am getting an error stating something about and invalid irq peramiter. can that be set using the modprobe tulip command?

jpmast 08-16-2001 08:51 PM

Ok, Maybe this will help.

When I am in the Konsol, and I type
cat /proc/pci
the system comes back and states that it sees my NIC at
irq 9 I/O port 0xe00 [0xe001]
but that the NIC is
Bus 0, device 16 function 0
Ethernet controller: NS Unknown Device (rev 0.)

The long and the short of this is that it is seeing my NIC, but no matter what I do to install the module, I can't get it to go. I have no modem in this system, no sound, just 3 hdd's, a fdd, a cd-rom, video card, and the nic. What am I doing wrong???

jharris 08-17-2001 03:16 AM

IRQ conflicts will cause you lotsa hassle, you might want to try to get a config tool for your NIC (nearly always need to boot to DOS to run them :() and hard set your IRQ to a value that you know isn't conflicting with anything. You can't use the module itself to change the IRQ... Also instead of cat'ing /proc/pci using the lspci command can tell you more in some cirumstances (probably not this one mind you!) as it will show PCI devices that are not being detected by the kernel.

HTH

Jamie...


All times are GMT -5. The time now is 06:29 AM.