Tor/Installation

From aldeid
Jump to navigation Jump to search
You are here:
Installation

Installation

Two installation modes are available:

  • Tor Browser Bundle: contains everything you need to safely browse the Internet. This package requires no installation and already contains Vidalia, the Tor administration interface. Just extract it and run. This is the recommended installation.
  • Installation from sources

Tor Browser Bundle

$ cd /data/src/
$ wget http://www.torproject.org/dist/torbrowser/linux/tor-browser-gnu-linux-i686-1.1.4-dev-en-US.tar.gz
$ tar xvzf tor-browser-gnu-linux-i686-1.1.4-dev-en-US.tar.gz

To start Tor, just run:

$ cd tor-browser_en-US/
$ ./start-tor-browser

You should see following screen:

Building from sources

Step 1: Install Dependencies

First install dependencies:

$ sudo apt-get install libevent-dev libssl-dev zlib1g-dev

Step 2: Download and install Tor

Then download, uncompress and configure sources:

$ cd /data/src/
$ wget http://www.torproject.org/dist/tor-0.2.1.29.tar.gz
$ tar xvzf tor-0.2.1.29.tar.gz
$ cd tor-0.2.1.29/
$ ./configure
$ make

Then either install Tor:

$ sudo make install

Or just start Tor (without installing it):

$ src/or/tor

Step 3: Install and configure Polipo

Tor is a SOCKS proxy, which means that it doesn't care about protocols using it. To correctly handle Tor network latencies, we will install Polipo, an HTTP proxy.

First install Polipo and configure it to work with Tor.

Step 4: Download and use Torbutton (Firefox extension)

Download Torbutton:

https://addons.mozilla.org/en-US/firefox/addon/torbutton/

By browsing http://check.torproject.org, you should be able to see such a screen:

Tools

To use the different examples, first ensure you have following stuff:

  • Tor: the core installation to hide our IP address
  • polipo or privoxy: HTTP proxy used in conjunction with Tor for Web browsing
  • proxychains
  • tortunnel
  • nmap: the portscanner we will use to scan the target

Comments

Talk:Tor/Installation