Results 1 to 2 of 2
Hello friends, which package/repositories are required for networking to connect wireless/wired modems for using net ?...
- 09-12-2011 #1Just Joined!
- Join Date
- Sep 2011
- Posts
- 8
package required for connecting to internet ?
Hello friends, which package/repositories are required for networking to connect wireless/wired modems for using net ?
- 09-12-2011 #2Linux Guru
- Join Date
- May 2011
- Posts
- 1,837
Unless you did something extraordinary during the install, you should have all the utilities you need to connect to your modem (at least for wired - wireless might require an additional package or two). What you really need is your router's IP address, and possibly some connection info, if you are not using DHCP, or if the router does not have DNS info (unlikely).
Assuming you are using a wired connection, do you have a CAT-5 ethernet cable going from your PC to the modem? Take care of that first, if not.
Check the following commands (run them as root), show the output of them and we can help you further:
current TCP configuration:
current routing info:Code:ip a
current DNS info:Code:route -n
check physical link of your ethernet device(s):Code:cat /etc/resolv.conf
Note: that last command will fail if you don't have the ethtool package installed.Code:for i in `ls /sys/class/net/|grep -v lo`; do echo -n $i;ethtool $i|grep Link;done
See if you can already get on the net:
Two ways to check if DNS resolving is working:Code:ping www.google.com
Note: that last commands will fail if you don't have the bind-utils package installed.Code:host www.google.com nslookup www.google.com


Reply With Quote
