Ask HN: How do you backup your linux system?
1–10 of 86 posts
Re: Ask HN: How do you backup your linux system?
#2Re: Ask HN: How do you backup your linux system?
#3Someday I'm going to get a second offsite system to do ZFS backups to, but so far the above has served well. Then again I've been lucky enough to never have a hard drive fail, so the fact that I can lose 2 without losing data is pretty good. I'm vulnerable to fire and theft, but the most likely data loss scenarios are covered.
Re: Ask HN: How do you backup your linux system?
#4Re: Ask HN: How do you backup your linux system?
#52. Clone said drive to an external drive. Detach and lock it in a water/fireproof box when not in use.
3. Swap external drive with another that is stored off site every week or two.
4. Swap with yet another off site external drive less often (a few months).
Re: Ask HN: How do you backup your linux system?
#6Backup takes ~10min for searching 1TB of disk space. The daily diff is typically 6..15 GB, mostly due to braindead mail storage format...
I want to keep it simple but still have full history and diff backup: no dedicated backup tool, but rsync + btrfs. A file-by-file copy is easy to check and access (and the history also looks that way).
If the source had btrfs, I would use btrfs send/receive to speed it up and make it atomic.
I have two such backup disks in different places. One uses an automatic backup trigger during my lunch break, the other is triggered manually (and thus not often enough).
The sources are diverse (servers, laptops, ...). The most valued one uses 2 x 1 TB SSDs in RAID1 for robustness.
All disks are fully encrypted.
Re: Ask HN: How do you backup your linux system?
#7Re: Ask HN: How do you backup your linux system?
#8No workflow, we just use BackupPC ( http://backuppc.sourceforge.net/ ) - cant recommend it enough. Restores are easy, monitoring and automation on different schedules is all built in. It's really great.
It has an ugly looking interface, but the core of the product is super reliable.