Live data from Hacker News

Restic: Backups done right

restic.net

81–90 of 108 posts

Re: Restic: Backups done right

#81
post #71
post #67

Faster alternatives I recommend: * Kopia: many features, also great for desktop GUI users * bupstash: The fastest, lowest RAM. I use it to backup 1B files daily (200TB). Ransomware-proof asymmetric multi key crypto. Less features.

bupstash is new to me. That looks like a cool set of properties. I do wish it supported S3 and compatible APIs as a backup target.

Relevant: Borg 2.x now supports rclone to allow S3-compatible hosts.

Re: Restic: Backups done right

#82

I've been using Restic for servers, but ended up going with Kopia for machines that are not always on, like laptops. It has the advantage that it will take something of an opportunistic approach where it will start backing up if it hasn't done so in a while, and seems to be able to restart with aplomb if it gets interrupted (machine shutdown or laptop lid closed). That and being able to have multiple machines writing…

I think the first part could be solved by systemd timers, no?

Re: Restic: Backups done right

#83

Try BackRest if you want a nice frontend to Restic. You can configure Restic from the command line but it's pretty awkward. BackRest has a nice simple web GUI and makes basic automation very easy. https://github.com/garethgeorge/backrest I'm surprised no one is selling Restic hosting as a straight up service. BackBlaze works well with Restic but the configuration is a little manual and clumsy. A packaged solution wou…

Despite the name Borgbase [0] offers Restic hosting, with actual documentation on how to set it up. Hetzner [1] also offers Restic

[0] https://www.borgbase.com/ [1] https://www.hetzner.com/storage/storage-box/

Re: Restic: Backups done right

#84
post #22

My Thinkpad has a tiny SDHC slot. I put a 1 terabyte SDHC card in it (~$80) and have a cron job take hourly Restic snapshots of my primary storage. It's been reliable and has bailed me out more than once.

Make sure to verify it against bitrot. SD cards aren't the most reliable media.

Re: Restic: Backups done right

#85
I wish backup program sites would provide an easy upfront capability statement that includes:

- types of backups supported (volume, fileset, ...)

- differciality support (incremental, resumable, dedup, ...)

- support for (always) open file bakup

- filetype/ path restrictions (very large files, max pathlenght, ...)

- restore options ( bare metal, selective, backup mountable as volume, ...)

This would make it far easier to see if it ia worth checking out

Re: Restic: Backups done right

#86
Since I'm a big user of proxmox and all my systems are debian-based I recently began to use proxmox backup server also for my physical machines! It's quite fast, supports defuplication and I can donwload or mount backup archives. It sadly lacks a good ux, but I'm still evaulating it because pbs is a tool that I'm already using heavily, so I don't mind reducing the amount of individual software needed to carry on my work.

Re: Restic: Backups done right

#88
post #48
post #18

Earlier quoted context omitted.

I'd throw in kopia[0], fast, many features and easy to use across platforms. [0] https://kopia.io/

I have seen Kopia mentioned from time to time but never as often as borg. Does it have a good reputation?

It's not as old, but has a Gui and is native on Linux/Windows/Macos.

Re: Restic: Backups done right

#89
In the 90's I remember using various backup tools that had their own custom format. I decided that I wanted my backup to be just wanted files on a normal filesystem without being stored in some kind of special format. I realize that this means compression and block level deduplication is harder but those are tradeoffs that I can accept.

I've been using rsnapshot (or it's predecessor script) for 20 years now. It's a wrapper around rsync that gives you snapshots that save space by using hard links. I can compare versions with diff. I can restore files with cp -a

https://rsnapshot.org/

Re: Restic: Backups done right

#90
Seriously try restic with Backrest. I had stopped using restic for almost two years after I got tired of tinkering with my local custom scripts to keep restic setup on my mac running. Then I found Backrest. Oh and it lets you use the snapshop browser right in the UI. That's kinda nice.

It's really simple and in active development https://github.com/garethgeorge/backrest. The dev (lead dev) https://github.com/garethgeorge/backrest/discussions is very responsive.

I know many comments have said it but I also wanted to add it just because backrest is what made restic usable for me again. Vorta is a favourite backup GUI but somehow I am finding backrest even simpler (although would have loved it if it was a tiny menu bar kinda app).

Is there something like Deja Dup on Mac?

I am planning to find and add another remote repo now (in addition to b2; and hopefully much cheaper which might be a tough one as b2 is kinda dirt cheap especially for small GBs) so that I can include some more of my less critical files in the additional backup set.

Post reply on HN