1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-09 09:06:01 +02:00
tldr/pages/linux/btrfs-scrub.md
Managor 79b8d3e3b8
*: replace … with individual dots and refresh pages (#16368)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-05-04 10:20:26 +03:00

29 lines
798 B
Markdown

# btrfs scrub
> Scrub btrfs filesystems to verify data integrity.
> It is recommended to run a scrub once a month.
> More information: <https://btrfs.readthedocs.io/en/latest/btrfs-scrub.html>.
- Start a scrub:
`sudo btrfs scrub start {{path/to/btrfs_mount}}`
- Show the status of an ongoing or last completed scrub:
`sudo btrfs scrub status {{path/to/btrfs_mount}}`
- Cancel an ongoing scrub:
`sudo btrfs scrub cancel {{path/to/btrfs_mount}}`
- Resume a previously cancelled scrub:
`sudo btrfs scrub resume {{path/to/btrfs_mount}}`
- Start a scrub, but do not put the program in the [B]ackground:
`sudo btrfs scrub start -B {{path/to/btrfs_mount}}`
- Start a scrub in quiet mode (does not print errors or statistics):
`sudo btrfs scrub start {{[-q|--quiet]}} {{path/to/btrfs_mount}}`