cross-posted from: https://programming.dev/post/9319044

Hey,

I am planning to implement authenticated boot inspired from Pid Eins' blog. I'll be using pam mount for /home/user. I need to check integrity of all partitions.

I have been using luks+ext4 till now. I am hesistant hesitant to switch to zfs/btrfs, afraid I might fuck up. A while back I accidently purged '/' trying out timeshift which was my fault.

Should I use zfs/btrfs for /home/user? As for root, I'm considering luks+(zfs/btrfs) to be restorable to blank state.

you are viewing a single comment's thread
view the rest of the comments
[–] 4 points 2 years ago (1 child)

There is btrfs-check --repair to fix corruption

  • source
  • parent
  • hideshow 2 child comments
  • [–] 4 points 2 years ago* (1 child)

    https://www.suse.com/support/kb/doc/?id=000018769

    WARNING: Using '--repair' can further damage a filesystem instead of helping if it can't fix your particular issue.

    Edit:

    It is extremely important that you ensure a backup has been created before invoking '--repair'.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 2 years ago* (last edited 2 years ago)

    That is a caveat with OS disk tools. Even partition resizing gives this warning, as does Windows checkdisk...something about unnessary disk checks ahould be avoided as they can create issues where none might have existed, so only run when you suspect a problem.

    But as lemann pointed out in this thread btrfs scrub is less risky

  • source
  • parent