rc

install_tor.sh

1
#!/bin/sh
2
3
# Installs the packages required to set the system up for Tor routing.
4
5
sudo pacman -S --noconfirm tor arm
6
sudo systemctl start tor.service
7
sudo systemctl enable tor.service
8
echo -n "Tor is active. To use it, proxy software through 127.0.0.1:9050.\n"
9