I hope you all make good use of this. Follow Steps to Install TOR on your linux System
Installing TOR on DEBIAN
Open Terminal as root,type the following command
<code>apt-get install tor</code>
Installing On UBUNTU (Trusty Thar)
Add the following entries to source list in /etc/apt/sources.list
or a new file in /etc/apt/sources.list.d/
:
deb http://deb.torproject.org/torproject.org trusty main
deb-src http://deb.torproject.org/torproject.org trusty main
Then add the gpg key used to sign the packages by running the following commands at your command prompt:
gpg --keyserver keys.gnupg.net --recv 886DDD89
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
You can install it with the following commands:
$ apt-get update
$ apt-get install build-essential fakeroot devscripts
$ apt-get build-dep tor deb.torproject.org-keyring
Then you can build Tor in ~/debian-packages:
$ mkdir ~/debian-packages; cd ~/debian-packages
$ apt-get source tor
$ cd tor-*
$ debuild -rfakeroot -uc -us
$ cd ..
Now you can install the new package:
$ sudo dpkg -i tor_*.deb