add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,28 +1,28 @@
# btrfs subvolume
# btrfs 子卷
> 管理 btrfs 子卷和快照。
> 更多信息:<https://btrfs.readthedocs.io/en/latest/btrfs-subvolume.html>.
> 更多信息:<https://btrfs.readthedocs.io/en/latest/btrfs-subvolume.html>
- 创建一个新的空子卷:
`sudo btrfs subvolume create {{指向新子卷的路径}}`
`sudo btrfs subvolume create {{path/to/new_subvolume}}`
- 列出指定文件系统中的所有子卷和快照:
`sudo btrfs subvolume list {{指向 btrfs 文件系统的路径}}`
`sudo btrfs subvolume list {{path/to/btrfs_filesystem}}`
- 删除一个子卷:
`sudo btrfs subvolume delete {{指向子卷的路径}}`
`sudo btrfs subvolume delete {{path/to/subvolume}}`
- 创建现有子卷的只读快照:
- 创建一个现有子卷的只读快照:
`sudo btrfs subvolume snapshot -r {{指向源子卷的路径}} {{指向目标的路径}}`
`sudo btrfs subvolume snapshot -r {{path/to/source_subvolume}} {{path/to/target}}`
- 创建现有子卷的读写快照:
- 创建一个现有子卷的读写快照:
`sudo btrfs subvolume snapshot {{指向源子卷的路径}} {{指向目标的路径}}`
`sudo btrfs subvolume snapshot {{path/to/source_subvolume}} {{path/to/target}}`
- 显示有关子卷的详细信息:
`sudo btrfs subvolume show {{指向子卷的路径}}`
`sudo btrfs subvolume show {{path/to/subvolume}}`