Adding Debian Buster Backports repo to RaspberryPi for tor

Add key curl https://ftp-master.debian.org/keys/archive-key-10.asc | gpg --import gpg --export DC30D7C23CBBABEE | apt-key add - The fingerprint (DC30D7C23CBBABEE) given is the one that the first command outputs, which is the fingerprint of the key downloaded by curl. 2. Add repo echo "deb http://deb.debian.org/debian buster-backports main" |sudo tee /etc/apt/sources.list.d/deb_buster_backports.list run apt update/upgrade Install tor, I did this by: apt-get install -o Dpkg::Options::="--force-confold" -y tor

5. Februar 2021 · 1 Minute · utzer

SSH config, ssh via jumphost and autossh (ssh to Tor hidden service)

This will be a short post about the above mentioned parts, lets start right away. SSH config Every user can have a SSH client configuration file, it is located in ~/.ssh/config (where config ist the filename). My SSH config file, I guess as many other users file, grew over time. Lets start with some things from my file. There is the Host part, it usually contains the name you want to assign to the host to use it later on. Tipp, use some short and of course unique name. ...

14. April 2019 · 8 Minuten · utzer