To view the list of links, please access this site using Tor Browser.
If you’re seeing this message, access is restricted for regular browsers.
Already using Tor? If you are sure you’re currently in Tor Browser, proceed to our .onion version:
sudo apt install apt-transport-httpsNext, create the apt sources list file for the tor repository:
sudo vim /etc/apt/sources.list.d/tor.listAdd the following lines:
deb [signed-by=/usr/share/keyrings/tor-archive-keyring.gpg] https://deb.torproject.org/torproject.org bookworm main deb-src [signed-by=/usr/share/keyrings/tor-archive-keyring.gpg] https://deb.torproject.org/torproject.org bookworm mainThen, Import the relevant signature from the repository:
wget -qO- https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gpg --dearmor | sudo tee /usr/share/keyrings/tor-archive-keyring.gpg >/dev/null(You may have to install gpg first, you can do this with sudo apt install gpg Now, update the repository cache:
sudo apt update
sudo apt install tor deb.torproject.org-keyringNow you need to configure your tor relay, this is where you set specific ports to block, set bandwidth limits, etc. This is my configuration for my relay, (if you want to use mine, replace <relayname> and <contactinfo> with any name and your contact email address, remember it will be public.
Nickname <relayname> ContactInfo <youremailhere@mail.com> ORPort 443 ExitRelay SocksPort CookieAuthFileGroupReadable 1 RelayBandwidthRate 100MBytes RelayBandwidthBurst 120 MBytes MaxAdvertisedBandwidth 100 MBytes AccountingStart day 0:00 AccountingMax 200 GBytesIn my configuration, the max bandwidth is 100 MB/s, and the max daily traffic is 200 GB. There is more information on these settings here: https://support.torproject.org/relay-operators/bandwidth-shaping/ Now everything is configured, its time to start your relay. To do this, run
sudo systemctl restart tor@defaultNext, you should install nyx, which allows you to monitor your relays traffic, as well as other statistics:
sudo apt install nyx