TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Rclone: Rsync for cloud storage – CLI to sync between cloud storage providers

246 pointsby giladover 3 years ago

20 comments

dangover 3 years ago
Past related threads:<p><i>Rclone syncs your files to cloud storage</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=29213024" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=29213024</a> - Nov 2021 (8 comments)<p><i>Rclone – Sync files and directories to many cloud storage providers</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=22791036" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=22791036</a> - April 2020 (100 comments)<p><i>Rclone – Rsync for Cloud Storage</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=21906779" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=21906779</a> - Dec 2019 (3 comments)<p><i>Rclone: rsync for cloud storage</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12398303" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12398303</a> - Aug 2016 (129 comments)<p><i>Rclone: rsync for cloud storage</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12049507" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12049507</a> - July 2016 (1 comment)<p><i>Rclone – rsync for cloud storage</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12045729" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12045729</a> - July 2016 (3 comments)<p><i>Rclone – rsync for cloud storage</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=11404178" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=11404178</a> - April 2016 (1 comment)
aborsyover 3 years ago
Rclone is popular for good reasons. I have even replaced Dropbox with rclone nowadays. Why replacing Dropbox sync, one may ask?<p>Because:<p>* Rclone offers client side encryption (with a good algorithm and from a good library). Cloud providers usually offer server side encryption, but don’t want to offer client side encryption.<p>* You can mount the remote. Files don’t have to exist on client’s side to occupy space. This tool mounts anything!<p>* You learn one tool and use it everywhere<p>* It’s is under user’s control. You run it with a schedule that you want. I don’t have to run a closed source app continuously scanning my computer<p>* Robust, feature full, open source (especially for verification of encryption), large community for getting help, and under heavy development Rclone combined with Restic is how I manage my data in the cloud.
评论 #29440105 未加载
评论 #29439984 未加载
评论 #29440181 未加载
评论 #29439695 未加载
bckygldstnover 3 years ago
Rclone is fantastic. It&#x27;s much easier to use that most of the cloud storage APIs themselves.<p>Plus rclone makes it easy to migrate between providers. I just moved a backup process from Gcloud to B2 now my side business is growing up: you can start with whatever storage is free&#x2F;convenient then switch to something more mature later with minimal effort.
评论 #29437255 未加载
评论 #29436454 未加载
rsyncover 3 years ago
Here is a keystroke-by-keystroke HOWTO that we wrote last year:<p><a href="https:&#x2F;&#x2F;rsync.net&#x2F;resources&#x2F;howto&#x2F;rclone.html" rel="nofollow">https:&#x2F;&#x2F;rsync.net&#x2F;resources&#x2F;howto&#x2F;rclone.html</a><p>and although the example is S3 &lt;-&gt; rsync.net, it is <i>not necessarily</i> rsync.net-specific.<p>You could use this HOWTO&#x2F;workflow for any two targets.
评论 #29436785 未加载
评论 #29440541 未加载
评论 #29436652 未加载
divbzeroover 3 years ago
I like rclone for the wide array of storage options [1] plus a special crypt remote [2] that provides client-side encryption for any of the other storage options. There is also a browser GUI you can spin up locally if that floats your boat [3].<p>[1]: <a href="https:&#x2F;&#x2F;rclone.org&#x2F;overview&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rclone.org&#x2F;overview&#x2F;</a><p>[2]: <a href="https:&#x2F;&#x2F;rclone.org&#x2F;crypt&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rclone.org&#x2F;crypt&#x2F;</a><p>[3]: <a href="https:&#x2F;&#x2F;rclone.org&#x2F;gui&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rclone.org&#x2F;gui&#x2F;</a>
glitchcrabover 3 years ago
Nick Craig-Wood (ncw) was the CEO of the last company I worked for, and I consider it a privilege to have worked for him. He&#x27;s one of the smartest people I&#x27;ve ever met, and an incredibly nice person too. I have many fond memories of the annual staff barbecue in his garden.
评论 #29440080 未加载
评论 #29436308 未加载
modelessover 3 years ago
I once made a software distribution system for software with thousands of files in a huge directory tree using rclone. I&#x27;d upload it all to S3 and then clients could run an update script that used rclone to sync just the changed files. No server needed. A better solution probably exists but I couldn&#x27;t find any other system at the time that could work directly from S3 or any other dumb file host and still selectively sync only changed files.
评论 #29437275 未加载
folliover 3 years ago
Since we&#x27;re on the topic: Which cloud provider do you recommend for backup of personal files?
评论 #29440948 未加载
评论 #29436340 未加载
评论 #29440351 未加载
评论 #29436735 未加载
评论 #29436403 未加载
评论 #29436429 未加载
评论 #29436313 未加载
techisnotmagicover 3 years ago
I&#x27;m not sure why this bothers me so much but it does not &quot;sync between cloud storage providers&quot;.<p>I don&#x27;t really know how this misunderstanding is so pervasive, even among the HN crowd, but no, no amount of magical code can make it possible to directly migrate between S3 and Google Drive. It&#x27;s going to download, and upload to sync.<p>This is even reflected in the project&#x27;s description line, which is more accurate than the current HN headline: <i>Rclone (&quot;rsync for cloud storage&quot;) is a command-line program to sync files and directories to and from different cloud storage providers.</i><p>That having been said, it&#x27;s of course invaluable software. Mounting 10TB of Google Drive into a Raspberry Pi running Plex is still something that feels like it should be harder to accomplish than it is.
评论 #29437932 未加载
评论 #29437644 未加载
评论 #29438531 未加载
sbt567over 3 years ago
I&#x27;m using rclone beta right now for its bisync feature. This was the last missing piece that I badly needed to synchronize my notes. And I&#x27;m very happy that it&#x27;s finally implemented. Kudos to all rclone contributors!
评论 #29440106 未加载
stavrosover 3 years ago
Rclone is excellent, I use it to deploy my static site to Neocities and it&#x27;s worked excellently for ages.
barelyusableover 3 years ago
Love this tool. Along with Golang&#x27;s Excelize library I use it to build a bunch of tools
ehPRethover 3 years ago
Love this software, use it for everything from mounting cloud storage to syncing backups
xanaxagorasover 3 years ago
Rclone is great! All of my duplicati backups go to S3, then in the run-script-after script rclone copies them from S3 to B2.
zujover 3 years ago
I have used Rclone for both personal file backup and production data. It is dead simple and amazingly robust.
petreover 3 years ago
I wonder if I could use it with a rsync endpoint? It&#x27;s not listed in the backends.
gary_0over 3 years ago
Past discussions:<p><a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12398303" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=12398303</a> (5 years ago)<p><a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=22791036" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=22791036</a> (2 years ago)
guilhasover 3 years ago
Is this a good multi threaded local&#x2F;ssh alternative to rsync?
评论 #29436660 未加载
joshendersover 3 years ago
“Rclone” and not “Csync”? Missed opportunity! ;)
tttsxhubover 3 years ago
Does it support S3 Glacier?
评论 #29440120 未加载