Difference between revisions of "Tor"

From Linuxintro
imported>ThorstenStaerk
(Created page with "Tor is a software and network that helps you browse anonymously. For example you want to rent a car in the USA and you get the feeling that EURO prices are higher than Dollar pri...")
 
Line 15: Line 15:
 
* install a proxy
 
* install a proxy
 
  yast -i privoxy
 
  yast -i privoxy
 +
 +
= Run it =
 +
* start privoxy
 +
tweedleburg:/etc/privoxy # /usr/sbin/privoxy --user privoxy.privoxy --pidfile /var/run/privoxy.pid
 +
tweedleburg:/etc/privoxy # echo $?
 +
0
 +
tweedleburg:/etc/privoxy # ps -A | grep privoxy
 +
28087 ?        00:00:00 privoxy
 +
tweedleburg:/etc/privoxy #
  
 
= See also =
 
= See also =
 
* [https://www.torproject.org/index.html.en Tor home page]
 
* [https://www.torproject.org/index.html.en Tor home page]
 
* [https://www.torproject.org/docs/tor-doc-unix.html.en Tor installation instructions for UNIX]
 
* [https://www.torproject.org/docs/tor-doc-unix.html.en Tor installation instructions for UNIX]

Revision as of 14:12, 8 May 2011

Tor is a software and network that helps you browse anonymously. For example you want to rent a car in the USA and you get the feeling that EURO prices are higher than Dollar prices. So you just do not want to tell you are browsing from an EU computer and see what offers you get.

This article shows an example how to use tor on SUSE Linux 11.4.

Installation

To install tor, build the source code. The x86_64 variant of the executables has not been published for SUSE (as of 2011-05-08).

tar xvzf Downloads/tor-*
  • install some dependencies:
yast -i libevent-devel
cd tor-*
./configure && make -j8 && make install
  • install a proxy
yast -i privoxy

Run it

  • start privoxy
tweedleburg:/etc/privoxy # /usr/sbin/privoxy --user privoxy.privoxy --pidfile /var/run/privoxy.pid
tweedleburg:/etc/privoxy # echo $?
0
tweedleburg:/etc/privoxy # ps -A | grep privoxy
28087 ?        00:00:00 privoxy
tweedleburg:/etc/privoxy # 

See also