Networking
Few modern computers are not on the Internet now. With such an important feature, having a networking problem can feel like a crippling blow, particularly for those of us who spend extended periods of time staring at a Web browser. This section identifies some of the common problems with wired and wireless networking.
I Can’t Access My Wired Local Area Network
First, check that the cables for your network are plugged in correctly. On many hubs, a small light appears when a cable is plugged into one of the sockets. Many Ethernet cards also display a connection light.
If the wired network is connected, Network Manager will show an icon of two computers. If that icon isn’t showing, you can manually edit the network configuration by opening System > Preferences > Network Connections. You should see a line labeled Auth eth0 under the Wired tab. If there isn’t one, you need to add one. If your network requires a static address, you can set one by pressing the Add button. In the dialog box that comes up, the static address information can be added under the Ipv4 Settings tab.
My Computer Says It Can’t Resolve a Web Site
If the network is working but Web sites are not loading, you might have a problem with the incorrect name or DNS servers, which turn domain names such as google.com into IP addresses. To test this, you will need to know an IP address. You may have been given some IP addresses for different services from your ISP. Alternatively, you can use another computer to find an IP address with which to test. Try pinging the address, and if you get pings back, you know it’s a name server problem. To resolve this, specify the correct name servers in the DNS tab.
How Do I Use SSH for Transferring Files Across a Network?
Secure Shell (SSH) is a protocol for connecting to remote computers in a safe way. To connect on the client side to a remote computer, click Locations > Connect to Server, and choose SSH as the service type. In the first field, enter the hostname or IP address of the remote computer.
The folder field can be left blank but can be used to go straight into a folder when you open the connection in the file manager. For instance, the home folder of user joe is typically /home/joe. Other folders are still accessible by clicking the up button on the toolbar. Enter the username of the user on the remote computer in the username field. If it’s the same as the local username, just leave it blank. Both the folder field and the username field are case sensitive. Click Connect to proceed.
The first time you connect, a question appears that says the identity of the remote computer is yet unknown. This is normal. Click the Login Anyway button to proceed. If you are asked for a password, enter the password of the user on the remote computer. Click on remember password for this session and Connect. If the password was wrong or it took too long to enter the password, it is asked for again.
The connection appears on the desktop. If you chose not to remember the password for the session or in the key chain, you may be asked again. Now you can use the remote files the same way you use them locally. You can even copy files across different SSH connections and other network protocols such as FTP.
How Do I Use a Graphical Application Remotely with SSH?
To connect on the client side to the remote computer, first open a terminal. Click Applications > Utilities > Terminal. Now run this command:
foo@bar:~$ ssh host -X -l user
where user is the username on the remote computer, and host is the hostname or IP address. If the username is the same, leave out the -l user option. The -X option signals ssh that you want to run graphical applications. Make sure you use a capital X exactly as shown. Usernames are also case sensitive.
If it’s the first time you are connecting, you will get a warning similar to the following:
The authenticity of host '251.152.123.101' (251.152.123.101)' can't be established. RSA key fingerprint is 01:12:23:34:45:56:67:78:89:9a:ab:bc:cd:de:ef:ff. Are you sure you want to continue connecting (yes/no)?
Type yes, and press Enter. When asked for a password, enter the password of the user on the remote computer. Now you should have a shell on the remote computer, and it’s possible to run commands remotely. For example, you can try Firefox to open up Mozilla Firefox, or Gaim to have a chat with yourself.
My Wireless Card Is Not Working
One of the greatest new features for laptop users in Ubuntu is Network Manager, an easy way to connect your Ubuntu system to any wireless network. Where previously you had to jump through hoops to do WPA or 802.1x authentication, Network Manager makes this completely transparent.
Simply click on the network icon in the upper panel by the clock to see all available wireless networks, and click on the network to connect to it. If wireless authentication is needed, be it WEP, WPA, or 802.1x, a dialog will pop up asking for your authentication details.
Of course, these improvements are not limited to laptop or even desktop users. Even for machines without a GUI, networking has been made easy by the Debian and Ubuntu developers who integrated WPA authentication into the standard network configuration system.
If Network Manager does not solve the problem, there are a few debugging steps you can take. First and most obvious to check is your laptop’s hardware wifi switch (if it has one). Next, you should see if Ubuntu is finding your wireless card. Go to System > Administration > Network and see if a Wireless Connection exists. If it does, you will need to enable Roaming Mode to use Network Manager.
If Ubuntu does not see your wireless card, then you need to determine which driver your wireless card needs. Do a search for your card on Google and in the Ubuntu forums to find out. Next, you need to figure out what sort of wireless card you have. To do this, you need to install the gnome-device-manager package and then run Applications > System Tools > Device Manager, shown in Figure 6-6, and look for your wireless card. It will likely say Wireless or 802.11a, b, or g, or possibly WLAN.
After you have found out the card type, you will need to enable the driver. This may involve compiling code or can be as simple as enabling the driver that is already in Ubuntu. Check out the Ubuntu Forums or search Google for this information.
With the card identified, you now need to get connected, as we explained at the beginning of this question.
For more information, see https://wiki.ubuntu.com/HardwareSupportComponentsWirelessNetworkCards.