2003-10-07 18:57:18 +02:00
|
|
|
Quickstart version for users:
|
|
|
|
|
2005-03-29 03:03:07 +02:00
|
|
|
-1) If you don't have libevent, install it. Source is at
|
|
|
|
http://www.monkey.org/~provos/libevent/ .
|
2003-10-07 18:57:18 +02:00
|
|
|
0) Download the absolute newest version. No, really.
|
2005-01-05 01:06:51 +01:00
|
|
|
http://tor.eff.org/dist/
|
2003-10-07 18:57:18 +02:00
|
|
|
1) tar xvf it, and then cd into the directory.
|
2004-02-17 01:45:05 +01:00
|
|
|
2) ./configure
|
2003-10-07 18:57:18 +02:00
|
|
|
3) make
|
2004-03-04 18:19:32 +01:00
|
|
|
4) make install (as root if necessary)
|
2003-10-18 02:44:10 +02:00
|
|
|
5) tor (if it doesn't work, give it the whole path or fix your path)
|
2003-10-07 18:57:18 +02:00
|
|
|
You don't need to run this as root, and you probably shouldn't.
|
2003-11-19 23:58:19 +01:00
|
|
|
(If you're having problems, try running it with "-l info" to get
|
|
|
|
more details.)
|
2003-10-07 18:57:18 +02:00
|
|
|
6) point your browser to socks4 or socks5 proxy at localhost port
|
|
|
|
9050. In mozilla, this is in edit|preferences|advanced|proxies. This
|
2005-08-04 16:47:19 +02:00
|
|
|
allows you to test to make sure Tor is installed correctly.
|
2004-01-30 00:10:02 +01:00
|
|
|
(If you have a personal firewall, be sure to allow local connections
|
|
|
|
to port 9050.)
|
|
|
|
(If your firewall blocks outgoing connections, punch a hole so it
|
|
|
|
can connect to TCP *:9001-9004 and *:9031-9033)
|
2003-12-31 00:02:27 +01:00
|
|
|
(If you're using Safari as your browser, keep in mind that OS X before
|
|
|
|
10.3 claims to support socks but does not. You must do step 8.)
|
2003-10-07 18:57:18 +02:00
|
|
|
7) make sure you've set it up correctly: go to
|
|
|
|
http://www.junkbusters.com/cgi-bin/privacy and see what IP it says
|
|
|
|
you're coming from. If it works, you should probably go on to step 8,
|
|
|
|
to get better privacy.
|
|
|
|
|
|
|
|
8) Optionally, install privoxy (www.privoxy.org), and add the line
|
2003-10-12 01:57:33 +02:00
|
|
|
"forward-socks4a / localhost:9050 ." (without the quotes -- don't forget
|
|
|
|
the dot) to its config file. Then change your mozilla to http proxy
|
2004-07-20 00:30:18 +02:00
|
|
|
at localhost port 8118 (and no socks proxy). You should also set your
|
|
|
|
SSL proxy to the same thing, to hide your https traffic. Using privoxy
|
|
|
|
will give you good html scrubbing as well.
|
2003-10-07 18:57:18 +02:00
|
|
|
|
2003-10-07 23:27:33 +02:00
|
|
|
*****If this works for you, you can stop reading here******
|
|
|
|
|
|
|
|
If you got the source from cvs:
|
|
|
|
|
|
|
|
Run "./autogen.sh", which will run the various auto* programs and then
|
|
|
|
run ./configure for you. From there, start at step 3 in the quickstart
|
|
|
|
list above.
|
|
|
|
|
|
|
|
If the quickstart doesn't work for you:
|
|
|
|
|
2005-03-29 03:03:07 +02:00
|
|
|
Starting with Tor 0.1.0.0, Tor uses libevent for its asynchronous
|
|
|
|
networking core. If you don't have libevent, you'll need to install it.
|
|
|
|
You can get it at http://www.monkey.org/~provos/libevent/.
|
|
|
|
|
2004-11-10 02:20:17 +01:00
|
|
|
If you have problems finding libraries, try
|
2003-10-07 23:27:33 +02:00
|
|
|
CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" \
|
|
|
|
./configure
|
2006-02-18 02:14:28 +01:00
|
|
|
or
|
|
|
|
./configure --with-libevent-dir=/usr/local
|
2003-10-07 23:27:33 +02:00
|
|
|
rather than simply ./configure.
|
|
|
|
|
2004-08-25 21:07:51 +02:00
|
|
|
If you have mysterious autoconf failures while linking openssl,
|
|
|
|
consider setting your LD_LIBRARY_PATH to the openssl lib directory.
|
|
|
|
For example, "setenv LD_LIBRARY_PATH /usr/athena/lib".
|
|
|
|
|
2005-08-04 16:47:19 +02:00
|
|
|
Check out the list archives at http://archives.seul.org/or/dev/ or
|
|
|
|
the bug tracker at
|
|
|
|
http://bugs.noreply.org/flyspray/index.php?tasks=all&project=4 and
|
|
|
|
see if somebody else has reported your problem. If not, please
|
|
|
|
subscribe and let us know what you did to fix it, or give us the
|
|
|
|
details and we'll see what we can do.
|
2002-06-29 01:26:42 +02:00
|
|
|
|