Advertisement
Guest User

east1

a guest
May 18th, 2019
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. Guide to Creating a tor bridge
  2.  
  3.  
  4. I) Installing Linux
  5.  
  6. Install Linux Debian via a clean .iso file torrented using I2p
  7.  
  8.  
  9. 2. Open the terminal window by typing "CTRL-ALT-T" or "CTRL-ALT-F1”. Then you want to check the edition of linux that you are running to ensure it is the same one this guide is using ( Debian stable stretch ). to do this type. [ 1 ]
  10.  
  11. lsb_release -c
  12.  
  13. 3. Next you want to get full root privileges this is done by typing “ su “ into the terminal window.
  14. NOTE: when typing in the admin password no text will appear rest assured that you are still actually typing in the password.
  15.  
  16. 4. Next, you should upgrade your Ubuntu distro to the latest version. Thus, in the terminal window, type "apt-get update". When that is finished, type "apt-get dist-upgrade" and say yes to the install. This could take a bit of time. But, it's worth doing.
  17.  
  18. II) Installing Tor
  19.  
  20. 1. In order to later install source lines with https:// in them to the sources.list file you need to install the
  21. apt-transport-https package. Install by typing
  22.  
  23. apt install apt-transport-https
  24.  
  25.  
  26. 2. In your open terminal window, type "nano /etc/apt/sources.list" Note the space between nano and /. Then, add the following lines at the bottom of the file: [ 1 ]
  27.  
  28. deb https://deb.torproject.org/torproject.org stretch main
  29. deb-src https://deb.torproject.org/torproject.org stretch main
  30.  
  31. 3. To close Nano and save the file, type "CTRL-X". You'll be prompted for the file name, where you can just press "Enter" and then select "Y" to overwrite it.
  32.  
  33. 4. Next install the update that will allow you to use the curl command.
  34.  
  35. apt install curl
  36.  
  37. 5. At the prompt in the terminal window, enter the next following lines one by one. [ 1 ]
  38.  
  39.  
  40. curl https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gpg --import
  41.  
  42. gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | apt-key add -
  43.  
  44.  
  45. 6. The Tor project provides a Debian package to help you keep our signing key current. It is recommended you use it. Install it with the following commands:
  46.  
  47. apt update
  48. apt install tor deb.torproject.org-keyring
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement