What is the best way to copy a directory (with sub-dirs and files) from one remote Linux server to another remote Linux server? I have connected to both using SSH client (like Putty). I have root access to both.
-
If you has access of the ftp of the remote server, we can also use **wget** to download like `$wget -r --level=9 --no-parent --reject "index.html*" ftp://
: – Mahendran Sakkarai Jan 19 '15 at 06:25@ /path/to` [Reference1](http://kspace.in/blog/2010/02/22/copy-files-using-wget/) [Reference2](http://stackoverflow.com/a/273776/3049065)
16 Answers
There are two ways I usually do this, both use ssh:
scp -r sourcedir/ user@dest.com:/dest/dir/
or, the more robust and faster (in terms of transfer speed) method:
rsync -auv -e ssh --progress sourcedir/ user@dest.com:/dest/dir/
Read the man pages for each command if you want more details about how they work.

- 1,720
- 2
- 14
- 10
-
1add `-L` to follow symlinks and copy them as regular directories. This link has plenty of useful examples: http://www.tecmint.com/rsync-local-remote-file-synchronization-commands/ – Adrian Aug 15 '14 at 15:09
I would modify a previously suggested reply:
rsync -avlzp /path/to/sfolder name@remote.server:/path/to/remote/dfolder
as follows:
-a (for archive) implies -rlptgoD so the l and p above are superfluous. I also like to include -H, which copies hard links. It is not part of -a by default because it's expensive. So now we have this:
rsync -aHvz /path/to/sfolder name@remote.server:/path/to/remote/dfolder
You also have to be careful about trailing slashes. You probably want
rsync -aHvz /path/to/sfolder/ name@remote.server:/path/to/remote/dfolder
if the desire is for the contents of the source "sfolder" to appear in the destination "dfolder". Without the trailing slash, an "sfolder" subdirectory would be created in the destination "dfolder".

- 381
- 2
- 3
-
2This answer deserves more upvotes and should be the accepted one. Only thing to add were `--progress` if you're fond of it. – sjas Jun 19 '15 at 17:46
rsync -avlzp /path/to/folder name@remote.server:/path/to/remote/folder

- 73,868
- 16
- 141
- 209
Log in to one machine
$ scp -r /path/to/top/directory user@server:/path/to/copy

- 2,166
- 2
- 20
- 40
Use rsync so that you can continue if the connection gets broken. And if something changes you can copy them much faster too!
Rsync works with SSH so your copy operation is secure.

- 644
- 1
- 5
- 12
Try unison if the task is recurring. http://www.cis.upenn.edu/~bcpierce/unison/

- 372
- 1
- 3
- 13
I used rdiffbackup http://www.nongnu.org/rdiff-backup/index.html because it does all you need without any fancy options. It's based on the rsync algorithm. If you only need to copy one time, you can later remove the rdiff-backup-data directory on the destination host.
rdiff-backup user1@host1::/source-dir user2@host2::/dest-dir
from the doc:
rdiff-backup also preserves subdirectories, hard links, dev files, permissions, uid/gid ownership, modification times, extended attributes, acls, and resource forks.
which is an bonus to the scp -p proposals as the -p option does not preserve all (e.g. rights on directories are set badly)
install on ubuntu:
sudo apt-get install rdiff-backup

- 431
- 4
- 3
scp will do the job, but there is one wrinkle: the connection to the second remote destination will use the configuration on the first remote destination, so if you use .ssh/config on the local environment, and you expect rsa and dsa keys to work, you have to forward your agent to the first remote host.
Well, quick answer would to take a look at the 'scp' manpage, or perhaps rsync - depending exactly on what you need to copy. If you had to, you could even do tar-over-ssh:
tar cvf - | ssh server tar xf -

- 14,573
- 6
- 35
- 54
-
If the path is different on the remote end, then: (cd $path; tar xf -) – Allan Wind Sep 16 '08 at 04:40
I think you can try with:
rsync -azvu -e ssh user@host1:/directory/ user@host2:/directory2/
(and I assume you are on host0 and you want to copy from host1 to host2 directly)
If the above does not work, you could try:
ssh user@host1 "/usr/bin/rsync -azvu -e ssh /directory/ user@host2:/directory2/"
in the this, it would work, if you already have setup passwordless SSH login from host1 to host2

- 396
- 2
- 11
-
Rsync does not work this way. If you try it you get the error message "The source and destination cannot both be remote." – Slaven Rezic Feb 12 '19 at 13:41
I like to pipe tar through ssh.
tar cf - [directory] | ssh [username]@[hostname] tar xf - -C [destination on remote box]
This method gives you lots of options. Since you should have root ssh disabled copying files for multiple user accounts is hard since you are logging into the remote server as a normal user. To get around this you can create a tar file on the remote box that still hold that preserves ownership.
tar cf - [directory] | ssh [username]@[hostname] "cat > output.tar"
For slow connections you can add compression, z for gzip or j for bzip2.
tar cjf - [directory] | ssh [username]@[hostname] "cat > output.tar.bz2"
tar czf - [directory] | ssh [username]@[hostname] "cat > output.tar.gz"
tar czf - [directory] | ssh [username]@[hostname] tar xzf - -C [destination on remote box]
As non-root user ideally:
scp -r src $host:$path
If you already some of the content on $host consider using rsync with ssh as a tunnel.
/Allan

- 23,068
- 5
- 28
- 38
If you are serious about wanting an exact copy, you probably also want to use the -p switch to scp, if you're using that. I've found that scp reads from devices, and I've had problems with cpio, so I personally always use tar, like this:
cd /origin; find . -xdev -depth -not -path ./lost+found -print0 \
| tar --create --atime-preserve=system --null --files-from=- --format=posix \
--no-recursion --sparse | ssh targethost 'cd /target; tar --extract \
--overwrite --preserve-permissions --sparse'
I keep this incantation around in a file with various other means of copying files around. This one is for copying over SSH; the other ones are for copying to a compressed archive, for copying within the same computer, and for copying over an unencrypted TCP socket when SSH is too slow.
scp as mentioned above is usually a best way, but don't forget colon in the remote directory spec otherwise you'll get copy of source directory on local machine.

- 2,587
- 3
- 27
- 40