Rsync Over SSH | Here is a quick and easy way for transferring files via rsync over ssh. rsync [options] ssh [local source directory] [user@server]:[destination on server] Example: # rsync -avPz /home/bob/workstuff bob@192.168.1.125:~/ a (recursive, hidden files incl, etc. – the standard rsync option) v verbose P show Progress z compress data during transfer This will make a copy
shellinabox With Apache Authentication Over HTTPS 443
shellinabox With Apache Authentication Over HTTPS 443 | shellinabox is an amazing web-based SSH client. It is very handy if you are not on a machine with a good terminal app, are filtered to not having port 22 available, or other uses such as a good web based shell to use while on the ChromeOS notebook. This guide shows how to setup and
SSH Key Pair to Login Without Password
SSH Key Pair to Login Without Password | How can I setup ssh to login without having to type the password? You must first generate what is known as a key pair, then copy the public key to your server. 1. Run this command: ssh-keygen -t dsa …which will be followed by: Generating public/private dsa key pair. Enter file in which to save
Encrypt web traffic through ssh tunnel
Encrypt web traffic through ssh tunnel | How do I tunnel my web browsing through an encrypted ssh connection? This requires a remote linux server which you have ssh access! This is useful when you are roaming on public wifi and want to keep your traffic encrypted and safe! Just issue this command to login to your remote server: ssh username@yourserver.com -D
