diff --git a/cheatsheets/ssh b/cheatsheets/ssh index ee40c57..ce11b52 100644 --- a/cheatsheets/ssh +++ b/cheatsheets/ssh @@ -16,5 +16,8 @@ ssh -X -t user@example.com 'chromium-browser' # To create a SOCKS proxy on localhost and port 9999 ssh -D 9999 user@example.com +# -X use an xsession, -C compress data, "-c blowfish" use the encryption blowfish +ssh user@example.com -C -c blowfish -X + # For more information, see: # http://unix.stackexchange.com/q/12755/44856