1.
|
What is a SSH Server? |
|
SSH is a secure, encrypted way to make connections to
remote hosts or servers. A SSH server accepts connections from
SSH aware clients and allows them to log into the system as if
they are sitting right in front of it. You can run shell and X based
programs remotely using SSH. |
2.
|
How do I install an SSH Server? |
|
|
3.
|
How do I SSH into a remote Ubuntu
machine? |
|
|
|
Assuming that the remote Ubuntu machine has
installed SSH Server service. Read How do I install an SSH Server?.
Remote Ubuntu machine IP address:192.168.0.1 |
|
4.
|
How do I copy files/folders from a remote
Ubuntu machine into a local machine
(scp)? |
|
|
|
Assuming that the remote Ubuntu machine has
installed SSH Server service. Read How do I install an SSH Server?.
Remote Ubuntu machine IP address:192.168.0.1,
Remote files/folders location: /home/username/remotefile.txt
Local machine save location: . (current directory) |
|
5.
|
How do I copy files/folders from a local machine into
a remote Ubuntu machine
(scp)? |
|
|
|
Assuming that the remote Ubuntu machine has
installed SSH Server service. Read How do I install an SSH Server?.
Remote Ubuntu machine IP address:192.168.0.1,
Local files/folders location: localfile.txt
Remote Ubuntu save location: /home/username/ |
|
6.
|
How do I copy files/folders from a remote
Ubuntu machine into a local machine
(rsync)? |
|
|
|
Assuming that the remote Ubuntu machine has
installed SSH Server service. Read How do I install an SSH Server?.
Remote Ubuntu machine IP address:192.168.0.1,
Remote files/folders location: /home/username/remotefile.txt
Local machine save location: . (current directory) |
-
rsync -v -u -a --delete --rsh=ssh --stats [email protected]:/home/username/remotefile.txt .
|
7.
|
How do I copy files/folders from a local machine into a
remote Ubuntu machine
(rsync)? |
|
|
|
Assuming that the remote Ubuntu machine has
installed SSH Server service. Read How do I install an SSH Server?.
Remote Ubuntu machine IP address:192.168.0.1,
Remote save location: /home/username/
Local file name: localfile.txt |
-
rsync -v -u -a --delete --rsh=ssh --stats localfile.txt [email protected]:/home/username/
|
8.
|
How do I SSH into a remote Ubuntu
machine from a Windows machine? |
|
|
9.
|
How do I copy files/folders from/into a remote
Ubuntu machine from a Windows
machine? |
|
|