BtrfsSnapshots
BtrfsSnapshots refer to the snapshot capability of the Btrfs filesystem, which creates point-in-time copies of subvolumes without duplicating data. Snapshots use the copy-on-write mechanism, so initial snapshots share data blocks with their source and only diverge when either side is modified. This makes snapshots lightweight and inexpensive to create and maintain compared with full copies.
Snapshots can be created as read-only or writable. A read-only snapshot cannot be modified, making it suitable
As subvolumes, snapshots exist within the same Btrfs filesystem and can be used with Btrfs send/receive to
Management considerations include space usage and lifecycle. Snapshots consume space as the system writes new data
Limitations and best practices: organize subvolumes to enable meaningful snapshots, use read-only snapshots for backups when