mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 20:55:24 +02:00
btrfs-subvolume: add pt_BR translation (#8657)
* btrfs-subvolume: add pt_BR translation * Update pages.pt_BR/linux/btrfs-subvolume.md
This commit is contained in:
parent
517c7047e2
commit
dc83b80f42
1 changed files with 28 additions and 0 deletions
28
pages.pt_BR/linux/btrfs-subvolume.md
Normal file
28
pages.pt_BR/linux/btrfs-subvolume.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# btrfs subvolume
|
||||
|
||||
> Gerencia subvolumes e snapshots btrfs.
|
||||
> Mais informações: <https://btrfs.wiki.kernel.org/index.php/Manpage/btrfs-subvolume>.
|
||||
|
||||
- Cria um novo subvolume vazio:
|
||||
|
||||
`sudo btrfs subvolume create {{caminho/para/novo_subvolume}}`
|
||||
|
||||
- Lista todos os subvolumes e snapshots no sistema de arquivos especificado:
|
||||
|
||||
`sudo btrfs subvolume list {{caminho/para/sistema_de_arquivos_btrfs}}`
|
||||
|
||||
- Exclui um subvolume:
|
||||
|
||||
`sudo btrfs subvolume delete {{caminho/para/subvolume}}`
|
||||
|
||||
- Cria um snapshot somente leitura de um subvolume existente:
|
||||
|
||||
`sudo btrfs subvolume snapshot -r {{caminho/para/subvolume_de_origem}} {{caminho/para/destino}}`
|
||||
|
||||
- Cria um snapshot de leitura/gravação de um subvolume existente:
|
||||
|
||||
`sudo btrfs subvolume snapshot {{caminho/para/subvolume_de_origem}} {{caminho/para/destino}}`
|
||||
|
||||
- Mostra informações detalhadas sobre um subvolume:
|
||||
|
||||
`sudo btrfs subvolume show {{caminho/para/subvolume}}`
|
Loading…
Add table
Reference in a new issue