View Single Post
Old 07-18-2005, 06:34 PM   #2 (permalink)
horndude
 
Master Techie

Join Date: Apr 2004

Posts: 2,534

horndude is on a distinguished road

Default

from command line while logged in as root:
dmesg | more ---------that will show the boot up message,check it to see if your network card was recognized by the kernel

lspci --------will list all pci devices on your system

lsmod ---------will list all kernel modules loaded, check if NIC has its kernel module in that list

insmod <module_name> will load the appropriate module if it isnt loaded, then change the appropriate init script so it gets done at boot, Redhat uses systemV init scripts

ifconfig -------use this to set IP address,netmask, and other settings for the NIC(s) in your system

if your sharing a connection with a windows machine using it as a router, you will have to setup the NIC in the linux box to use DHCP as well
horndude is offline