This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
Backup / Re: backup on google drive
« on: May 04, 2020, 07:30:54 PM »
You could use rClone to sync your local backup folder(s) to google drive:
https://rclone.org/drive/
Install rclone and
Setup a cron job with something like this:
rclone sync /yourbackupfolder/ remotename:remotebackupfolder
Yourbackupfolder will be synced with google drive every time the cron job is run.
p.s If you delete source folder - yourbackupfolder - files will also be removed from google drive. If you don't want that use:
rclone copy /yourbackupfolder/ remotename:remotebackupfolder
Read the rclone manuals - https://rclone.org/docs/
https://rclone.org/drive/
Install rclone and
Setup a cron job with something like this:
rclone sync /yourbackupfolder/ remotename:remotebackupfolder
Yourbackupfolder will be synced with google drive every time the cron job is run.
p.s If you delete source folder - yourbackupfolder - files will also be removed from google drive. If you don't want that use:
rclone copy /yourbackupfolder/ remotename:remotebackupfolder
Read the rclone manuals - https://rclone.org/docs/
Pages: [1]