TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do you approach and handle your personal backups?

6 pointsby 2pEXgD0fZ5cFover 3 years ago

6 comments

ac2uover 3 years ago
Decide which data is actually important to you and what is merely a pain in the ass if lost.<p>An example of the former is family photos and videos.<p>If you don&#x27;t make the distinction you&#x27;ll inevitably slip up in trying to cover everything.<p>Where you go from here can vary, but a good rule of thumb is: &quot;three is two, two is one, one is none&quot; in terms of copies of data. Redundancy is your friend here.<p>Media taken on my phone is stored on a cloud account as well as the local device, and usually for backups I do the following in order:<p>- External hdd backup<p>- a Blu-ray&#x2F;DVD backup that is stored at a different geographical location from my device.<p>- AWS Glacier in a region on the other side of the world. (You shouldn&#x27;t plan to use this for disaster recovery, it&#x27;s a last ditch hail mary restoration effort and priced as such. Super cheap to store, expensive to retrieve).<p>Again, swap out individual storage mediums&#x2F;services with your own preferences, rsync, tarsnap, whatever. But the general outline remains.
codingdaveover 3 years ago
Asked a few days ago, too: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=29863822" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=29863822</a>
Melatonicover 3 years ago
I have a simple NAS setup at a family members house far away and backups are pushed to that nightly from an internal drive in my machine (internal RAID). I also just sitting on my desk have a drive that gets those same back ups.<p>And then I have a cloud service I pay for that only looks at certain drives &#x2F; folders and backs those up as well.<p>One tool to automate all of this would be nice though - currently running several different ones
simonblackover 3 years ago
Daily snapshots of the system configuration, personal documents and databases sufficient to rebuild the system to where it was last night in less than an hour or so.<p>Daily backups of the &#x27;write once and keep forever stuff&#x27; - videos, music, photos, etc.<p>Three copies of the above backups on external drives.
runjakeover 3 years ago
Linux: Timeshift and tar<p>Windows: File History<p>macOS: Time Machine<p>Then additionally backed up each of the above with Backblaze.
ColinWrightover 3 years ago
I have several large(ish) external USB HDDs, and every few days I cycle them around the machines.<p>* On each disk is a directory called &quot;Backups&quot;;<p>* Within that is a directory for each machine on my home network;<p>* Within each of those is a directory for each time of backup;<p>* Those are named YYYYMMDDhhmmss;<p>* Every hour I run a script;<p>* If the most recent backup is on the same day, the script terminates;<p>* Otherwise the script runs an rsync;<p><pre><code> PREV=$( ls ${Machine} | grep ^20 | sort | tail -1 ) THIS=$NOW rsync -avziPH \ --exclude &quot;.cache&quot; \ --link-dest=..&#x2F;$PREV \ &#x2F;home \ ${Machine}&#x2F;$THIS </code></pre> Thus each disk has backups from each machine. Each backup is complete in and of itself, but for unchanged files has a hardlink to the previous version.