Most active commenters
  • crossroadsguy(6)
  • riedel(3)

231 points fanf2 | 108 comments | | HN request time: 1.487s | source | bottom
1. andarp ◴[] No.41830256[source]
I have used restic for a year now. I’ve thought about it twice. 9/10 would backup again.
replies(1): >>41830285 #
2. stavros ◴[] No.41830285[source]
I've used restic for five years (and also Borg is equally good), similarly very much recommended:

https://www.stavros.io/posts/holy-grail-backups/

3. tguvot ◴[] No.41830296[source]
https://github.com/garethgeorge/backrest going nicely with restic

i do miss functionality of configurable full/incremental backups like in duplicity

replies(2): >>41830357 #>>41831977 #
4. yapyap ◴[] No.41830298[source]
Awesome, I’m using BackInTime right now for ’snapshot’-like backups but I’m always interested in new solutions
5. kam ◴[] No.41830357[source]
What do you miss about it? In restic, every snapshot has the speed and size of an incremental backup, but the functionality of a full backup.
replies(1): >>41831131 #
6. alibert ◴[] No.41830358[source]
Been using Restic for a while but I was wondering how does it compare to:

- Rustic https://rustic.cli.rs

- Kopia https://kopia.io

replies(7): >>41830408 #>>41830448 #>>41830483 #>>41830842 #>>41830884 #>>41830896 #>>41847748 #
7. Jur ◴[] No.41830380[source]
Interesting, I'll give this a try. I'm hoping one day to retire my subscription/cloud-based back-ups with something docker based that still back-ups to multiple instances (local and remote).
8. asteroidburger ◴[] No.41830408[source]
Rustic is a rewrite of Restic from Go to Rust. See https://rustic.cli.rs/docs/comparison-restic.html
replies(1): >>41833800 #
9. aliasxneo ◴[] No.41830448[source]
I perused the Rustic website and they have a direct comparison of Restic here: https://rustic.cli.rs/docs/comparison-restic.htm. At face value I thought it was just, "because it's Rust," but it does appear to have a few additional features.

I haven't used either, though.

replies(2): >>41830584 #>>41830615 #
10. BoingBoomTschak ◴[] No.41830483[source]
I vaguely remember Kopia having partly mitigated Restic's issues with memory usage.
11. gmuslera ◴[] No.41830504[source]
I’m more fan of BorgBackup, but you have to couple it with I.e. rclone for it to make backups to cloud object storage. But that opinion is based on my particular use case, probably would be using restic if direct to cloud was a better choice.
replies(1): >>41830572 #
12. kayson ◴[] No.41830564[source]
Other popular choices include borg, duplicity, and duplicati.

After evaluating these and others mentioned in the comments, I ended up using borg with borgmatic to define homelab backups with yaml files that are version controlled in gitea and deployed using ansible.

I also use duplicity to back up my sister in laws storefront website to backblaze. I've been quite happy with both.

https://borgbackup.readthedocs.io/en/stable/

http://duplicity.gitlab.io/

https://docs.duplicati.com/en/latest/

replies(8): >>41830658 #>>41830915 #>>41831061 #>>41831170 #>>41831332 #>>41831517 #>>41832118 #>>41834010 #
13. pdw ◴[] No.41830572[source]
Borg 2.0 supposedly will support cloud backups out of the box.
14. dicytea ◴[] No.41830584{3}[source]
You dropped the l: https://rustic.cli.rs/docs/comparison-restic.html
15. dmw_ng ◴[] No.41830608[source]
I'm a restic user, but have resisted the urge to attempt a bikeshed for a long time, mostly due to perf. It's index format seems to be slow and terrible and the chunking algorithm it uses (rabin fingerprints) is very slow compared to more recent alternatives (like FastCDC). Drives me nuts to watch it chugging along backing up or listing snapshots at nowhere close to the IO rate of the system while still making the fans run. Despite that it still seems to be the best free software option around
replies(4): >>41833785 #>>41834040 #>>41834051 #>>41839922 #
16. tredre3 ◴[] No.41830615{3}[source]
Rustic was started by a former restic contributor. My impression at the time was that he was frustrated with poor collaboration from restic maintainers (slow/no response to his PRs). So it's a bit more than just "rewrite-it-in-rust".

Many of his rejected/ignored restic PRs ended up being features in rustic: cold storage support, config file support, resumable operations, webdav server, etc.

replies(1): >>41832671 #
17. riedel ◴[] No.41830658[source]
I'd throw in kopia[0], fast, many features and easy to use across platforms.

[0] https://kopia.io/

replies(2): >>41831739 #>>41836914 #
18. SomeoneOnTheWeb ◴[] No.41830663[source]
I've tried many options and ended up distching Restic for Borg and then Borg for Kopia, which was IMO the best option.
19. evanjrowley ◴[] No.41830672[source]
There is also autorestic - A simplified YAML-based configuration for dealing with Restic backups: https://github.com/cupcakearmy/autorestic
replies(1): >>41831890 #
20. slig ◴[] No.41830718[source]
What's the best way to backup a managed Postgres from DO to another cloud?
replies(1): >>41830758 #
21. chrchr ◴[] No.41830752[source]
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.
replies(1): >>41835328 #
22. fmajid ◴[] No.41830758[source]
Not sure what DO managed PostgreSQL supports, but PostgreSQL streaming replication would seem like the natural way to go.
replies(1): >>41831046 #
23. thekashifmalik ◴[] No.41830760[source]
Big fan of restic! The only feature I found missing was the ability to browse historical snapshots like regular files.

I wrote and now use the rsync-based, browsable, incremental backup CLI: https://rincr.com/

replies(4): >>41830805 #>>41830809 #>>41830810 #>>41832927 #
24. demomode ◴[] No.41830805[source]
Isn't that the purpose of `restic mount`?
25. dmd ◴[] No.41830809[source]
What do you mean by that? "restic mount" has been part of restic since the very start.
replies(1): >>41830961 #
26. heinrichf ◴[] No.41830810[source]
Restic has a mount subcommand that exposes all backups through a FUSE filesystem, no?
27. dang ◴[] No.41830816[source]
Related:

Restic 0.17.0 Released - https://news.ycombinator.com/item?id=41082937 - July 2024 (5 comments)

Restic – Simple Backups - https://news.ycombinator.com/item?id=38915291 - Jan 2024 (14 comments)

Restic 0.15.0 Released - https://news.ycombinator.com/item?id=34364925 - Jan 2023 (1 comment)

Restic 0.14.0 Released (with highly anticipated feature – compression) - https://news.ycombinator.com/item?id=32599032 - Aug 2022 (5 comments)

Restic 0.13.0 - https://news.ycombinator.com/item?id=30822631 - March 2022 (66 comments)

Restic – Backups Done Right - https://news.ycombinator.com/item?id=29209455 - Nov 2021 (286 comments)

Saving a restic backup the hard way - https://news.ycombinator.com/item?id=28438430 - Sept 2021 (2 comments)

Restic Cryptography (2017) - https://news.ycombinator.com/item?id=27471549 - June 2021 (5 comments)

Restic – Backups Done Right - https://news.ycombinator.com/item?id=21410833 - Oct 2019 (177 comments)

Show HN: K8up – Kubernetes Backup Operator Based on Restic - https://news.ycombinator.com/item?id=20769362 - Aug 2019 (18 comments)

Append-only backups with restic and rclone - https://news.ycombinator.com/item?id=19347188 - March 2019 (42 comments)

Restic Cryptography - https://news.ycombinator.com/item?id=15131310 - Aug 2017 (36 comments)

Restic – Backups done right - https://news.ycombinator.com/item?id=10135430 - Aug 2015 (1 comment)

28. riedel ◴[] No.41830842[source]
https://www.patpro.net/blog/index.php/2024/03/07/3590-borg-k...
29. Scandiravian ◴[] No.41830884[source]
I switched to rustic a couple of months ago due to it being able to filter based on .gitignore files. Have done a few test restores and everything has worked well so far
30. aborsy ◴[] No.41830894[source]
Restic is great! It has worked flawlessly for me for several years.

Anyone knows if there is plan to add Reed Solomon erasure coding, just in case there will be errors in repository? Something like Par2.

Asymmetric encryption could also be useful in some situations. Perhaps they could just use Age for the asymmetric encryption backend (unfortunately Age offers only 128 bits of security in its symmetric encryption, so it’s not recommended for long term storage, because of the save-now decrypt-later attack). But I expect a stable quantum resistant plug-in appearing next year or so.

replies(1): >>41830910 #
31. snorremd ◴[] No.41830896[source]
A killer feature rustic has over restic is built-in support for .gitignore files. So all your dependencies and build output is automatically ignored in your backups.
replies(3): >>41830991 #>>41833598 #>>41840498 #
32. seqizz ◴[] No.41830910[source]
Afaik not yet, there was some discussion here: https://github.com/restic/restic/issues/804
33. leetnewb ◴[] No.41830915[source]
Keeping with the name scheme, there is also duplicacy - https://github.com/gilbertchen/duplicacy
34. thekashifmalik ◴[] No.41830961{3}[source]
That command works well and accomplishes some of what rincr what built to solve. For example, when I mention browse-ability, I mean on the backup host without any dependencies so I can use standard file tools and browsers.

I also needed both "pull" (backup remote files) and "push" (backup local files) backup features and if I'm not mistaken restic still only supports the "push" model.

EDIT: Added more details

replies(3): >>41831295 #>>41831714 #>>41832158 #
35. neilv ◴[] No.41830991{3}[source]
Nice. Using `.gitignore` would simplify my Restic, Borg/Borgmatic, and Rsync-based backup scripts/configs. (Right now, I end up duplicating the same information in a few places, not very well.)
36. slig ◴[] No.41831046{3}[source]
They don't support that, forgot to clarify that in my comment. Thanks!
replies(1): >>41853209 #
37. pixard ◴[] No.41831061[source]
I have tested all of these also, and settled on borg + borgmatic. It has been absolutely rock solid. Borgmatic just rounds everything together in such a nice way. The documentation is great.

I'm pushing it all to a Hetzner storage box, as well as a local NAS. Super affordable!

replies(1): >>41900531 #
38. tguvot ◴[] No.41831131{3}[source]
sometimes you just must have a new full backup every N days/weeks. it a more "smooth" way to deal with potential corruption in repo that might be undetected (without dealing with all suggested workarounds) and in some cases compliance/certification requires it
39. mikae1 ◴[] No.41831170[source]
BorgBackup is also my choice. More features, but that's not necessarily a good (or bad) thing if Restic does everything you need.
40. homebrewer ◴[] No.41831295{4}[source]
If you're doing pull to prevent remotes from destroying old backups (in case of malware takeover, etc), this can be solved by running rest-server with --append-only

https://github.com/restic/rest-server

It 403's any attempt to overwrite or delete old data.

41. sph ◴[] No.41831332[source]
I chose restic because borg was slow, buggy and an unwieldy pile of Python, not the best language for deployment on heterogeneous Linux systems.

Restic on the other hand is slow, but never crashed on me and is distributed as a single binary.

The only thing I dislike about restic is that it does not have a simple config file where you define your backup settings. Instead I had to write my own backup.sh that I deploy everywhere on my personal and production machines. Paired with rsync.net for storage and healthchecks.io for notifications.

replies(5): >>41831821 #>>41831842 #>>41832187 #>>41832825 #>>41836933 #
42. npace12 ◴[] No.41831348[source]
first time I heard of this was yesterday, in a thecatch2024 CTF. Today, on HN... https://www.thecatch.cz/
43. cvalka ◴[] No.41831388[source]
Rustic is better
44. notherhack ◴[] No.41831507[source]
Restic 0.17.1 was released last month. The home page says "During initial development (versions prior to 1.0.0), maintainers and developers will do their utmost to keep backwards compatibility and stability, although there might be breaking changes without increasing the major version."

So worth a peek but still under construction.

45. notherhack ◴[] No.41831517[source]
The Borg site says Windows support is "experimental, no binaries yet". Is that still true?
46. luoc ◴[] No.41831714{4}[source]
Browsing without dependencies is a bit tricky due to a) deduplication, b) encryption and c) compression of restic's backups.
47. mongol ◴[] No.41831739{3}[source]
I have seen Kopia mentioned from time to time but never as often as borg. Does it have a good reputation?
replies(2): >>41833213 #>>41836723 #
48. ray_v ◴[] No.41831821{3}[source]
Honest question, but do you not consider environment variables to be a form of simple config?

https://restic.readthedocs.io/en/stable/040_backup.html#envi...

49. abhinavk ◴[] No.41831842{3}[source]
Use resticprofile or autorestic for configuration file or to run scheduled jobs.
50. justusthane ◴[] No.41831890[source]
I hadn’t seen autorestic before so I can’t compare them, but there’s resticprofile
51. NelsonMinar ◴[] No.41831950[source]
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 would be a nice thing.

Restic is very very good. My only nervousness is the backup format is so opaque, you need a working copy of Restic to restore from it. The format is documented though and of course the code is open source, so I think it's probably fine in practice.

replies(1): >>41834855 #
52. Jnr ◴[] No.41831977[source]
Backrest is great. It makes it very easy to configure restic backups and do the restores.
53. lossolo ◴[] No.41832104[source]
Pruning takes forever in Restic, which is why we migrated away from it.
replies(1): >>41832195 #
54. layer8 ◴[] No.41832118[source]
Duplicity is solid, I’ve been using it since over a decade, and it’s a standard package on Debian-based distributions. Never had any hiccups (and I run regular backup validations).

These threads about backup tools come up regularly, and I always wonder if I’m missing something important about the other tools.

replies(1): >>41833344 #
55. rakoo ◴[] No.41832158{4}[source]
> I mean on the backup host without any dependencies so I can use standard file tools and browsers.

This means the backups are not encrypted though, and is something you really have to think twice before requiring

> "pull" (backup remote files)

You can mount the server to backup on the backup host, or you can ssh from the backup host to the server to backup, call `tar cf - /folder`, and ingest that from stdin on the backup host. Both will retransmit the totality of the files to backup

56. 3eb7988a1663 ◴[] No.41832187{3}[source]
I write Python day to day, but even I use Restic for the single binary. I take a lot of comfort in being able to keep the backup executable adjacent to the backup blobs. While I believe Borg now has a distributable binary, Go has it in its blood to make easy deployment without tricks.
57. Sakos ◴[] No.41832195[source]
What did you migrate to?
58. manuel_w ◴[] No.41832252[source]
Which one is more resistant to bitrot, Restic or Borg Backup?

(Yes, bitrot might better be mitigated at the filesystem layer, but I'm not switching to ZFS, btrfs or bcache-fs anytime soon.)

replies(2): >>41834061 #>>41834677 #
59. anotherevan ◴[] No.41832278[source]
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 to a shared repository at the same time is handy. I have the kids' Windows computers both backing up to the same repo to save a bit of storage. (Now if only Kopia supported VSS on Windows without mucking around with dubious scripts.)

replies(1): >>41834798 #
60. pixelmonkey ◴[] No.41832281[source]
Discussion of my approach to using restic + rclone + Backblaze B2 here:

https://news.ycombinator.com/item?id=41041056

61. crabique ◴[] No.41832581[source]
Restic is awesome for moderate operational scale, but when it's got to backup thousands of storage block devices with arbitrary number of files on them, it just doesn't really work.

Is there anything cool people use for Ceph-RBD backups nowadays?

For now, the only thing in the OSS world that doesn't choke at this scale is Benji, but it looks like it's not really maintained anymore, and I worry it may not support newer Ceph versions.

62. tacticus ◴[] No.41832671{4}[source]
"rewrite-it-in-rust-wrapping-c"
63. kayson ◴[] No.41832825{3}[source]
I've never had any crashing or big issues with borg, and it's generally considered to be faster than restic. I'm sure there are more recent benchmarks, but as of Dec 2022, borg wins by a fair bit [1].

For installation, I set up a dedicated virtualenv for borg and borgmatic installation then symlink into /usr/local/bin. This is also automated with ansible and has worked on every distro and version I've used. The latest version does require python 3.9.0, but that's already 4 years old.

1. https://github.com/borgbase/benchmarks

replies(1): >>41837524 #
64. tetris11 ◴[] No.41832927[source]
Only feature missing for me was passwordless backups
65. bityard ◴[] No.41833213{4}[source]
I've been using it for years with zero problems.
66. nh2 ◴[] No.41833286[source]
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.

replies(1): >>41833569 #
67. Delk ◴[] No.41833344{3}[source]
I used Duplicity (via the Gnome Déjà Dup GUI) for years, but Borg turned out to be a lot faster at making the backups, at least for my laptop home dir backups. Like an order of magnitude faster. I don't think I ever tried to hand-configure Duplicity, though.
68. ritcgab ◴[] No.41833529[source]
Duplicity is my go because it integrates so well with pgp signing/encryption. Other popular alternatives like borg and restic just do not have it.
replies(2): >>41833554 #>>41836377 #
69. aftbit ◴[] No.41833554[source]
I do wish there were a way to allow a machine to perform backups without also allowing to read them. I generate per-machine secret keys for restic, then encrypt those keys to a set of GPG recipients, and store them alongside the backup data. I did have to roll my own solution for this using s3cmd etc but its not too bad.
70. aftbit ◴[] No.41833569[source]
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.
replies(1): >>41834688 #
71. githubalphapapa ◴[] No.41833598{3}[source]
At first I thought that sounded great, but then I realized that that would exclude files that I want to be backed up, like `dir-locals-2.el`, which should be excluded from git, but should also be backed up. There doesn't seem to be a great solution to that in general.
72. CGamesPlay ◴[] No.41833746[source]
I built a tool on top of restic to host git repositories on untrusted infrastructure. Its been working fine for my small low traffic projects for years, I only sync the fork every few months. https://github.com/CGamesPlay/git-remote-restic
73. rjrdi38dbbdb ◴[] No.41833785[source]
Have you opened issues with suggested algo improvements? They might be open to them.

Even if restic isn't interested, maybe the rustic dev will be.

74. rjrdi38dbbdb ◴[] No.41833800{3}[source]
It looks nice, but until they support FUSE mounting, I'll stick with restic.
75. o_____________o ◴[] No.41834010[source]
& Arq

https://www.arqbackup.com/

replies(1): >>41838902 #
76. nextaccountic ◴[] No.41834040[source]
> It's index format seems to be slow and terrible and the chunking algorithm it uses (rabin fingerprints) is very slow compared to more recent alternatives (like FastCDC).

Hi, can you elaborate more on those two points? (Specially, what makes the index format so bad?) Or link to somewhere I can learn more

77. Svenstaro ◴[] No.41834051[source]
You could try running rustic on your repository. It should be a drop-in for restic and maybe it's faster? I would actually be very interested in this. Would be great if you could do that and report back.
78. rodgerd ◴[] No.41834061[source]
One thing that I like about Restic is that you can automatically do a test restore of a subset (e.g. 1%, 5%, 8%) of your data, so that you can check for problems on the remote automatically.
79. ajvs ◴[] No.41834677[source]
Not sure but I know that Vorta (borg GUI) does automatic consistency checking using `borg check ` regularly.
replies(1): >>41837072 #
80. ajvs ◴[] No.41834688{3}[source]
Relevant: Borg 2.x now supports rclone to allow S3-compatible hosts.
81. mariusor ◴[] No.41834798[source]
I think the first part could be solved by systemd timers, no?
82. confusedalex ◴[] No.41834855[source]
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/

replies(2): >>41836878 #>>41842712 #
83. immibis ◴[] No.41835328[source]
Make sure to verify it against bitrot. SD cards aren't the most reliable media.
84. PeterStuer ◴[] No.41835414[source]
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

85. giuseony ◴[] No.41835521[source]
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.
86. aborsy ◴[] No.41836377[source]
This is an important feature. A gpg key can be offline or in Yubikey.
87. TiredOfLife ◴[] No.41836723{4}[source]
It's not as old, but has a Gui and is native on Linux/Windows/Macos.
88. lizknope ◴[] No.41836764[source]
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/

replies(1): >>41836886 #
89. crossroadsguy ◴[] No.41836874[source]
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.

90. crossroadsguy ◴[] No.41836878{3}[source]
Huh. Interesting. Didn't know borgbase supports restic as well. I already have a plan there for vorta/borg. Thanks.
91. wazoox ◴[] No.41836886[source]
Yes rsnapshot is fantastic. Plus with some simple configuration you can make your "rsnapshots" appear as legitimate snapshots from your Samba server to Windows clients.
92. crossroadsguy ◴[] No.41836914{3}[source]
Last time I tried Kopia was more like "select ONE folder to backup and add ONE destination to SNAPSHOT it to". While it is very simplistic and would be lovely in many use cases - for a home/personal backup which often requires granularity of inclusion and exclusion it just didn't make any sense. I am not sure whether that has changed.
replies(1): >>41851126 #
93. crossroadsguy ◴[] No.41836933{3}[source]
> it does not have a simple config file where you define your backup settings.

Will this https://github.com/garethgeorge/backrest/discussions/188 work for you?

Also, I can add directory file to include exclude directly to this config or to separate files as I please and just refer in this config.

94. crossroadsguy ◴[] No.41837072{3}[source]
Vorta offers you "Prune" customisation at the bottom of 'Archives' tab and "check" (validate repo) along with backup settings on 'Schedule' tab.
95. k_g_b_ ◴[] No.41837524{4}[source]
Agreed on no crashing/issues. I always use the provided Borg "single binary" https://borgbackup.readthedocs.io/en/latest/installation.htm... that unpacks everything into /tmp and naturally is larger than the restic binary. That isn't an issue on my systems.

Restic has no unencrypted mode for reasons - you must use an empty password and additional flag instead. If your backups will already be encrypted in other ways you'll still pay encryption overhead.

96. dpbriggs ◴[] No.41838212[source]
It's on my TODO list to add Restic support to BorgTUI[0]. It supports Rustic but the beta nature and iffy performance leaves something to be desired.

[0] https://github.com/dpbriggs/borgtui

97. synthomat ◴[] No.41838902{3}[source]
Arq is awesome! Unfortunately not suitable for headless systems.
98. evulhotdog ◴[] No.41839922[source]
You should check out Kopia. It’s absolutely wonderful, is fast, has similar features, and has a GUI if you’re into that.
replies(2): >>41851794 #>>41855766 #
99. Too ◴[] No.41840498{3}[source]
Wouldn’t you back up your git repos by pushing them somewhere? Even if that somewhere is a different directory on the same drive. Backing up your local working copy sounds a bit odd.
100. josephb ◴[] No.41842712{3}[source]
Restic user and also a long time user of Borgbase, their offering is pretty neat!
101. tinodb ◴[] No.41847748[source]
From the rustic readme:

> rustic currently is in beta state and misses regression tests. It is not recommended to use it for production backups, yet.

102. riedel ◴[] No.41851126{4}[source]
Kopia allows to specify quite different snapshot configurations with patterns etc. I converted old snapshot since 2005 backwards into the same dedup mounted on diverse paths, so I wonder what would be missing.
replies(1): >>41855738 #
103. eternityforest ◴[] No.41851794{3}[source]
Currently using Kopia because Restic has no GUI and Borg requires adding a community maintained Synology package, and it didn't "Just work" when I tried.

It's amazing! The GUI isn't perfect but the fact that there is an official GUI at all is great.

104. fmajid ◴[] No.41853209{4}[source]
And this is exactly why you do not want to use managed services with all sorts of restrictions that by the unlikeliest of coincidences also lock you in like a roach motel /s
105. crossroadsguy ◴[] No.41855738{5}[source]
Something like this https://restic.readthedocs.io/en/latest/040_backup.html#incl... is missing. Or let's say something like Borg's PATH arg.

i.e multiple files/sources to be backed up to one destination/sink in one go. Not one by one in different snapshots.

106. dizhn ◴[] No.41855766{3}[source]
I don't need a GUI but an official config format or a manager tool for restic would be cool. There ARE a few good 3rd party ones of course.
107. DavideNL ◴[] No.41900531{3}[source]
Same, borgmatic has been running flawlessly for a long time, it’s great.

Also backing up to a Hetzner storagebox, so it’s quite cheap too.

https://torsion.org/borgmatic/