Skip to content

Commit

Permalink
#2 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
term1nal authored Oct 9, 2019
1 parent f7b606f commit f364b2a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pages/common/zfs_ru.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# zfs

> Управление файловой системой ZFS.
- Список всех доступных файловых систем zfs:

`zfs list`

- Создание новой файловой системы ZFS:

`zfs create {{pool_name/filesystem_name}}`

- Удалить файловую систему ZFS:

`zfs destroy {{pool_name/filesystem_name}}`

- Create a Snapshot of a ZFS filesystem:

`zfs snapshot {{pool_name/filesystem_name}}@{{snapshot_name}}`

- Enable compression on a filesystem:

`zfs set compression=on {{pool_name/filesystem_name}}`

- Change mountpoint for a filesystem:

`zfs set mountpoint={{/my/mount/path}} {{pool_name/filesystem_name}}`

0 comments on commit f364b2a

Please sign in to comment.