common/z*: add Korean translation (#14520)

This commit is contained in:
코드싸이
2024-11-02 02:58:11 +09:00
committed by GitHub
parent 68b644059f
commit f0c85945c8
47 changed files with 932 additions and 0 deletions

28
pages.ko/common/zfs.md Normal file
View File

@@ -0,0 +1,28 @@
# zfs
> ZFS 파일 시스템 관리.
> 더 많은 정보: <https://manned.org/zfs>.
- 사용 가능한 모든 ZFS 파일 시스템 나열:
`zfs list`
- 새 ZFS 파일 시스템 생성:
`zfs create {{풀_이름/파일시스템_이름}}`
- ZFS 파일 시스템 삭제:
`zfs destroy {{풀_이름/파일시스템_이름}}`
- ZFS 파일 시스템의 스냅샷 생성:
`zfs snapshot {{풀_이름/파일시스템_이름}}@{{스냅샷_이름}}`
- 파일 시스템에 압축 활성화:
`zfs set compression=on {{풀_이름/파일시스템_이름}}`
- 파일 시스템의 마운트 포인트 변경:
`zfs set mountpoint={{/my/mount/path}} {{풀_이름/파일시스템_이름}}`