Local backup so GSuite Drive


WannabeMKII

Recommended Posts

I'm looking for a way to replicate what I have on GSuite Drive down to UNRAID as a backup. Doesn't need to be 2-way sync or anything fancy, just a straightforward copy of everything on Drive. If I can keep version history and deletions, great, if not, no problem. I'd just like a local copy.

 

I don't really want to run a VM just for this, would prefer a Docker or similar and needs to be easy to set up ?

 

Is there anything simple I can use?

Link to comment

you could use the duplicati docker, although personally I found it a bit buggy but other users have had more joy.

 

I currently use the rclone plugin to do a very simple copy job via the user scripts plugin every night that syncs my files to a rclone remote and moves deleted files to a backup folder that is purged after 365 days, so I have a copy of anything deleted

 

rclone sync /mnt/user/dzs backup:dzs --backup-dir backup:old -v --drive-chunk-size 512M --checkers 4 --fast-list --transfers 4 --bwlimit 6000k
rclone sync /mnt/user/nextcloud backup:nextcloud --backup-dir backup:old -v --drive-chunk-size 512M --checkers 4 --fast-list --transfers 4 --bwlimit 6000k
rclone sync /mnt/user/public backup:public --backup-dir backup:old -v --drive-chunk-size 512M --checkers 4 --fast-list --transfers 4 --bwlimit 6000k
rclone sync /mnt/disks/sm961/iso backup:sm961/iso --backup-dir backup:old -v --drive-chunk-size 512M --checkers 4 --fast-list --transfers 4 --bwlimit 6000k


rclone delete --min-age 365d backup:old

 

Link to comment

Not a big fan of running something that is buggy. I really want to set up something that is set and forget without having to worry about it's ongoing reliability.

 

I've heard lots about rclone / rsync, but to be honest, that's on more of the complicated level for me... Unless I can get some hand holding setting it up, then knowing it's just working?

 

Are there guides for such a thing?

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.