• Lord Goose@lemmy.dbzer0.comOP
      link
      fedilink
      arrow-up
      8
      ·
      8 months ago

      It makes a copy of your entire system automatically (and your home folder if you want it to) so, in the event that you break something and can’t/don’t want to fix it, you can go back to your most recent back-up from before you messed your system up. I’ve had to use it a few times because I installed some drivers for my drawing tablet that broke more than they fixed and I didn’t want to deal with the pain in the ass of removing them and all of the dependencies they installed.

        • rollerbang
          link
          fedilink
          arrow-up
          5
          ·
          8 months ago

          I believe it’s using a feature built-in directly in the filesystem.

          I’m just curious if it’s possible to browse individual snapshots like in MacOS Time Machine and fetch individual files out.

        • DrRatso@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          8 months ago

          Now mind you, everything I write might be wrong, I am out of my depth here.

          But as I understand a BTRFS snapshot is simply a (subvolume in which you will find) copy of the table that points to the actual files or, rather, blocks on your drive. As long as a table exists that points to a block, this block will persist.

          The nature of BTRFS is Copy-on-Write so in your active snapshot, when you modify a file / block, a copy of it is created with the new version, referencing this new block on the filesystem table.

          This is why BTRFS snapshots are fast and take little space by themselves, you do not need to actually copy all the data at the moment of creating the backup, rather when the data is modified and only that data.