Ask HN: How do you backup your files without depending on a third party service?
91–100 of 112 posts
Re: Ask HN: How do you backup your files without depending on a third party service?
#92Every few months I manually sync most of the NAS onto an external, encrypted HDD (just bought a fresh 3 TB one) and that will be stashed in other parts of town/out of country with family. It's my last line of defense should the apartment burn down or something. Data might be half a year old, but the last 20 years are mostly there. Also it's not too inconvenient.
Re: Ask HN: How do you backup your files without depending on a third party service?
#93Re: Ask HN: How do you backup your files without depending on a third party service?
#94Re: Ask HN: How do you backup your files without depending on a third party service?
#95Synology or QNAP NAS. They collect backups from all computer in the house, encrypt them and ship the encrypted blobs to AWS Glacier. Synology in particular is a fantastic platform which does way more than a traditional NAS. It's quite polished personal cloud platform (way more so than FreeNAS) and includes hundreds of apps, even the backups into the cloud can be done in different ways. I also place a premium on the f…
I would stay away from QNAP, their quality is terrible. I had a QNAP QVR and it just reeked of insecurity. My friend has one of the smaller Synology boxes with 20TB and it is pretty nice. You can think of it as the Apple of the NAS systems out there, everything just works. However, if you like to tinker with your NAS a bit more, FreeNAS is excellent. It's pretty comforting running zfs over standard RAID, and you have…
I haven't tried Synology in a long time. I'm looking to get my few TBs off of the QNAP and sell it in favour of something custom built.
Re: Ask HN: How do you backup your files without depending on a third party service?
#96Re: Ask HN: How do you backup your files without depending on a third party service?
#97I have a 4TB Hard Drive attached to an OpenWRT router (Rasberry Pi's are also a popular choice). The router exposes a locked down SSH port (SFTP only) through a cheap $5 a month VPS. I also use Jottacloud [1] who provide unlimited (yes unlimited) storage for 7.5 EUR a month. Based in Norway, they keep an up to date warrant canary. Client side, I backup to both of these services using Duplicati [2] which offers client…
Jottacloud sounds interesting, how do you integrate with it, doesn't seem to offer any standard API's besides their own CLI.
Re: Ask HN: How do you backup your files without depending on a third party service?
#98If you’re tech savvy and want the easy answer then check out Tarsnap[1]. If you’re tech savvy and want to save a few bucks by doing it yourself, check out borg[2]. You’ll need to set up an external server for it but at scale (TB) it’s an order of magnitude cheaper than Tarsnap. Regardless of off site storage I’d suggest also buying two large USB drives and formatting them with LUKS. Keep them offline and only sync th…
Looks promising. Though I wish apps like Borg/Restic had functional GUIs, even though minimal. In fact preferably minimal. Just notifications, list of archives, info about data backed up and actual space used, scheduling etc.
Re: Ask HN: How do you backup your files without depending on a third party service?
#99If you do that (just rsync every day), what happens when your primary storage gets corrupted, and you rsync the corrupted copy over your USB backup? Much better to do some sort of incremental or differential backup. As someone else said, borg is a good way of doing this. Given you're using cloud storage, you could use rclone to sync (one way, from cloud to local) to a local disk, and then use borg (on your local mach…