I’m particularly interested in low bandwidth solutions. My connection to the internet is pretty rough 20mbps down and 1mbps up with no option to upgrade.

That said, this isn’t limited to low bandwidth solutions.

I’m planning on redoing my entire setup soon to run on Kubernetes followed by expanding the scope of what my server does (Currently plex, a sftp server and local client backups). Before i do that i need a proper offsite backup solution.

  • 486
    link
    fedilink
    11 year ago

    Any backup software that supports incremental backup should work similarly bandwitdth-wise. I like Restic. You can even do incremental backups with plain rsync, if you want. If your data does not change much, than you should be okay. For the initial backup run it would be helpful if you have physical access to the remote location so you can bring a full backup there without having to upload it through your slow uplink.

    • PrettyFlyForAFatGuyOP
      link
      fedilink
      11 year ago

      Definitely an option if I’m a bit more selective with what i back up. At the moment for the client backups i’m zipping and encrypting the entire home folder for each client once a week. I could probably write something that looks for file changes and uploads just those

      • @socphoenix@midwest.social
        link
        fedilink
        English
        2
        edit-2
        1 year ago

        rsync is your friend. No need to write something that already exists! A simple “rsync -aP /directory/folder/ /backup/solutionFolder” is all it really needs. the / at the end of the first directory search tells it to backup the contents inside the folder to the folder listed after the space.