SSH
Creating SSH-key
To generate an SSH-key, enter the following command on the "home" terminal: ssh-keygen -t rsa -...
SSH Tunnel
tunnel with ssh (local port 3337 -> remote host's 127.0.0.1 on port 6379) ssh -L 3337:127.0.0.1:6...
Using `dd` and `ssh` to copy a disk image over a network
dd if=/dev/sdX | ssh user@remotehost "dd of=ops-tools.img" Another Way On the Sourcemachine tar...