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,36 +1,36 @@
# zpool
> 管理 ZFS 池。
> 更多信息:<https://manned.org/zpool>.
> 更多信息:<https://manned.org/zpool>
- 显示所有 ZFS 池的配置和状态:
`zpool status`
- 检查 ZFS 池是否有错误(验证每个块的校验和)。非常消耗 CPU 和磁盘资源:
- 检查 ZFS 池错误(验证每个块的校验和)。非常消耗 CPU 和磁盘资源:
`zpool scrub {{池名称}}`
`zpool scrub {{pool_name}}`
- 列出可导入的 ZFS 池
- 列出可导入的 Zpool
`zpool import`
- 导入一个 ZFS 池
- 导入一个 Zpool
`zpool import {{池名称}}`
`zpool import {{pool_name}}`
- 导出一个 ZFS 池(卸载所有文件系统):
- 导出一个 Zpool(卸载所有文件系统):
`zpool export {{池名称}}`
`zpool export {{pool_name}}`
- 显示所有池操作的历史记录:
`zpool history {{池名称}}`
`zpool history {{pool_name}}`
- 创建一个镜像池:
`zpool create {{池名称}} mirror {{磁盘1}} {{磁盘2}} mirror {{磁盘3}} {{磁盘4}}`
`zpool create {{pool_name}} mirror {{disk1}} {{disk2}} mirror {{disk3}} {{disk4}}`
- 向 ZFS 池添加一个缓存L2ARC设备
- 向 Zpool 添加一个缓存L2ARC设备
`zpool add {{池名称}} cache {{缓存磁盘}}`
`zpool add {{pool_name}} cache {{cache_disk}}`