I'm new to rsync.
Lots of people said rsync is excellent in everything
how about copying lots of files in more than 10 GB, lots of directory at once?
Is rsync strong enough for this?
I'm new to rsync.
Lots of people said rsync is excellent in everything
how about copying lots of files in more than 10 GB, lots of directory at once?
Is rsync strong enough for this?
Yes, I use rsync to backup about 90GB of data over ADSL connections and it's always rock solid. If you are transferring big files you might want to use the "--partial" flag so that way partially copied files are resumed rather than deleted and started again if the connection is interrupted.
Yes. Rsync is prefectly capable of this. It will also help you if you need to run the transfer again, or abort it and resume later, as it will not recopy what is already there.
If you have reliable modification timestamps on your data, you may want to disable checksumming to speed up the process.
Yes, rsync is absolutely capable of multi-gigabyte sustained transfers, as well as large lists of files.
If you can, allways try to compress your information first.
For large files, Rsync is able to resume transfers by using ‑‑partial and ‑‑inplace.
Take a look on this useful y detailed explanation: Backup and transfer your data using rsync