Ask HN: How do you back up your data?
21–30 of 60 posts
Re: Ask HN: How do you back up your data?
#22# Principles
Back up everything. Preferably to the cloud and to a local disk. Automatically.
You should test restores, but you probably wont. Have two independent backup methods for every piece of data.
You should be able to be up and running to last day's backup within an hour or so.
# Personal
CrashPlan: I want to backup every version of every file on my local computer to a local disk and cloud storage.
SuperDuper: I also want to have bootable nightly images of my machine in case I need to restore immediately.
CloudPull: I want to have a local copy of any Google file I have (Docs, Gmail, Calendar)
IFTTT to DropBox: And whenever possible, I want to have a copy of any other cloud-based service (e.g., Instagram)
# Servers
Linode Backup: Turnkey and presumably the Linode folks are smarter than I am.
Duplicity to S3: In case Linode folks aren't that smart, I will have nightly backups of everything.
Re: Ask HN: How do you back up your data?
#23Re: Ask HN: How do you back up your data?
#24That is not a backup, that's an external storage. A backup should only be accessed to sync data (preferably with versioning, so the old data is not overwritten) and to recover lost data.
My computers are synchronized with a home server that has mirrored disks, then the home server is backed up to cloud and to my parent's desktop (off-site backup). The backed up data has ~2TB (mainly photos, private git repository, documents).
I use CrashPlan for the cloud and off-site synchronization. With a free account you can backup data to another computer (yours or a friend's). With a paid account you can backup to their cloud storage and you can get more things to tweak. You can provide your own encryption keys, so the data should be safer (as long as you don't loose the private key). The best thing is that it offers file versioning (even with a free account, but you don't get some of the advanced settings for that), so if something really bad happens - like a ransomware virus, that encrypts your files - you can still recover the older version. The only issue is that the application needs Internet access even when using it locally - so if something happens to your account, or you don't have Internet access, you cannot easily[1] access your data.
[1] http://crashplan.probackup.nl/remote-backup/support/q/how-to...
Re: Ask HN: How do you back up your data?
#25MBA and the data part of the USB drive backed up with Crashplan ($5/month)
Also have some stuff on Dropbox (free account) also backed up to Crashplan - it's mostly just stuff I need in other places.
All my documents on Google Drive, don't back that up because I don't think you can (the desktop client doesn't give access to actual documents). Additionally most of best pictures are either on Flickr or Facebook.
Re: Ask HN: How do you back up your data?
#26 # rotate daily backups
ssh -i $SSHKEY -q $BACKUPHOST rm -rf $BASEDIR/home.3
ssh -i $SSHKEY -q $BACKUPHOST mv $BASEDIR/home.2 $BASEDIR/home.3
ssh -i $SSHKEY -q $BACKUPHOST mv $BASEDIR/home.1 $BASEDIR/home.2
ssh -i $SSHKEY -q $BACKUPHOST \
"(cd $BASEDIR/home.0 && find . -print | cpio -dplm $BASEDIR/home.1)"
# backup
TMPFILE=`mktemp /tmp/excludeXXXXXXXX`
cat $TMPFILE
quota.user
.cache
EOF
rsync -Lazv -e "ssh -i $SSHKEY" --update --delete \
--exclude-from=$TMPFILE $HOME $BACKUPHOST:$BASEDIR/home.0
rm $TMPFILERe: Ask HN: How do you back up your data?
#27I've got terabytes of data and it works great. The only thing I want is a third, off-site, non-cloud backup. I don't have a solution for that, but having my data in 3 places, one of which is the cloud, is good enough for me for now.
Re: Ask HN: How do you back up your data?
#28Re: Ask HN: How do you back up your data?
#29Re: Ask HN: How do you back up your data?
#30This is not answering the question, but someone please build this for me (and hopefully a million others): Simple live off-site backup for worst-case scenario. I buy a pair of devices (e.g. Tonidos) with attached commodity HDDs that I split with a friend. He plugs his into his network, I plug mine in. I dump files to my local device, but they actually get buffered and then stored overnight at his place, and vice-vers…