tldr/pages.fr/linux/btrfs-subvolume.md

29 lines
982 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# btrfs subvolume
> Gestion des sous-volumes et instantanés btrfs.
> Plus d'informations : <https://btrfs.readthedocs.io/en/latest/btrfs-subvolume.html>.
- Créer un nouveau sous-volume vide :
`sudo btrfs subvolume create {{chemin/vers/nouveau_sous_volume}}`
- Lister tous les sous-volumes et instantanés du système de fichiers indiqué :
`sudo btrfs subvolume list {{chemin/vers/systeme_de_fichiers_btrfs}}`
- Supprimer un sous-volume :
`sudo btrfs subvolume delete {{chemin/vers/sous_volume}}`
- Créer un instantané en lecture seule d'un sous-volume existant :
`sudo btrfs subvolume snapshot -r {{chemin/vers/sous_volume_source}} {{chemin/vers/sous_volume_cible}}`
- Créer un instantané en lecture et écriture d'un sous-volume existant :
`sudo btrfs subvolume snapshot {{chemin/vers/sous_volume_source}} {{chemin/vers/sous_volume_cible}}`
- Afficher les informations détaillées d'un sous-volume :
`sudo btrfs subvolume show {{chemin/vers/sous_volume}}`