Replies: 1 comment
-
Well, the usual way to solve this is to just consider that stuff to be 2 different backups of 2 different data sets. One would then use borg to create 2 differently named series of backup archives, have different schedules to run borg create for each dataset and possibly also different borg prune settings. It's somehow similar to creating a backup of system and user files:
At restore time, one usually would restore the latest system backup and then the latest user file backup. I think that's the preferable way of doing things. Implementing the behaviour as you described would make borg even more complex and harder to understand than it already is. |
Beta Was this translation helpful? Give feedback.
-
I use Borg to store a complete backup of my home directory. I would really like to do all of the following, simultaneously:
Basically, to boil it down, I want to be able to do backups that are effectively full backups, but treat files on a specific list as unchanged even if they have changed.
Specifically, changing the included / excluded files does not seem to do what I want. E.g. if I include only ~/Documents, and then mount that archive version, I see only files in ~/Documents. That's not good because (a) it means I can't restore all my files from this backup, and (b) if I purge the wrong previous backup, I risk losing data.
I'd also be interested in answers talking about Borg2, if applicable.
Beta Was this translation helpful? Give feedback.
All reactions