There are 3 ways to copy files between different Linux, the first is FTP, which is one of the Linux installation FTP Server, so you can use the FTP client program to copy files. The second method is to use the Samba service, similar to the Windows file copy method to operate, relatively simple and convenient, the third is to use the SCP command for file replication.
SCP is a file copy with security, SSH-based login. Easy to operate, for example, to copy the current file to a remote other host, you can command the following.
scp/home/daisy/full.tar.gz [Email Protected]:/home/root
You will then be prompted to enter the login password for the root user of the other 172.19.2.75 host, and then copy is started.
It is also easy to copy files from the remote host to the current system if you want to do this in reverse.
SCP [Email protected]:/home/root/home/daisy/full.tar.gz
How SCP commands are used in the Pppcloud cloud server