Last active
November 26, 2018 09:19
-
-
Save Finkregh/9492f6d9fbde015cef6bab908d4d181b to your computer and use it in GitHub Desktop.
zfs encrypted pool
This file contains 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
# this needs a rather recent verison of ZFS... | |
# uses /dev/sdb completely | |
zpool create -m /mnt/zfs/wd-black -o ashift=12 wd-black /dev/sdb | |
# create volume that is encrypted | |
zfs create -o encryption=on -o keyformat=passphrase wd-black/crypted | |
# create subvol inside the crypted volume | |
zfs create wd-black/crypted/rsync |
This file contains 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
# zpool list | |
NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT | |
wd-black 1.81T 52.2G 1.76T - - 0% 2% 1.00x ONLINE - | |
# zfs list | |
NAME USED AVAIL REFER MOUNTPOINT | |
wd-black 52.2G 1.70T 96K /mnt/zfs/wd-black | |
wd-black/crypted 52.2G 1.70T 200K /mnt/zfs/wd-black/crypted | |
wd-black/crypted/rsync 52.2G 1.70T 52.2G /mnt/zfs/wd-black/crypted/rsync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment