Rsync vs RClone - What are the Differences and what do they each do best?

preview_player
Показать описание
Rsync vs RClone - What are the Differences and what are they best used for?

Blog Article explaining the differences between Rsync and Rclone.

*** Clustered Networks Product Recommendations ***

*** Contact Clustered Networks ***

DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps supports the channel and allows us to continue to make videos like this. Thank you for your support!

#rsync #rclone #cloudbackup
Рекомендации по теме
Комментарии
Автор

You still did not explain the differences between the 2 and why would someone use one over the other.

RingZero
Автор

rsync is two things:

1. "Tool" to mirror (or clone) a directory structure from one source to another. It is done either locally or via SSH. It is one-way mirror.
2. "Algorithm" used by the tool to do these transfers efficiently when a small change is made. With rsync, if there is a small change to even a big file, very little data other than that change needs to be propagated. This actually makes it less efficient for a big change to a big file but the end result is still the same file.

rclone is like the first number for rsync. It does directory cloning but supports a ridiculous number of backends including some meta (wrapper) ones for compression, encryption, chunking, etc. But it does not do anything with existing data.
If you just have SSH (or local) remotes, which one is better depends on your use case. rsync, to my knowledge, does one transfer at a time while rclone can do many. But rsync can reuse data better than rclone. So if you have big files with small changes, rsync is better. If you have lots of little files, rclone is better.
Obviously if you want to connect to anything but SSH and local or you want encryption, then rclone is your only option.
rclone also has the ability to mount or serve a remote. This is unrelated to the comparison with rsync but is a common use case.

However, It depends on what you’re doing. Rclone can’t resume partial downloads while rsync can. I often use rsync to mirror software repositories with DVD size files, so having to resync an 8GB file over a slow connection is painful. Rsync will let you do that more easily because it can resume from where it was.

fookmyoldboots
Автор

Useful video! Thank you, Ron, and keep going!

vasiovasio
Автор

Many thanks, nice succinct overview, exactly what I was looking for.

nothingtoseehere
Автор

Totally didn't explain the difference between these two things!

JOHNSMITH-verq
Автор

Best explanation out there, thank you so much.

littlboz
Автор

Is it advisable to use both rclone and rsync

tobsowo