INSTALL 2.8 KB

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