Add 'zfs'

bucde
2022-10-20 13:58:01 +00:00
parent 2580e900b2
commit 0e7186ba7f

12
zfs.md Normal file

@ -0,0 +1,12 @@
# ZFS
## Create ZVOL
* `-s` thin zfs volume
* `-v` verbose
* `-V <BYTES>` size of the new zfs volume
* `<POOLNAME>` name of existing pool
* `<ZVOLNAME>` name of the new zfs volume
```
zfs create -s -v -V <BYTES> <POOLNAME>/<ZVOLNAME>
```