this post was submitted on 28 Oct 2023
484 points (95.8% liked)

linuxmemes

19842 readers
1152 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
484
Saved my ass a few times (lemmy.dbzer0.com)
submitted 8 months ago* (last edited 8 months ago) by lordgoose@lemmy.dbzer0.com to c/linuxmemes@lemmy.world
 
you are viewing a single comment's thread
view the rest of the comments
[–] platypus_plumba@lemmy.world 1 points 8 months ago (2 children)

How is this different than a regular backup? Not salty, just curious.

[–] rollerbang@sopuli.xyz 5 points 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 3 points 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.