Cloud Sync BackBlaze

jon.the.wise

Cadet
Joined
Apr 10, 2019
Messages
2
Hey there, I'm just following up on this; has anybody tried to limit the bandwidth AND encrypt said backups? (encryption being available in the GUI now) I'm just trying to get a job going to backup my shared documents folder, and it completely saturated my connection for a couple days before I had to kill it, so I need to figure out a better solution... I guess I'll go read the rclone documentation
 

jon.the.wise

Cadet
Joined
Apr 10, 2019
Messages
2
Alright, so I followed this tutorial to understand how rclone handles encryption, and then basically built upon the commands you have for throttling: https://www.andyibanez.com/rclone-encryption-tutorial/

Once I had my B2 remote setup and then setup a B2_Crypt remote, then I took your commands from above and came up with this:

/root/.config/rclone/rclone.conf
Code:
[B2]
type = b2
env_auth = false
account = XXX
key = XXX
endpoint =

[B2_Crypt]
type = crypt
remote = B2:MyBucketName/Encrypted
filename_encryption = standard
password = XXX
password2 = XXX



Command:
Code:
rclone --bwlimit 128 -v --stats 1s sync /path/to/sync B2_Crypt:/


Since I used rclone to build the config, and it was stored in it's standard location, I didn't need to specify the --config value. Also I will remove the -v and --stats 1s when I put it into a cron.
 
Top