PDA

View Full Version : Undetected LinkSys Ether16 Net Card



scissors
07-10-2003, 12:22 PM
Im having trouble figuring out how to get my LinkSys Ether16 ISA Lan Card to detect. I've tried the relevant cheat codes, tried everything I can find in searches but most of them appear to be based on the assumption that the card is detected, just not set up correctly. When I run the commands to either load a module (8390 & ne) I just get an error about no such device (forget the exact wording). I've done web searches, but it appears to me that knoppix uses a different config setup, so once I boot into knoppix, I usually find that the files which were mentioned dont exist, or the commands arent recognized. I've run 'procinfo -f' and it doesnt list the IRQ which the net card is set for. (The card is set via a dos util to IRQ 5 / IO 0x300.) Unfortunately my BIOS doesnt allow me to directly assign an IRQ that I can find. I can set a slot to ISA mode, which I've tried with the slot the card is on, same results from knoppix. Any help you can offer would be appreciated. I'm V E R Y new to Linux. Really, I've only tried 3 cd only formats, none of which I can get to detect my card.

Thanks
Brad

I'll post back 'lspci -v' and other outputs, as soon as I can reboot back to the knoppix cd.

scissors
07-10-2003, 01:13 PM
Ok, nevermind... Im actually in Knoppix right now! :) There is another thread titled
'How to load module for undetected NIC
" http://www.knoppix.net/forum/viewtopic.php?t=3289
which had just the info I needed. took me a while to figure out how to get into root though, because when I ran it from the default cmdline it gave errors about not having the correct permissions or something similar. Anyway... YEAH! In the end what worked . . .

Open a command window
"su" - to switch to root
"modprobe ne io=0x300 irq=5" - to force card detection
"procinfo -f" - to check if the IRQ is now showing up as active
"netcardconfig" - to set the card up to use DHCP.
"ifconfig -a" - to view the cards new settings.

Now, I've 2 new questions.
1) Is there somewhere I can save this, so that I happens automatically when I boot from the CD?

2) I've found some commands which are prefixed with sudo. Is this essentially sending a command to the root level? I mean, instead of doing 'su' first to switch to root, can I just alter the lines to read something like :

"sudo modprobe ne io=0x300 irq=5"
"sudo netcardconfig"

Thanks
Brad

Stephen
07-10-2003, 04:44 PM
1) Is there somewhere I can save this, so that I happens automatically when I boot from the CD?


You could use either the save config to floppy or persistant home options that are in the Knoppix menu off the main Kmenu. Then when you boot from the CD you would use IIRC knoppix floppyconfig or knoppix home=scan at the boot: prompt a search of the forum would provide more information on these options.



2) I've found some commands which are prefixed with sudo. Is this essentially sending a command to the root level? I mean, instead of doing 'su' first to switch to root, can I just alter the lines to read something like :

"sudo modprobe ne io=0x300 irq=5"
"sudo netcardconfig"

Thanks
Brad
I believe when you save the config to the floppy or the persistant home the settings will be used properly on boot I run from the HD so I am not 100% certain as I have not tested these options.

scissors
07-11-2003, 01:47 AM
1) Is there somewhere I can save this, so that I happens automatically when I boot from the CD?


You could use either the save config to floppy or persistant home options that are in the Knoppix menu off the main Kmenu. Then when you boot from the CD you would use IIRC knoppix floppyconfig or knoppix home=scan at the boot: prompt a search of the forum would provide more information on these options.



2) I've found some commands which are prefixed with sudo. Is this essentially sending a command to the root level? I mean, instead of doing 'su' first to switch to root, can I just alter the lines to read something like :

"sudo modprobe ne io=0x300 irq=5"
"sudo netcardconfig"

Thanks
Brad
I believe when you save the config to the floppy or the persistant home the settings will be used properly on boot I run from the HD so I am not 100% certain as I have not tested these options.

Thanks! I tried it, and it didnt reload much of my settings, but atleast I know what to search for now.

Brad