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

@@ -0,0 +1,28 @@
# btrfs inspect-internal
> 查询 btrfs 文件系统的内部信息。
> 更多信息:<https://btrfs.readthedocs.io/en/latest/btrfs-inspect-internal.html>。
- 打印超级块的信息:
`sudo btrfs inspect-internal dump-super {{path/to/partition}}`
- 打印超级块及其所有副本的信息:
`sudo btrfs inspect-internal dump-super --all {{path/to/partition}}`
- 打印文件系统的元数据:
`sudo btrfs inspect-internal dump-tree {{path/to/partition}}`
- 打印 inode `n`-th 中的文件列表:
`sudo btrfs inspect-internal inode-resolve {{n}} {{path/to/btrfs_mount}}`
- 打印给定逻辑地址的文件列表:
`sudo btrfs inspect-internal logical-resolve {{logical_address}} {{path/to/btrfs_mount}}`
- 打印根、区块、校验和和文件系统树的统计信息:
`sudo btrfs inspect-internal tree-stats {{path/to/partition}}`