rclone version
, I guess you've provided S3Drive version? 1.6.5
, I can't recall exactly, but there was some issue with S3Drive <> Rclone compatibility below that version.
Would you be keen to upgrade your Rclone version and see if that config works for you?1.6.5
, I can't recall exactly, but there was some issue with S3Drive <> Rclone compatibility below that version.
Would you be keen to upgrade your Rclone version and see if that config works for you? directory_name_encryption = true
- do you also have filename/filepath encryption enabled on the S3Drive side?directory_name_encryption = true
- do you also have filename/filepath encryption enabled on the S3Drive side? 1.6.5
, I can't recall exactly, but there was some issue with S3Drive <> Rclone compatibility below that version.
Would you be keen to upgrade your Rclone version and see if that config works for you? /home/user/.ssh
folder. Thanks./home/user/.ssh
folder. Thanks. rsync -av --exclude='cache' --exclude='build' source dest
to sync data to other local machine and then archive things and send it compressed and password protected to Backblaze:
7z -mhc=on -mhe=on -pVeryHardPasswordHere a $folder.7z /home/tom/$folder/*
AWS_ACCESS_KEY_ID=<key> AWS_SECRET_ACCESS_KEY=<access> aws --endpoint https://s3.eu-central-001.backblazeb2.com s3 cp $folder.7z s3://my-backup-bucket
I use S3Drive to backup media from my phone to cloud and for online access to other media files (mostly older photos).
I am yet to find perfect backup strategy for photos, but I would say at this stage bigger problem is to keep things tidy, organized and deduplicated.
Eventually I will get to that. (edited)server_side_encryption = aws:kms
in the config, which we've checked solves the issue, the challenge is that we don't know if user actually enabled that setting on the iDrive side.
The quick fix is to turn off the: "Default encryption" setting for the iDrive bucket, then the mount shall upload objects to iDrive without issues.
We need to spend more time on this to research if we can detect this setting or whether we need to implement prompt/question for the user and provide configurable setting. (edited)server_side_encryption = aws:kms
in the config, which we've checked solves the issue, the challenge is that we don't know if user actually enabled that setting on the iDrive side.
The quick fix is to turn off the: "Default encryption" setting for the iDrive bucket, then the mount shall upload objects to iDrive without issues.
We need to spend more time on this to research if we can detect this setting or whether we need to implement prompt/question for the user and provide configurable setting. (edited)