Tor Relay Configurator

Get your own Tor Relay up and running in seconds.
What is Tor? | Who made this?

Number of nodes
Combined Bandwidth (Mb/s)
🏆 Top 10 Nodes 🏆
  1. 🥇 HRMB (262Mb/s)
  2. 🥈 lodrich (228Mb/s)
  3. 🥉 lodrich2 (227Mb/s)
  4. LoedgreemOCI (216Mb/s)
  5. ei8fdb (205Mb/s)
  6. AnotherGate (198Mb/s)
  7. atomcats (192Mb/s)
  8. andr788k (182Mb/s)
  9. Piratenpartei02 (178Mb/s)
  10. Piratenpartei06 (172Mb/s)

Installing sudo

Log into your server as the root user. First update your package repository data:

apt update

Then install sudo with:
apt install sudo

Sudo is now installed, but by default only the root user can use it, which is not what we want. On installation sudo adds a new user group "sudo" to the system. All users in that group are allowed to run the sudo command so we have to add your user to this grup. You can do this with the following command:
adduser foo sudo

This adds a user called "foo" to the sudo group. Obviously you have to replace "foo" with your username.
Now you log out of your server and log in with your user and you will have full root access through the sudo command.
This is a much safer way to run a command as root than by directly logging in as the root user.