Also I typically run the command with only the following switches.
--delete --compress --stats --archive
I have it automated on a linux system via cron so I don't need the progress switch and the archive switch contains several other switches, compress will compress the data prior to sending it across the network.
James
Main Topics
Browse All Topics





by: jmcse1Posted on 2009-09-04 at 07:41:28ID: 25260153
Rsync builds a listing of the source directory first, if the link to your destination READYNAS01::backup is slow then this will take along time. Then rsync compares the files at the byte or delta level for changes. Then it transfers just the changed bytes so it wouldn't have to transfer the entire file, this is what makes rsync fast once you have a copy of the data, however if there are large changes and a slow connection it can still fall behind.
James