Ask HN: What do you use to backup your data?
21–30 of 41 posts
Re: Ask HN: What do you use to backup your data?
#22The file server is 2 TB x2 RAID 1, so there's some protection there - one of the disks actually just failed, and I was able to successfully recover.
I only run hobby sites, so the databases on those I'm currently just backing up to AWS.
Re: Ask HN: What do you use to backup your data?
#23Re: Ask HN: What do you use to backup your data?
#24I use it to store my distant backups on http://rsync.net, which is most likely the best storage service I have ever used (simple, fast, reliable, relatively cheap and run by smart + nice people).
Re: Ask HN: What do you use to backup your data?
#25Independent of the tm backup, I also mirror my disk with carbon copy cloner every night.
Carbon Copy Cloner was one of the main reasons why I stayed with macs. A great software that is perfectly supplemented with Time Machine, IMHO.
Re: Ask HN: What do you use to backup your data?
#26Movies, Music, eBooks live on a WD World Book and aren't backed up. (no real need since I can download them all again)
The few servers that I managed are backed up by http://sourceforge.net/projects/automysqlbackup/ and pushed to an s3 bucket. Code is always in a Git repo so no need. Images and other data from user uploads are backed up by http://s3tools.org/s3cmd
http://www.dokuwiki.org/dokuwiki is used to keep track of changes I make to my.conf, http.conf, php.ini, etc. Backup is done by s3cmd again.
Images of my son are saved using AeroFS since there's no size limit.
Business documents are stored using Dropbox and Google Docs (nothing too confidential)
For documents that are pretty important, they are stored off line on a printed piece of paper and stored in a filing cabinet. IRS documents, Business contracts, etc.
Re: Ask HN: What do you use to backup your data?
#27Dirvish
I run dirvish at my backup server and it fetches the data from other servers over ssh. So I have a central place to configure and monitor my backups.
(I guess that everyone at one point was about to restore some backup, only to find out that this specific server stopped pushing it's nightly backups ... somewhere last year)
Re: Ask HN: What do you use to backup your data?
#28Dirvish
Dirvish is really nice (if you know how to fire up a text-editor) I run dirvish at my backup server and it fetches the data from other servers over ssh. So I have a central place to configure and monitor my backups. (I guess that everyone at one point was about to restore some backup, only to find out that this specific server stopped pushing it's nightly backups ... somewhere last year)
Re: Ask HN: What do you use to backup your data?
#29Before that I tried Mozy, iDrive, and a straight Time Machine backup. After multiple external HD failures and frustrating experiences with Mozy and iDrive (100% CPU for multiple weeks on end, extremely slow upload), I've been quite pleased with Arq.
On my non-Mac machines I just use s3cmd sync: http://s3tools.org/s3cmd-sync. I guess I could use JungleDisk, but why layer abstraction on something as simple as a file copy? :)