Originally posted by: bigpoppapumpg
ok so find that module, copy it to a floppy, and when suse ftp installer asks for a network module I can specify to look in the floppy drive?
sometimes that will work, often it won't. Modules are generally only usefull for the kernels that they are compiled to be used with. You want the drivers from Nvidia's website, they have nforce driver package.
Sorry, but this is why propriatory drivers suck. I don't know how or why it worked with you debian mini iso, but Knoppix is escentually a debian OS.
I had a nforce board and the nic wouldn't work without the propriatory drivers. I had a ethernet card laying around, so I just used that instead. You can pick up a cheap one that will work for between 4-10 bucks.
The nforce board sometimes use a nvidia-modified versions of the realtek chipset-based onboard nic. These things are used in the cheapest and probably most common cards you can find, and they work great. But the nvidia ones are pseudo-compatable with the standard drivers.
The modules for these cards are called rtl8139. Or something similar, don't quite remember...
All the modules for your kernel are located in /lib/modules/kernel-name, were kernel name is the name of the kernel you are using. Try this command:
find /lib/modules/ | grep 8139
So if you find a rtl8139.o then you go
modprobe rtl8139
(minus the .o part)
and that should get the drivers installed. Then you have to configure the ethernet interface. If you use dhcp on your network then it would be something like:
dhclient eth0
or
dhcpcd eth0
I am pretty sure.