info > BTRFS-SUBVOLUME

📖 NAME

btrfs-subvolume — manage btrfs subvolumes

🚀 Quick Reference

Use CaseCommandDescription
Create a subvolume btrfs subvolume create [<dest>/]<name> Create a new subvolume, optionally with qgroup assignment
Delete a subvolume btrfs subvolume delete <subvolume> [<subvolume>...] Delete one or more subvolumes (data freed later)
List subvolumes btrfs subvolume list <path> List subvolumes with ID, generation, parent, path
Create a read-only snapshot btrfs subvolume snapshot -r <source> <dest>/<name> Create a read-only snapshot of a subvolume
Set default subvolume btrfs subvolume set-default <id> <path> Set the subvolume that will be mounted by default
Show subvolume details btrfs subvolume show <path> Display UUIDs, generations, flags, snapshots
Wait for deletion completion btrfs subvolume sync <path> [subvolid...] Wait until subvolume deletion is fully processed

📋 SYNOPSIS

btrfs subvolume <subcommand> [<args>]

📝 DESCRIPTION

btrfs subvolume is used to create/delete/list/show btrfs subvolumes and snapshots.

🧠 SUBVOLUME AND SNAPSHOT

A subvolume is a part of filesystem with its own independent file/directory hierarchy. Subvolumes can share file extents. A snapshot is also subvolume, but with a given initial content of the original subvolume.

Note: A subvolume in btrfs is not like an LVM logical volume, which is block-level snapshot while btrfs subvolumes are file extent-based.

A subvolume looks like a normal directory, with some additional operations described below. Subvolumes can be renamed or moved, nesting subvolumes is not restricted but has some implications regarding snapshotting.

A subvolume in btrfs can be accessed in two ways:

In the latter case the parent directory is not visible and accessible. This is similar to a bind mount, and in fact the subvolume mount does exactly that.

A freshly created filesystem is also a subvolume, called top-level, internally has an id 5. This subvolume cannot be removed or replaced by another subvolume. This is also the subvolume that will be mounted by default, unless the default subvolume has been changed (see subcommand set-default).

A snapshot is a subvolume like any other, with given initial content. By default, snapshots are created read-write. File modifications in a snapshot do not affect the files in the original subvolume.

⚙️ SUBCOMMAND

📌 create

btrfs subvolume create [-i <qgroupid>] [<dest>/]<name>

Create a subvolume <name> in <dest>. If <dest> is not given, subvolume <name> will be created in the current directory.

Options:

🗑️ delete

btrfs subvolume delete [options] <[<subvolume> [<subvolume>...]]>
btrfs subvolume delete -i|--subvolid <subvolid> <path>

Delete the subvolume(s) from the filesystem. If <subvolume> is not a subvolume, btrfs returns an error but continues if there are more arguments to process. If --subvolid is used, <path> must point to a btrfs filesystem. The corresponding directory is removed instantly but the data blocks are removed later in the background. The command returns immediately. See btrfs subvolume sync how to wait until the subvolume gets completely removed. The deletion does not involve full transaction commit by default due to performance reasons. As a consequence, the subvolume may appear again after a crash. Use one of the --commit options to wait until the operation is safely stored on the device. The default subvolume (see btrfs subvolume set-default) cannot be deleted and returns error (EPERM) and this is logged to the system log. A subvolume that's currently involved in send (see btrfs-send) also cannot be deleted until the send is finished.

Options:

🔍 find-new

btrfs subvolume find-new <subvolume> <last_gen>

List the recently modified files in a subvolume, after <last_gen> generation.

🎯 get-default

btrfs subvolume get-default <path>

Get the default subvolume of the filesystem <path>. The output format is similar to subvolume list command.

📋 list

btrfs subvolume list [options] [-G [+|-]<value>] [-C [+|-]<value>] [--sort=rootid,gen,ogen,path] <path>

List the subvolumes present in the filesystem <path>. For every subvolume the following information is shown by default:

ID <ID> gen <generation> top level <ID> path <path>

where ID is subvolume's id, gen is an internal counter which is updated every transaction, top level is the same as parent subvolume's id, and path is the relative path of the subvolume to the top level subvolume. The subvolume's ID may be used by the subvolume set-default command, or at mount time via the subvolid= option.

Options:

Path filtering

Field selection

Type filtering

Other

Sorting — By default the subvolumes will be sorted by subvolume ID ascending.

🔧 set-default

btrfs subvolume set-default [<subvolume>|<id> <path>]

Set the default subvolume for the (mounted) filesystem. This will hide the top-level subvolume (i.e. the one mounted with subvol=/ or subvolid=5). Takes action on next mount. There are two ways how to specify the subvolume, by <id> or by the <subvolume> path. The id can be obtained from btrfs subvolume list, btrfs subvolume show or btrfs inspect-internal rootid.

📊 show

btrfs subvolume show [options] <path>

Show more information about a subvolume (UUIDs, generations, times, flags, related snapshots).

/mnt/btrfs/subvolume
        Name:                   subvolume
        UUID:                   5e076a14-4e42-254d-ac8e-55bebea982d1
        Parent UUID:            -
        Received UUID:          -
        Creation time:          2018-01-01 12:34:56 +0000
        Subvolume ID:           79
        Generation:             2844
        Gen at creation:        2844
        Parent ID:              5
        Top level ID:           5
        Flags:                  -
        Snapshot(s):

Options:

📸 snapshot

btrfs subvolume snapshot [-r] [-i <qgroupid>] <source> <dest>|[<dest>/]<name>

Create a snapshot of the subvolume <source> with the name <name> in the <dest> directory. If only <dest> is given, the subvolume will be named the basename of <source>. If <source> is not a subvolume, btrfs returns an error.

Options:

⏳ sync

btrfs subvolume sync <path> [subvolid...]

Wait until given subvolume(s) are completely removed from the filesystem after deletion. If no subvolume id is given, wait until all current deletion requests are completed, but do not wait for subvolumes deleted in the meantime.

Options:

🏷️ SUBVOLUME FLAGS

The subvolume flag currently implemented is the ro property. Read-write subvolumes have that set to false, snapshots as true. In addition to that, a plain snapshot will also have last change generation and creation generation equal.

Read-only snapshots are building blocks for incremental send (see btrfs-send(8)) and the whole use case relies on unmodified snapshots where the relative changes are generated from. Thus, changing the subvolume flags from read-only to read-write will break the assumptions and may lead to unexpected changes in the resulting incremental stream.

A snapshot that was created by send/receive will be read-only, with different last change generation, read-only and with set received_uuid which identifies the subvolume on the filesystem that produced the stream. The use case relies on matching data on both sides. Changing the subvolume to read-write after it has been received requires to reset the received_uuid. As this is a notable change and could potentially break the incremental send use case, performing it by btrfs property set requires force if that is really desired by user.

Note: The safety checks have been implemented in 5.14.2, any subvolumes previously received (with a valid received_uuid) and read-write status may exist and could still lead to problems with send/receive. You can use btrfs subvolume show to identify them. Flipping the flags to read-only and back to read-write will reset the received_uuid manually. There may exist a convenience tool in the future.

💡 EXAMPLES

Example 1: Deleting a subvolume

If we want to delete a subvolume called foo from a btrfs volume mounted at /mnt/bar we could run the following:

btrfs subvolume delete /mnt/bar/foo

🚪 EXIT STATUS

btrfs subvolume returns a zero exit status if it succeeds. A non-zero value is returned in case of failure.

🌐 AVAILABILITY

btrfs is part of btrfs-progs. Please refer to the btrfs wiki for further details.

📚 SEE ALSO

BTRFS-SUBVOLUME
📖 NAME 🚀 Quick Reference 📋 SYNOPSIS 📝 DESCRIPTION 🧠 SUBVOLUME AND SNAPSHOT ⚙️ SUBCOMMAND
📌 create 🗑️ delete 🔍 find-new 🎯 get-default 📋 list 🔧 set-default 📊 show 📸 snapshot ⏳ sync
🏷️ SUBVOLUME FLAGS 💡 EXAMPLES 🚪 EXIT STATUS 🌐 AVAILABILITY 📚 SEE ALSO

Generated by phpman v4.9.26-5-g7740029 Author: Che Dong Under GNU General Public License
2026-08-16 09:09 @2600:1f28:365:80b0:7cb9:fb:26c1:e368
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Valid XHTML 1.0 Transitional!Valid CSS!