Intermediate
Linux & Shell Scripting
Q75 / 100
What is the purpose of "rsync" and what makes it efficient for synchronizing files?
Correct! Well done.
Incorrect.
The correct answer is A) "rsync" synchronizes files between locations, locally or over a network, using a delta-transfer algorithm that sends only the differences between source and destination, making repeated syncs of large files much faster than a full copy
A
Correct Answer
"rsync" synchronizes files between locations, locally or over a network, using a delta-transfer algorithm that sends only the differences between source and destination, making repeated syncs of large files much faster than a full copy
Explanation
rsync's delta algorithm compares blocks of the source and destination files and transfers only the changed blocks, which is especially efficient for backups and incremental synchronization over slow networks.
Progress
75/100