I use bupstash.io
post
d
Maybe Borg is a possibility. However, I have not yet backed up an entire system with it, but only certain files.
- The file permissions have always been correct when restoring files in my case.
- Which compression (LZ4, zlib, LZMA or zstd) and which compression level is used can be specified when creating a backup.
- Backups can be mounted via FUSE, so that you can restore individual files with an file manager or a terminal emulator, for example.
At least on the Mac (bsdtar) you can extract single files out of a tar file.
E.g.,
Create the tar file:
tar cvzf pseudo.tgz pseudo/
Move to another directory
cd /tmp/tt
Extract a single file:
tar -xf ../pseudo.tgz pseudo/10481_2017.1069.png
You say PC, so might want to check the tar version you are using and see if there are extra parameters to do the file extraction.
all 4 comments