Files
tldr/pages.fr/linux/btrfs-scrub.md
K.B.Dharun Krishna 5257568887 pages.*: add standard translation (#9672)
* pages./: Automatically add alias pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pages./: Automatically add links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Fix false positives from script

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2022-12-29 08:41:44 +05:30

30 lines
1006 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# btrfs scrub
> Éxaminer un système de fichiers btrfs pour vérifier l'intégrité de ses données.
> Il est recommandé de faire tourner une vérification tous les mois.
> Plus d'informations : <https://btrfs.readthedocs.io/en/latest/btrfs-scrub.html>.
- Démarrer un examen :
`sudo btrfs scrub start {{chemin/vers/point_de_montage_btrfs}}`
- Afficher le statut d'un examen en cours, ou du dernier examen complété :
`sudo btrfs scrub status {{chemin/vers/point_de_montage_btrfs}}`
- Stopper un examen en cours :
`sudo btrfs scrub cancel {{chemin/vers/point_de_montage_btrfs}}`
- Reprendre un examen précédemment stoppé :
`sudo btrfs scrub resume {{chemin/vers/point_de_montage_btrfs}}`
- Démarrer un examen, mais attendre qu'il termine avant de rendre la main :
`sudo btrfs scrub start -B {{chemin/vers/point_de_montage_btrfs}}`
- Démarrer un examen en mode silencieux (n'affiche ni erreurs ni statistiques) :
`sudo btrfs scrub start -q {{chemin/vers/le/point_de_montage_btrfs}}`