Can anyone tell me if there is a method or command to copy folder from one Unix server to another Unix server?
|
feedback
|
migrated from stackoverflow.com May 30 '11 at 17:01
This question came from our site for professional and enthusiast programmers.
|
Yes, there is scp or the former rcp or rsync
The command above will copy | |||||||
feedback
|
|
| |||
|
feedback
|
|
If your folder contains subfolders and more importantly symlinks you want to use rsync:
Or in reverse:
This will do a recursive backup / copy from localfolder to your server while keeping ownership and permissions intact. The solutions suggested so far are valid however scp doesn't handle symlinks by default and will instead create a new copy of the linked file. For detailed usage see man(1) rsync or here | |||
feedback
|