CloudBerry is pretty good, I use it for my offsite backups, and to send data up to S3. I also use Restic
, which is free / open source software, command line based, and I have to say while CloudBerry has never given me any integrity problems I trust Restic more.
Restic is easy. Here's how I backup from my Windows PC to S3 (note that you have to set up the keys and the policy associated with the keys in advance)
First you have to set up the repo
set RESTIC_PASSWORD=abc123
restic.exe init --repo D:\BackupsLocal\Restic\
restic.exe init --repo s3:s3.amazonaws.com/s3-bucket-name
This runs the backup to S3
set AWS_ACCESS_KEY_ID=AKIAXXXXXXX
set AWS_SECRET_ACCESS_KEY=xxxxxxxxxxxxxxx
set RESTIC_PASSWORD=abc123
restic.exe -q --repo s3:s3.amazonaws.com/s3-bucket-name backup c:\Documents
Here's how I backup from my C drive to my D drive
set RESTIC_PASSWORD=abc123
restic.exe -q --exclude C:\Photos\Rejects --exclude C:\Videos\Rejects --exclude "C:\Photos\Lab Test Prints" --repo D:\BackupsLocal\Restic\ backup R:\Photos
NB:
- Multiple excludes
- Repo is where the data is stored
- "backup" is the command
- Immediately after "backup" is the path to backup
You can backup to B2 with the info
here
(
tutorial
).