Skip to main content

Internet and Network Connection in Linux System



1. LAN (Wired)
2. Wireless
3. Mobile Broadband

+-+-+-+-+-+-+-+-+-+-+-+-+-+-
1. Wired (LAN)
+-+-+-+-+-+-+-+-+-+-+-+-+-+-

    Manually entering your network settings:

    If you don't have DHCP on your network then you can configure a static
        connection. You will need to enter the network settings yourself, so
        check with your network administrator or look at your router's
        settings to find out which details to use.   

1.Right click the Network Manager icon in the system notification area and click Edit Connections.      

2.Click the Wired tab, select the connection and click Edit.          

3.Click the IPv4 Settings tab and choose Manual from the Method drop down list.
       
4.Click Add and enter your IP address and other details. Enter the address of your DNS server too.

5.Click Apply. The network should now connect if you entered the settings correctly.

+-+-+-+-+-+-+-+-+-+-+-+-
2. Wireless
+-+-+-+-+-+-+-+-+-+-+-+-


To connect to a wireless network:

   1.Ensure that your wireless device is turned on.

   2.Click the Network Manager icon in the system notification area.

   3.Under Wireless Networks click on the network you want to connect to.

If you have connected to the network previously, Ubuntu will automatically connect to the network where it is available.
If you are connecting to a network for the first time, security details may be needed. If so, a dialog box will open. Enter your security details as follows.
   
            1.    In most cases the security type will be detected automatically. If
                not, select the security type from the
                Wireless Security drop-down box. This will
                depend on how the wireless network is set up. Examples of security
                types are WEP, WPA and LEAP.

              2.    Enter the password, key or other authentication details as
                appropriate. These are usually case-sensitive. If you don't know
                your wireless key, it may be printed on the bottom of your wireless
                router.     

            3.    Click Connect. If you are prompted again for
                your security details, you may have entered them incorrectly, or
                there could be a problem with your wireless setup.

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
3. Mobile Broadband
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 

Mobile Broadband means any kind of high speed Internet connection which is provided by an external device such as a 3G USB stick or mobile phone with built-in HSPA/UMTS/GPRS data connection. Some laptops have recently been produced with mobile broadband devices already inside them.
Most mobile broadband devices should be recognised automatically when you connect them to your computer. Ubuntu will prompt you to configure the device.
   

1.The New Mobile Broadband Connection wizard will open automatically when you connect the device.             
 
2.Click Forward and insert your details, including the country where your Mobile Broadband device was issued, the network provider and type of connection (for example, Contract or pre-pay).             

3.Give your connection a name (it is up to you what name you choose) and click Apply.          

4.Your connection is now ready to use. To connect, click the Network Manager icon in the top right of the panel and select your new Connection.         

5.To disconnect, left click the Network Manager icon in the top right of the panel and click Disconnect.

If you are not prompted to configure the device when you connect it, it may still be recognised by Ubuntu. In such cases you can add the connection manually.
   
   1.Right-click the Network Manager icon in the system notification area and click Edit Connections            

   2.Select the Mobile Broadband tab.            

   3.Click Add.        

   4.This should open the New Mobile Broadband Connection wizard. Enter your details as described above.
             
 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
 SOURCE: LINUX
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-

Comments

Popular posts from this blog

Background Process in ORACLE Database

Background Process in ORACLE Database Database Writer Process (DBWn) Log Writer Process (LGWR) Checkpoint Process (CKPT) System Monitor Process (SMON) Process Monitor Process (PMON) Recoverer Process (RECO) Job Queue Processes Archiver Processes (ARCn) Queue Monitor Processes (QMNn) Database Writer Process (DBWn) The database writer process (DBWn) writes the contents of buffers to datafiles. The DBWn processes are responsible for writing modified (dirty) buffers in the database buffer cache to disk. Although one database writer process (DBW0) is adequate for most systems, you can configure additional processes (DBW1 through DBW9 and DBWa through DBWj) to improve write performance if your system modifies data heavily. These additional DBWn processes are not useful on uniprocessor systems. When a buffer in the database buffer cache is modified, it is marked dirty. A cold buffer is a buffer that has not been recently used according to the least recently used (LRU) algorith...

Using GREP in UNIX

How To Use grep Command In Linux / UNIX by  VIVEK GITE  on  AUGUST 2, 2007  ·  147 COMMENTS H ow do I use grep command in Linux? grep command searches the given file for lines containing a match to the given strings or words. By default, grep prints the matching lines. Use grep to search for lines of text that match one or many regular expressions, and outputs only the matching lines. The name, "grep", derives from the command used to perform a similar operation, using the Unix/Linux text editor ed: g/re/p grep command syntax grep 'word' filename grep 'string1 string2' filename cat otherfile | grep 'something' command | grep 'something' Use grep to search file Search /etc/passwd for boo user: $ grep boo /etc/passwd You can force grep to ignore word case i.e match boo, Boo, BOO and all other combination with -i option: $ grep -i "boo" /etc/passwd Use grep recursively You can search recursively i.e. read all files under each ...

Searching BOOLEAN on the INTERNET

A Primer in Boolean Logic The Internet is a vast computer database. As such, its contents must be searched according to the rules of computer database searching. Much database searching is based on the principles of Boolean logic. Boolean logic refers to the logical relationship among search terms, and is named for the British-born Irish mathematician George Boole. On Internet search engines, the options for constructing logical relationships among search terms often modify the traditional practice of Boolean searching. This will be covered in the section below, Boolean Searching on the Internet. Boolean logic consists of three logical operators: OR AND NOT Each operator can be visually described by using Venn diagrams, as shown below. OR logic college OR university Question: I would like information about college. In this search, we will retrieve records in which AT LEAST ONE of the search terms is present. We are searching on the term...