1
620hun
5y

I want to automatically backup all my local files to the cloud that have been copied onto my Linux server a week or longer ago. How do I do that? My idea is that if something goes wrong locally I have a week to restore from the cloud.

Comments
  • 0
    The only question is how I filter out the files I need to upload, the rest is already setup.
  • 2
    @620hun What's your local OS?

    In Linux and MacOS, using find -mtime +7 would work. Refer to the find command man page for details. No idea about Windows.
  • 0
    Still waiting on backblaze for personal cloud backup on Linux, smh.
  • 1
    I use rsync.net with Borg. No problems whatsoever so far.
  • 1
    @dmoa I gave up on them. Went with Google business instead. 1 TB with no upper cap for £10 per month and you get the entire G Suite. Works with rclone.

    @ethernetzero exactly what I needed, thanks!
Add Comment