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
1 |
<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/
:
1 2 3 |
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:
1 2 3 4 |
gpg --keyserver keys.gnupg.net --recv 886DDD89 gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add - |
You can install it with the following commands:
1 2 3 4 |
$ 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:
1 2 3 4 5 6 |
$ mkdir ~/debian-packages; cd ~/debian-packages $ apt-get source tor $ cd tor-* $ debuild -rfakeroot -uc -us $ cd .. |
Now you can install the new package:
1 2 3 4 |
$ sudo dpkg -i tor_*.deb |