BTRFS-CHECK(8) | Btrfs Manual | BTRFS-CHECK(8) |
btrfs-check - check or repair a btrfs filesystem
btrfs check [options] <device>
The filesystem checker is used to verify structural integrity of a filesystem and attempt to repair it if requested. It is recommended to unmount the filesystem prior to running the check, but it is possible to start checking a mounted filesystem (see --force).
By default, btrfs check will not modify the device but you can reaffirm that by the option --readonly.
btrfsck is an alias of btrfs check command and is now deprecated.
Do not use --repair unless you are advised to do so by a developer or an experienced user, and then only after having accepted that no fsck successfully repair all types of filesystem corruption. Eg. some other software or hardware bugs can fatally damage a volume.
The structural integrity check verifies if internal filesystem objects or data structures satisfy the constraints, point to the right objects or are correctly connected together.
There are several cross checks that can detect wrong reference counts of shared extents, backreferences, missing extents of inodes, directory and inode connectivity etc.
The amount of memory required can be high, depending on the size of the filesystem, similarly the run time. Check the modes that can also affect that.
-b|--backup
This can be combined with --super if some of the superblocks are damaged.
--check-data-csum
This expects that the filesystem is otherwise OK, and is basically an offline scrub that does not repair data from spare copies.
--chunk-root <bytenr>
-E|--subvol-extents <subvolid>
-p|--progress
-Q|--qgroup-report
-r|--tree-root <bytenr>
--readonly
-s|--super <superblock>
This can be used to use a different starting point if some of the primary superblock is damaged.
--clear-space-cache v1|v2
For free space cache v1, the clear_cache kernel mount option only rebuilds the free space cache for block groups that are modified while the filesystem is mounted with that option. Thus, using this option with v1 makes it possible to actually clear the entire free space cache.
For free space cache v2, the clear_cache kernel mount option destroys the entire free space cache. This option, with v2 provides an alternative method of clearing the free space cache that doesn’t require mounting the filesystem.
--clear-ino-cache
--repair
--init-csum-tree
--init-extent-tree
--mode <MODE>
The MODE can be one of:
original
lowmem
--force
This option also skips the delay and warning in the repair mode (see --repair).
btrfs check returns a zero exit status if it succeeds. Non zero is returned in case of failure.
btrfs is part of btrfs-progs. Please refer to the btrfs wiki http://btrfs.wiki.kernel.org for further details.
02/05/2021 | Btrfs v5.10.1 |