| Distro Review and Quick Installation Guide | ||||
|
General - Installation - First look - Documentation - Localization - Mounting drives - Multimedia Networking - Printing - Availability - Conclusion
Networking My laptop has built in wireless card. Configuring it through KDE Control Center is not possible because it was not recognised. I got message:
In terminal I entered command:
and found that kernel did recognise my laptops wireless device. I haven't set it up yet, but I hope instructions could be found on Internet. To setup network you need to use netconfig utility which is started in terminal:
It has several steps to do it: 1. Enter name of your computer
2. Enter domain name of your network If you don't know ask your network administrator, or else enter whatever you want. Domain means that your computer belongs to the certain group of computers, like some organization, firm, etc.
3. Set IP (or Internet Protocol) address Choosing DHCP it will be done automatically without much of your interventions. DHCP server, if present on your network, will dedicate IP address to your computer. If there is no DHCP server, choose static IP to do it manually.
4. Enter staticIP address (if not using DHCP) You can ask your network administrator for available IP address. The address entered below is reserved (aka. private) network address and is not routed across Internet. If there is no one to ask, you can use this address for your own private networks. The available range is 192.168.0.0 to 192.168.255.255. Each group of three numbers that are divided by dots can have decimal value from 0 to 255. Try not to use numbers 0 and 255, because they are reserved.
5. Enter subnet mask for your network (if not using DHCP) You can use this network mask. Each IP address consists of two parts: network part and host part. Network mask helps to determine which is which in IP address.
6. Enter gateway for your network (if not using DHCP) Gateway is a point at which traffic from your computer is routed to another network (usually to internet).
7. Enter DNS (Domain Name Server) for your network (if not using DHCP) Nameserver resolves the address you typed in browser (like www.distromania.com) to IP address which computer understands. You wouldn't want to type 12 numbers to access some web page. For humans, it is easier to type and remember words (like web page names). Select <yes>.
Then type IP address of your DNS server (or servers):
8. Confirm by pressing <Accept>
9. Select <OK>
After exiting to command prompt we can check if the setup was really accepted. Why really? Well, I tried entering ifconfig command in terminal and got nothing for my network card (eth0) configuration. In file manager open /etc/rc.d/rc.inet1.conf Use right click -->open with... Kwrite to open it. Check that the IP address you entered during setup is in section # Config information for eth0: This is what my rc.inet1.conf looks like:
To connect to internet using dial-up connection you can use kppp utility. It is not placed in the K-->Internet menu. You need to invoke it entering command in terminal:
Using kppp you can setup modem connection to internet. First be sure that your modem is recognised and supported by linux kernel.
this command will display information about all PCI buses in the system and all devices connected to them. This is what my computer output looks like:
Search the internet to find if your modem is supported by kernel. If you are behind a firewall in the corporate network, and using proxy, you can setup your browser (firefox) to use it:
Ask your administrator for information about proxy name (or address) and port number to use. If you need to access Windows network, there is no unique application (like LinNeighborhood or similar) to easily do it in graphical environment. Each time I tried to do it using KDE Control Center - it crashed. It is possible to do it by commands in terminal (type smb and hit tab key once or twice to have all commands starting with smb). Before that you have to create and edit smb.conf file (/etc/samba/). You can use smb.conf-sample file available there. After that you need to start samba.
|