btrfs
TLDR
Create subvolume
$ sudo btrfs subvolume create path/to/subvolume
List subvolumes$ sudo btrfs subvolume list path/to/mount
Show space usage$ sudo btrfs filesystem df path/to/mount
Enable quota$ sudo btrfs quota enable path/to/subvolume
Show quota$ sudo btrfs qgroup show path/to/subvolume
SYNOPSIS
btrfs command [OPTIONS] [path]
DESCRIPTION
btrfs is the primary management tool for btrfs filesystems. Btrfs is a modern copy-on-write (COW) filesystem for Linux featuring snapshots, subvolumes, checksums, and built-in RAID support.
PARAMETERS
subvolume (su)
Manage subvolumes and snapshotsfilesystem (fi)
Manage filesystem propertiesdevice (dev)
Manage devices in the filesystembalance (bal)
Balance data across devicesscrub (sc)
Verify data integrityquota (qu)
Enable/disable quota supportqgroup (qg)
Manage quota groups
CAVEATS
Btrfs is under active development. Some features like RAID5/6 may have stability concerns. Regular scrubs are recommended for data integrity verification. Snapshots share space with their source until modified.
HISTORY
btrfs is the management tool for the B-tree file system, a modern Linux filesystem featuring advanced storage capabilities.
SEE ALSO
btrfs-subvolume(8), btrfs-filesystem(8), mkfs.btrfs(8)


