Slashdot Mirror


Best Online Remote Backup Service w/Linux Client?

technocraft asks: "I've been searching for an online service to backup data from my Linux file server and have come up with nothing. For many users, Carbonite looks to be a great solution: Affordable, with 'unlimited' capacity. Unfortunately for me, you can only backup from Windows XP and explicitly NOT from external drives or network mapped drives (like my file server)." Is anyone aware of an online backup services without these restrictions?

5 of 70 comments (clear)

  1. How do you trust? by polymath69 · · Score: 2, Interesting
    Presumption: Backups are intended for crash or loss recovery.

    Presumption: After a crash or loss, you may not have access to any of your own encryption keys.

    Query: How can you possibly trust any third party not to take liberties with personal or business information entrusted to their care?

    I really think you're better off taking care of backups in-house, along with of course keeping some of those same backups off-site in a secure manner.

    --

    --
    I don't want to rule the world... I just want to be in charge of mayonnaise.
  2. Re:This looks pretty good by swillden · · Score: 2, Interesting

    That sounds really cool, except I'm surprised at how high the price is. Between photos and home movies, I have about 100GB of data I'd really like to get backed up offsite, and it grows by about 2GB per month. I have some other stuff I want offsite as well, but it's very small.

    So, according to their pricing scheme, it would cost me $126 per month to store my data, and the price would increase by about $4 each month as my data grows. Storing my data for a year would cost me nearly $1,800. That probably makes sense for some people, but certainly not for me. It's much cheaper for me to buy a machine full of drives to put at my brother's house and then rsync the data there. Actually, that's exactly what I'm looking into doing -- most of my family has high-speed Internet connections, so we're taking inventory of who has how much data they'd like to back up and how much free space they can donate for others to back up to. After we figure that out, we'll buy additional storage where it makes sense and set up automatic over-the-net backups using rdiff-backup and some scripts.

    A commercial solution would be a lot simpler, but at ~$2/GB/month it's priced way too high. For me, anyway. At one-tenth the price, I'd consider it.

    --
    Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
  3. DIY Route might be good in this instance by Kadin2048 · · Score: 2, Interesting

    My reaction to rsync.net was similar. I'd really love to try them out, but I can't come up with any really good ways to justify that kind of expense.

    If you have multiple locations available for your use -- and if you're a home user, who doesn't? (parents, friends, etc.) -- it's a lot cheaper and you can get a lot more flexibility if you take an old PC, put a bunch of drives in it, and set it up somewhere. Then just have your systems replicate to it at night. (Yes, it's not bidirectional if you just use vanilla rsync, so if you have a lot of file churn you'll need to script something to keep the backup from bloating.)

    I guess the 'setup cost' is higher than a managed service like rsync.net, but a minimalist system doesn't even take that long. Install Debian, install rsyncd if it's not already there, and open a port in the firewall for it. (Actually you don't really even need to run it as a daemon, now that I think about it.) WebDAV could take longer, but you'd have to really value your time highly to pay rsync.net's prices in exchange for an afternoon setting up Apache and a couple of cron jobs.

    Personally I just have an old 600MHz Celeron machine that I set up with rsync and ssh/sftp with dyndns, and then traded a friend for a similar system that he had set up. I keep his box in a closet, plugged into my router, and he does the reverse. We both get off-site backups, and the only real cost of ownership is the electricity. (And if I was doing it today, you could get one of those routers that can run Linux from CompactFlash and can mount an external HD via USB 2.0 ... I bet you could get the whole thing down to a few watts that way and under $200.)

    I am normally very skeptical of the DIY route -- it's tough to compete with mass-production in many instances. But I think that this is one situation where even a low-grade geek can toss themselves together something in a day that will be nearly the equal of rsync.net's service, for workstation-backup use. Hopefully the rsync.net guys will adjust their pricing accordingly and make a liar out of me soon, though.

    --
    "Ladies and gentlemen, my killbot features Lotus Notes and a machine gun. It is the finest available."
  4. Re:Poor man's solution by cortana · · Score: 2, Interesting
    You might want to take a look at rdiff-backup.
    rdiff-backup backs up one directory to another, possibly over a network. The target directory ends up a copy of the source directory, but extra reverse diffs are stored in a special subdirectory of that target directory, so you can still recover files lost some time ago. The idea is to combine the best features of a mirror and an incremental backup. rdiff-backup also preserves subdirectories, hard links, dev files, permissions, uid/gid ownership, modification times, extended attributes, acls, and resource forks. Also, rdiff-backup can operate in a bandwidth efficient manner over a pipe, like rsync. Thus you can use rdiff-backup and ssh to securely back a hard drive up to a remote location, and only the differences will be transmitted. Finally, rdiff-backup is easy to use and settings have sensical defaults.
    Basically it's a wrapper around rsync that does two things. First, gives you incremental backups; second, fixes the highly confusing options that control which files are included/excluded in a sync. :)
  5. Re:This looks pretty good by cerberusss · · Score: 2, Interesting

    What I like about these guys, is the use of their canary. When they are forced by the authorities to pass your data, they're probably also forced to keep silent about this.

    So what do they do? They send out a weekly 'canary' saying nothing happened. If something DOES happen, they don't send the canary.

    --
    8 of 13 people found this answer helpful. Did you?