This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Створити ZFS пул | |
# Створити датасети | |
zfs create tank/photo | |
zfs create tank/files | |
# Обмеження розміру датасетів | |
zfs set quota=50G tank/photo | |
zfs get quota tank/photo | |
zfs set quota=none tank/photo |