Skip to content

Instantly share code, notes, and snippets.

@jkirkby91
Last active July 5, 2016 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkirkby91/cfbd4c0674838a89435f7f26c68bca73 to your computer and use it in GitHub Desktop.
Save jkirkby91/cfbd4c0674838a89435f7f26c68bca73 to your computer and use it in GitHub Desktop.
Ubuntu Tor Install
#!/bin/sh
############################################################
######### Install Tor ########
############################################################
## ##
## ##
## ##
## ##
## ##
## ##
## ##
## /\ /\ ##
## <~ ~> <~ ~> ##
## |/\| |/\| ##
## /\ /\ ##
## # \ /`-\ ##
## / ###\ /`--_\ ##
## ,# ##.`---__`. ##
## / #### \--__ ~ \ ##
## # #####__ ~~~~| ##
## \##### / ~~~~~/ ##
## `____#####_~~---_' ##
############################################################
############################################################
############################################################
############################################################
############################################################
############################################################
############################################################
############################################################
echo "deb http://deb.torproject.org/torproject.org trusty main" >> /etc/apt/sources.list;
gpg --keyserver keys.gnupg.net --recv 886DDD89;
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -;
apt-get update -y;
apt-get install deb.torproject.org-keyring -y;
apt-get install tor -y;
touch /var/log/tor/notices.log;
update-rc.d tor defaults;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment