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

rsync

This is kind of my cheat sheet, nothing fancy, just what I need. Command: rsync -chavzP --stats 'host:~/RemotePath' ./LocalPath rsync - Befehl -c, –checksum -h, –human-readable -a, –archive -v, –verbose -z, –compress -P - equivalent to –partial –progress –stats - This tells rsync to print a verbose set of statistics on the file transfer ‘host:~/RemotePath’ - is the source path (in this case a remote path. ./LocalPath - ist the destination ...

14. März 2019 · 1 Minute · utzer