I have two Ubuntu machines, one of which has a large number of files.

How can I copy the files from one machine to another effectively? I would like to copy only the delta files and not all the files every time.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Try using rsync

Guides:

http://www.cyberciti.biz/tips/linux-use-rsync-transfer-mirror-files-directories.html

http://everythinglinux.org/rsync/

http://www.thegeekstuff.com/2010/09/rsync-command-examples/

It can perform differential uploads and downloads (synchronization) of files across the network, transferring only data that has changed. The rsync remote-update protocol allows rsync to transfer just the differences between two sets of files across the network connection.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.