Advertisement
meninbox

torinstall.sh

Aug 11th, 2014
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. #!/bin/sh
  2. echo "deb http://deb.torproject.org/torproject.org wheezy main" >> /etc/apt/sources.list
  3. clear scr
  4. echo "[*] Installing the keys...."
  5. gpg --keyserver keys.gnupg.net --recv 886DDD89
  6. gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
  7. echo "Ready!!"
  8. clear scr
  9. echo "[*] Updating Repositories...."
  10. apt-get update
  11. clear scr
  12. echo "[*] Installing TOR"
  13. apt-get install deb.torproject.org-keyring
  14. apt-get install tor
  15. echo "Ready!!"
  16. echo "[*] Installing Vidalia"
  17. apt-get install vidalia
  18. echo "Ready!!"
  19. echo "[*] Installing iceweasel-torbutton"
  20. apt-get install iceweasel-torbutton
  21. echo "Ready!!"
  22. clear scr
  23. echo "[*] Installing Privoxy"
  24. apt-get install privoxy
  25. echo "[*] Configuring privoxy"
  26. echo "forward-socks5 / 127.0.0.1:9050 ." >> /etc/privoxy/config
  27. echo "Ready!!"
  28. service tor restart
  29. service privoxy restart
  30. echo "Tor has been installed successfully."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement