1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/btrfs.md

25 lines
516 B
Markdown
Raw Normal View History

2019-10-09 05:53:34 +07:00
# btrfs
> A filesystem based on the copy-on-write (COW) principle for Linux.
> More information: <https://btrfs.wiki.kernel.org/index.php/Manpage/btrfs>.
2019-10-09 05:53:34 +07:00
- Create subvolume:
`sudo btrfs subvolume create {{path/to/subvolume}}`
- List subvolumes:
`sudo btrfs subvolume list {{path/to/mount_point}}`
- Show space usage information:
`sudo btrfs filesystem df {{path/to/mount_point}}`
- Enable quota:
`sudo btrfs quota enable {{path/to/subvolume}}`
- Show quota:
`sudo btrfs qgroup show {{path/to/subvolume}}`