1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 06:02:08 +02:00
tldr/pages/linux/btrfs-property.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

24 lines
936 B
Markdown

# btrfs property
> Get, set, or list properties for a BTRFS filesystem object (files, directories, subvolumes, filesystems, or devices).
> More information: <https://btrfs.readthedocs.io/en/latest/btrfs-property.html>.
- List available properties (and descriptions) for the given btrfs object:
`sudo btrfs property list {{path/to/btrfs_object}}`
- Get all properties for the given btrfs object:
`sudo btrfs property get {{path/to/btrfs_object}}`
- Get the `label` property for the given btrfs filesystem or device:
`sudo btrfs property get {{path/to/btrfs_filesystem}} label`
- Get all object type-specific properties for the given btrfs filesystem or device:
`sudo btrfs property get -t {{subvol|filesystem|inode|device}} {{path/to/btrfs_filesystem}}`
- Set the `compression` property for a given btrfs inode (either a file or directory):
`sudo btrfs property set {{path/to/btrfs_inode}} compression {{zstd|zlib|lzo|none}}`