info > BTRFS-CHECK

๐Ÿ“– NAME

btrfs-check - check or repair a btrfs filesystem

๐Ÿš€ Quick Reference

Use CaseCommandDescription
๐Ÿ” Check filesystem integrity (read-only)btrfs check /dev/sdXDefault mode, no changes made
๐Ÿ› ๏ธ Repair filesystembtrfs check --repair /dev/sdXโš ๏ธ Dangerous, only if advised
๐Ÿ”ง Use backup superblockbtrfs check -b /dev/sdXUse first valid backup roots
๐Ÿ“Š Check data checksumsbtrfs check --check-data-csum /dev/sdXOffline scrub without repair
๐Ÿงน Clear free space cache v1btrfs check --clear-space-cache v1 /dev/sdXWipe entire free space cache
๐Ÿ“ˆ Show progressbtrfs check -p /dev/sdXIndicate progress during phases
๐Ÿ” Verify qgroup accountingbtrfs check -Q /dev/sdXCompare qgroup vs filesystem

๐Ÿ“‹ SYNOPSIS

btrfs check [options] <device>

๐Ÿ“ DESCRIPTION

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.

โš ๏ธ Warning: 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.

โœ… SAFE OR ADVISORY OPTIONS

๐Ÿ“ฆ -b|--backup

Use the first valid set of backup roots stored in the superblock. This can be combined with --super if some of the superblocks are damaged.

๐Ÿ” --check-data-csum

Verify checksums of data blocks. 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>

Use the given offset bytenr for the chunk tree root.

๐Ÿ“Š -E|--subvol-extents <subvolid>

Show extent state for the given subvolume.

โณ -p|--progress

Indicate progress at various checking phases.

๐Ÿ“ˆ -Q|--qgroup-report

Verify qgroup accounting and compare against filesystem accounting.

๐Ÿ“Œ -r|--tree-root <bytenr>

Use the given offset bytenr for the tree root.

๐Ÿ”’ --readonly

(default) Run in read-only mode, this option exists to calm potential panic when users are going to run the checker.

๐Ÿ“€ -s|--super <superblock>

Use 'superblock'th superblock copy, valid values are 0, 1 or 2 if the respective superblock offset is within the device size. This can be used to use a different starting point if some of the primary superblock is damaged.

๐Ÿงน --clear-space-cache v1|v2

Completely wipe all free space cache of given type. 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

Remove leftover items pertaining to the deprecated inode map feature.

โ˜ ๏ธ DANGEROUS OPTIONS

๐Ÿ› ๏ธ --repair

Enable the repair mode and attempt to fix problems where possible. Note: there's a warning and 10 second delay when this option is run without --force to give users a chance to think twice before running repair, the warnings in documentation have shown to be insufficient.

๐Ÿ”„ --init-csum-tree

Create a new checksum tree and recalculate checksums in all files. Note: Do not blindly use this option to fix checksum mismatch problems.

๐Ÿ”จ --init-extent-tree

Build the extent tree from scratch. Note: Do not use unless you know what you're doing.

โš™๏ธ --mode <MODE>

Select mode of operation regarding memory and IO. The MODE can be one of:

๐Ÿ’ช --force

Allow work on a mounted filesystem. Note that this should work fine on a quiescent or read-only mounted filesystem but may crash if the device is changed externally, eg. by the kernel module. Repair without mount checks is not supported right now. This option also skips the delay and warning in the repair mode (see --repair).

๐Ÿšช EXIT STATUS

btrfs check returns a zero exit status if it succeeds. Non zero is returned in case of failure.

๐ŸŒ AVAILABILITY

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

๐Ÿ“š SEE ALSO

mkfs.btrfs(8), btrfs-scrub(8), btrfs-rescue(8)

Btrfs v5.16.2   02/16/2022   BTRFS-CHECK(8)

BTRFS-CHECK
๐Ÿ“– NAME ๐Ÿš€ Quick Reference ๐Ÿ“‹ SYNOPSIS ๐Ÿ“ DESCRIPTION โœ… SAFE OR ADVISORY OPTIONS
๐Ÿ“ฆ -b|--backup ๐Ÿ” --check-data-csum ๐Ÿ“Œ --chunk-root <bytenr> ๐Ÿ“Š -E|--subvol-extents <subvolid> โณ -p|--progress ๐Ÿ“ˆ -Q|--qgroup-report ๐Ÿ“Œ -r|--tree-root <bytenr> ๐Ÿ”’ --readonly ๐Ÿ“€ -s|--super <superblock> ๐Ÿงน --clear-space-cache v1|v2 ๐Ÿ—‘๏ธ --clear-ino-cache
โ˜ ๏ธ DANGEROUS OPTIONS
๐Ÿ› ๏ธ --repair ๐Ÿ”„ --init-csum-tree ๐Ÿ”จ --init-extent-tree โš™๏ธ --mode <MODE> ๐Ÿ’ช --force
๐Ÿšช 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:49 @2600:1f28:365:80b0:7cb9:fb:26c1:e368
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Valid XHTML 1.0 Transitional!Valid CSS!