Hello everyone,
I’m trying to set up an automated backup of one of my important datapools to ProtonDrive.
Since ProtonDrive does not offer a native cloud sync feature like Google Drive, Backblaze, or OneDrive, I decided to try using rclone for the task.
My goal is to always have the latest version of my datapool backed up to ProtonDrive. This means that whenever I add, delete, or move files and folders on my local datapool, these changes should also reflect in ProtonDrive.
The folder I want to back up is only about 1.3 GB in size, so I thought it would be a good idea to automate this with a CronJob. I set up the command to run every night at 3 AM, where rclone would first delete everything in the destination folder on ProtonDrive and then upload the updated contents of my datapool.
Here’s the command I came up with:
rclone purge protondrive:/... && rclone copy /mnt/... protondrive:/NAS-Backup --create-empty-src-dirs --transfers=4 --checkers=8 --progress
However, I’m getting the following errors:
Failed to copy: 422 POST https://fra-storage.proton.me/storage/blocks: Operation failed. Please try again. (Code=200501, Status=422)
Does anyone have any ideas on what might be causing this or how to resolve it? Any help would be greatly appreciated!
Thank you in advance.
Best regards