Computers |
|
| | #1 (permalink) |
| Wizard Techie Join Date: Mar 2004
Posts: 3,546
| Ok, my motherboard below has a built in network NIC thing. I am in windows and it's connected to my Router and it works. The router is a DWL 620 and I need to know how to set my internet sharing up in linux. Slackware 10.2... Again, it's another computer that is connected to the router and I am trying to connect to the router with my cat5 in linux. |
| | |
| | #2 (permalink) |
| Master Techie Join Date: Apr 2004
Posts: 2,532
| dhcp or static? does the kernel detect your NIC, check with dmesg | more ifconfig w/o options will show network status if your NIC is detected and the kernel module for it is loaded which you can check with lsmod, then as root type netconfig and answer the questions that follow all the above commands need to done as root |
| | |
| | #5 (permalink) |
| Indeed. Join Date: Dec 2004
Posts: 1,531
| Im not familliar with Slackware, but for Ubuntu I went: System > Administration > Networking > Select eth0 > Activate > Properties > 'This Device is configured' (checked) > DHCP selected Then, to get the MAC adress I went into the network monitor and typed in eth0 and it showed me the MAC and info about the packets. Hope that helps, ~Greg |
| | |
| | #7 (permalink) |
| Master Techie Join Date: Apr 2004
Posts: 2,532
| log in as root in a terminal and type: dmesg | more --------scroll thru that and see if it shows an ethernet card lspci --------that will show all pci devices detected lsmod -------shows all kernel modules loaded, you need one for the NIC ifconfig -------with no options it will show network hardware status including MAC address--if the NIC module is loaded and its up it will show all that stuff modprobe XXXX -------XXXX is a kernel module, modprobe attempts to load a kernel module, what NIC do you have? I will tell also that with linux, you can go thru 100 different distros and its gonna be the same story, at some point you will have to learn the command line, reinstall/reformat doesnt fix anything, it isnt windows once your ethernet is detected and working you can setup your network with netconfig it isnt complicated, but with slackware the easiest and quickest way to get somethings done is the commandline, dont be afraid of it, its an incredibly useful tool........I will ne honest with you here, if you dont want to use it you dont HAVE to, but you arent gonna have fun with linux without it |
| | |
| | #8 (permalink) |
| Wizard Techie Join Date: Mar 2004
Posts: 3,546
| Oh, I know how to use the CLI well enough. I have done alot of wireless stuff in SuSE, built things and installed/uninstalled via the CLI. I just have NO idea on the networking portion... What do I modprobe? My NIC's name or eth0? My NIC is a built in nvidia LAN controller. |
| | |
| | #9 (permalink) |
| Master Techie Join Date: Apr 2004
Posts: 2,532
| modprobe followed by the needed driver or kernel module, example: modprobe 3c509 -----that would load the 3c509 kernel module for 3com509 based cards the available kernel modules can be found in /usr/src/linux/drivers/net I believe, no suffix needed, just the first part.usually they are very small little programs written in c, they usually have "c" for a suffix. dunno which one the nvidia LAN controller needs...I just checked the list, no nvidia module by the name nvidia, but that doesnt mean anything, you may have to google or check elsewhere to find out which one it is.....possibly compile one from source |
| | |
| | #10 (permalink) |
| Master Techie Join Date: Apr 2004
Posts: 2,532
| http://www.nvidia.com/object/linux_nforce_1.0-0292 try that----- linuxquestions.org if you search the slackware forum for nforce NIC driver has a few entries to look at |
| | |