Every year I do a photo book. Used to use apple but they discontinued the service so now it’s snapfish. It’s a lot of work to create but worth it
Ask HN: What is your system for backing up family photos and video?
11–20 of 380 posts
Re: Ask HN: What is your system for backing up family photos and video?
#121. a cronjob on my android phone (via termux) does an rsync to a VPS
2. the VPS has a cronjob to sync everything with S3
3. the frontoffice tool for people to access those photos is my open source Dropbox like frontend that is bring your own backend: https://github.com/mickael-kerjean/filestash My wife and I got an account and family members can access it through shared links.
The S3 bill goes to a shared account so that If I die, the VPS will probably be quickly removed but S3 should stay in there with my wife paying for it.
Re: Ask HN: What is your system for backing up family photos and video?
#13Re: Ask HN: What is your system for backing up family photos and video?
#14Re: Ask HN: What is your system for backing up family photos and video?
#15Re: Ask HN: What is your system for backing up family photos and video?
#16Re: Ask HN: What is your system for backing up family photos and video?
#17The solution I've used for the last 2-3 years: 1. a cronjob on my android phone (via termux) does an rsync to a VPS 2. the VPS has a cronjob to sync everything with S3 3. the frontoffice tool for people to access those photos is my open source Dropbox like frontend that is bring your own backend: https://github.com/mickael-kerjean/filestash My wife and I got an account and family members can access it through shared…
Re: Ask HN: What is your system for backing up family photos and video?
#18My reasoning is that I don't trust Google to not lock me out of my account at some point, so having both a local and a remote backup gives me piece of mind. I periodically check the offsite backup to check that it's still all working. Total cost for about a terabyte of files (it's not only photos and videos) is about $6/month, which is pretty reasonable.
Re: Ask HN: What is your system for backing up family photos and video?
#19TrueNas is configured to automatically backup to Backblaze B2 (which is off-site).
After editing, all the exported JPGs are stored on Google Photos and shared with family. I like Google photos because of the content search and face detection features.
So that's 1 on-site medium and 2 off-site mediums. I used to burn the photos to archival disks and place them in the bank, but it got tedious.
Edit: I use Backblaze because it's the cheapest. Most Photo storage providers don't have support for Raw files. (If anyone has a recommendation let me know).
Re: Ask HN: What is your system for backing up family photos and video?
#20Use Google Photos on my android phone, then use gphotos-sync[0] to sync the files to a hard drive on my DIY NAS. Contents of hard drive are periodically backed up with restic[1] to B2[2]. My reasoning is that I don't trust Google to not lock me out of my account at some point, so having both a local and a remote backup gives me piece of mind. I periodically check the offsite backup to check that it's still all workin…