formats

Rsync Over SSH

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

formats

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

formats

SSH Key Pair to Login Without Password

Published on June 25, 2010, by + in linux, sysadmin.

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

formats

Encrypt web traffic through ssh tunnel

Published on June 22, 2010, by + in linux.

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

Home Posts tagged "ssh" (Page 2)