TP-Link TL-WR702N Router Configuration Settings

Published on:
Tags:

There are five modes in which the router can be configured:

  1. Wireless Access-Point(AP) Mode
  2. Client Mode
  3. Repeater Mode
  4. Router Mode
  5. Bridge Mode

Wireless Access Point(AP) Mode:

The router is connected to a wired network and transforms the wired internet access into wireless so that multiple devices can share the internet.

AP-Mode "Image Describing the AP Mode"


Client Mode:

The device is connected to another device via ethernet card and acts as an adapter to send/receive the wireless signal from your wireless network

Client-Mode "Image Describing the Client Mode"


Repeater Mode:

The device copies and reinforces the existing wireless signal to extend the coverage of the signal. So the network name(SSID) and password don’t change. This mode is especially useful for a large space to eliminate signal-blind corners.

Repeater-Mode "Image Describing the Repeater Mode"


Router Mode:

The device is connected to a DSL or cable modem and works as a Regular Wireless Router

Router-Mode "Image Describing the Router Mode"


Bridge Mode:

The device borrows existing wireless internet and broadcasts it using a different network name(SSID) and password

Bridge-Mode "Image Describing the Bridge Mode"

Advanced Packaging Tool

Published on:
Tags:

Advanced Packaging Tool is a user interface that lets the user install and remove packages/softwares on Debian/GNU Linux Distributions.

Searching for Packages

To search for a software/package in the repositories run the following command in the terminal

apt-cache search <search-term>|less

less is used for a better navigation through the output list

Adding Repositories

To add the repository run the following command

sudo add-apt-repository <repository name>

Manually the repositories can be added or changed by editing APTs source file

sudo vi /etc/apt/sources.list

Updating Sources

After adding repositories, the Package List has to be updated

sudo apt-get update

This will update the package list from all repositories in one go. Remember to do this after every added repository

Installation

Now that you have added the software repository and updated your package list, and found the package name you need, you can install it by running the following command

sudo apt-get install <Package Names>

This will download and install all of the packages mentioned.If there are dependencies-other prerequisite packages-they will also be installed

Removing Packages

To get rid of a program run the following command

sudo apt-get remove <Package Name>

To get rid of the configuration files and associated directories as well

sudo apt-get --purge remove <Package Name>

Checking What is Installed

A list of all the installed packages can be seen by

sudo dpkg --list

To search through the list use the grep command

sudo dpkg --list|grep <search term>

If you want to know whether the particular package has been installed or not

dpkg -s <Package Name>