this post was submitted on 28 Jun 2023
14 points (100.0% liked)

datahoarder

6539 readers
3 users here now

Who are we?

We are digital librarians. Among us are represented the various reasons to keep data -- legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they're sure it's done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.

We are one. We are legion. And we're trying really hard not to forget.

-- 5-4-3-2-1-bang from this thread

founded 4 years ago
MODERATORS
 

Whenever I wipe my PC, I use tar to make an archive of the whole system. This works, but having to decompress the whole archive to pull files out is very annoying. Is there another archive format that:

  • Preserves permissions (i.e., is Unix-y)
  • Supports strong compression (I use either zstd or xz depending on how long I can be bothered to wait)
  • Supports pulling out individual files quickly
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

fsarchiver is very nice. Not fast on pulling out files, but, I mean, it's infinitely faster than tar.

Only quit using it so much because zfs-send is the real big hammer.

Best part is it can regenerate partitions, or whatever, or you can restore a larger partition to a smaller one, all the cool permutations assuming the files actually fit. Can re-write users and permissions if you like, all the bells.

https://www.fsarchiver.org/

Support for basic file attributes (permissions, ownership, …)
Support for basic file-system attributes (label, uuid, block-size) for all linux file-systems
Support for multiple file-systems per archive
Support for extended file attributes (they are used by SELinux)
Support for all major Linux filesystems (extfs, xfs, btrfs, reiserfs, etc)
Support for FAT filesystems (in order to backup/restore EFI System Partitions)
Experimental support for cloning ntfs filesystems
Checksumming of everything which is written in the archive (headers, data blocks, whole files)
Ability to restore an archive which is corrupt (it will just skip the current file)
Multi-threaded lzo, gzip, bzip2, lzma/xz compression: if you have a dual-core / quad-core it will use all the power of your cpu
Lzma/xz compression (slow but very efficient algorithm) to make your archive smaller.
Support for splitting large archives into several files with a fixed maximum size
Encryption of the archive using a password. Based on blowfish from libgcrypt.

Oh, also you can always copy it over to an iso image and mount it, or a qcow or raw image of some kind for loop mount.

Hey, didn't know about this: https://www.linux.com/news/mounting-archives-fuse-and-archivemount/