• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux Problem

Sureshot324

Diamond Member
I've just installed Red Hat Linux 9, but i can't seem to get on the internet with it. It's not detecting my network chip (on my msi k7n2l nforce2 board), and i don't think it's detecting my us robotics 56k modem either. Are there Linux drivers for these devices? Keep in mind I'm a complete Linux newbie.

Thanks for any help.
 
You need to install the nforce2 dirvers from [l=http://www.nvidia.com/object/linux_nforce_1.0-0261]nvidia's[\l] website. These drivers will make the board work better. As far as the modem goes, I would check to see if it is on the list of tested hardware, as most modems are "winmodems" which means they rely on certain pieces of the windows OS to work. hope this helps, and good luck.
 
Ok, i installed the nforce drivers for Red Hat 9, and now when i go to add new ethernet device, a device called nvnet (eth0) or something shows up. I can finish going through the wizard, but when i try to activate the device it says the device can not be found. What am i doing wrong?
 
Try to do it manually. Get to a command line, either thru a X terminal or hit the ctrl-alt-f2 to get into a console. Then log in as root, or use the "su" command. This way you can see any things that may go wrong.

to see if the modules are loaded use:

lsmod

This will list the modules. If the text goes by to fast do:

lsmod |less

if it is not loaded do:

modprobe nvnet

It should give you a warning about a "tainted" kernel, this just means that it is not a valid GLP code being using with GPL kernel.. It's liscencing stuff, you can disregard it.

If it gives you a error about not being able to find the module do:

depmod
then
modprobe nvnet

Then it should load up the driver. Then run:

ifconfig eth0

That should return something other then a error, but it shouldn't be configured yet. If you use DHCP then try:

dhcpcd eth0

That should set it up. But if it times out or you don't use DHCP do this:

ifconfig eth0 your.ip.address.here
route add default gw your.gateway's.ip.address.here

Then after you get either one of those steps done just run:

ifconfig

This should show the configured ethernet device. Then all you have to do is make sure that your computer knows were to find your DNS server. You make sure that their is a line like:

nameserver your.dns.server's.ip.address

in you /etc/resolv.conf file.

Then you should have network connectivity.


 
I have it working now. I ended up having to install a third party driver for the nic that someone told me about in another form. Apperently nVidia's Linux support isn't too good.
 
Could you tell me where you got that driver? I'm having a major problem getting a connection onto the internet using a Linksys WMP11 wireless PCI with Redhat 9.
 
Back
Top