btrfs
Publish date: Feb 20, 2020
Last updated: Apr 22, 2020
Last updated: Apr 22, 2020
IMAGE GALLERY (1)
copy-on-writeCOW principle1- Underlying mechanism for snapshots as provided by
LVM - Weak form of incremental backup
- copy-on-write usually refers to the first technique. CoW does two data writes compared to ROW’s one; it is difficult to implement efficiently and thus used infrequently.
- The
qcow2(QEMU copy on write) disk image format uses the copy-on-write technique to reduce disk image size.
- Underlying mechanism for snapshots as provided by
- In computer storage, logical volume management or
LVMprovides a method of allocating space on mass-storage devices that is more flexible than conventional partitioning schemes to store volumes - Btrfs is intended to address the
lack of pooling, snapshots,checksums, andintegral multi-device spanningin Linux file systems. - btrfs status2
- Snapshot
- A snapshot is simply a
subvolumethat shares its data (and metadata) with some other subvolume, using Btrfs’s COW capabilities.
- A snapshot is simply a