Hi, you may like to copy whole folders from one server to another.
as long your both server support ssh you should try
scp -r username1@xxx.xxx.xxx.xxx:/home/folderorg username2@yyy.yyy.yyy.yyy:/home/folderdest
its very fast, because you dont have to copy the files to your local pc first.
Just replace username1 with the username from your first server
and xxx.xxx with the IP from your original server
and username2 with the username from your first server
and yyy.yyy with the IP from your destination server
you may also login to your original server and just do
scp -r /home/folderorg username2@yyy.yyy.yyy.yyy:/home/destfolder
have fun

Loading ...