ssh is secure shell
I'll quote wiki (too lazy to type :P)
"Secure Shell or SSH is a network protocol that allows data to be exchanged using a secure channel between two networked devices. Used primarily on Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, which send information, notably passwords, in plaintext, leaving them open for interception. The encryption used by SSH provides confidentiality and integrity of data over an insecure network, such as the Internet."
to quote wiki, screen is –
"GNU Screen is a free terminal multiplexer that allows a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. It is useful for dealing with multiple programs from the command line, and for separating programs from the shell that started the program."
ssh is always there on sane linux enviornment
even NX uses ssh as communication protocol
you can use PuTTY for ssh (go into options and select SSH protocol, port 22)
try this -
$ ssh USER_NAME@_REMOTE_HOST_ADDRESS
where USER_NAME == your username on the remote machine (your seedbox)
and _REMOTE_HOST_ADDRESS == hostname of your remote machine
e.g.
$ ssh [email protected]
you can do all sorts of cool things with ssh
rite now I have tunneled across the continents and I am browsing gay sites with encrypted data transfers (so my ISP doesnt know what the heck I am doing)
I even download torrents using a socks proxy created using ssh 😄
~rR