![]() |
Installing Tor in Linux Lite 3.x Series - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Tutorials (https://www.linuxliteos.com/forums/forumdisplay.php?fid=21) +--- Thread: Installing Tor in Linux Lite 3.x Series (/showthread.php?tid=3679) |
Installing Tor in Linux Lite 3.x Series - Valtam - 01-20-2017 What is Tor? Tor is free software and an open network that helps you defend against traffic analysis, a form of network surveillance that threatens personal freedom and privacy, confidential business activities and relationships, and state security. Tor protects you by bouncing your communications around a distributed network of relays run by volunteers all around the world: it prevents somebody watching your Internet connection from learning what sites you visit, and it prevents the sites you visit from learning your physical location. This installs the Tor service, not to be confused with the Tor Web Browser. The Tor Web Browser is a quick and easy way to browse the Internet safely, the Tor service installs directly to your system, allowing you to run a variety of applications through the Tor network. See - https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO#Howtotorifyspecificprograms for how to run programs through Tor. Edit your sources list: Code: sudo leafpad /etc/apt/sources.list Add the following to the bottom of the file, save and close: Code: deb http://deb.torproject.org/torproject.org xenial main Open a terminal, run the following 2 commands separately: Code: gpg --keyserver keys.gnupg.net --recv A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 Code: gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add - Update and install: Code: sudo apt-get update Check the service is running: Code: ps aux | grep /tor Your output should be similar to: Code: jerry@z800:~$ ps aux | grep /tor Open Firefox (other browsers instructions will be similar) Open menu Edit > Preferences > Advanced > Network > Settings. Select Manual proxy configuration. Enter SOCKS Host: 127.0.0.1 and Port: 9050 and select SOCKS v5 and clear all text in No proxy for: text box. Press OK. ![]() In Firefox: about:config Search for: remote_dns double click 'network.proxy.socks_remote_dns' and change to 'true'. Done. Re: Installing Tor in Linux Lite 3.x Series - LL-user - 01-20-2017 Thanks, Jerry! Highly appreciated ![]() Re: Installing Tor in Linux Lite 3.x Series - bitsnpcs - 01-21-2017 Thank You for making the tutorial Jerry ![]() |