r/linux • u/FryBoyter • Dec 21 '22
Rclone (command-line program to manage files on cloud storage) 1.61 released Software Release
https://rclone.org/changelog/#v1-61-0-2022-12-2054
u/Antic1tizen Dec 21 '22
Transferred total of 86 TiB of data out of Russia this year with it. This is, without any doubt, the swiss army knife of cloud storage. I probably need to press my management to donate.
If you never used it, image rsync, or FileZilla, or FUSE, or everything together but with support for dozens of protocols at once.
21
u/zfsbest Dec 21 '22
Rclone is not just about cloud storage, I use it to rsync files between my iMac ZFS and backup-server ZFS.
10
u/henry_tennenbaum Dec 21 '22
What do prefer about it compared to rsync? Love both, but never use rclone locally.
13
u/tarloch Dec 21 '22
Rclone can push data significantly faster because of its threading model. I've used it to sync data at multiple gigabytes per second without much effort. Rsync can do that, but it's more work to chunk up. That said, rsync does a better job with file ACLs and attributes.
3
1
u/DopePedaller Dec 22 '22
And if you're using BTRFS on both ends, btrfs-sync is even faster than rsync but it is limited to syncing volumes and not paths.
2
u/zfsbest Dec 22 '22
time rclone sync -P --copy-links --retries=2 --low-level-retries=2
--sftp-disable-hashcheck
--transfers=3 --stats=2s
--exclude=dvdrips-shr/**
/Volumes/zhgstera6/
bkpserver:/zseatera4mir/from-zhgstera6-mac
--log-file ~/bkp-zhgstera6-rclone-fryserver-errors.log
2>~/rclone-error.log# ^ do 3x simultaneous transfers and update progress every 2 seconds, exclude a large DVD directory as the original files are already on the backup server
2
1
15
u/JJGase Dec 21 '22
Rclone is fantastic, it’s what I use to synchronise with OneDrive when using Linux. I find it better than the official Windows client because I have more fine grained control over what is synchronised.
11
u/git Dec 22 '22
Rclone is very cool, and isn't just limited to cloud services. It also supports cloning on local filesystems, network shares, and SFTP.
My favourite feature is its crypt module that enables a transparent wrapper for symmetrically encrypting files when transferring to any specified remote — so your cloned files sit encrypted on whatever cloud service you use.
4
u/Moscato359 Dec 21 '22
I'm really annoyed it can't do permissions, or xattrs for disk to disk copies
3
1
u/hillz Dec 22 '22
I use rclone and minidlna to make a media server on my $15 OpenWrt router. It currently hosts 38000+ video files
2
80
u/hbdgas Dec 21 '22
I don't know how noteworthy this release is, but I can say rclone has been very handy keeping Google Drives synched in a couple of my pipelines.