stm / [WIP] ZFS commands

Last active 3 hours ago

Like 0

Commands to create new ZFS pool and datasets on Linux

Revision 9071edc0350198062c6f0c0c61cd8f8bac8c13b6

zfs.txt Raw
1# RAIDZ2 pool creation
2#
3# -o (lowercase) is a _pool_ setting, -O (uppercase) is a _root dataset_ setting
4#
5# ashift=12: 2^12 = 4KiB sectors, for certain NVMe drives use 13 (8KiB)
6# autotrim: TRIM for SSDs
7# encryption=on: Defaults to aes-256-gcm (since 0.8.4)
8# pbkdf2iters=700000: Double the default PBKDF2-SHA1(?) iterations, default is 350000
9# dnodesize=auto: Is supposed to be used on systems running SAMBA with xattr=sa
10# compression=on: Defaults to lz4 (when lz4_compress is enabled, see `zpool get feature@lz4_compress ${NAME}`)
11# normalization=formD: Decomposed Unicode normalization, implies utf8only=on, so UTF-8 filenames only
12# longname=on: Allows filenames up to 1023 bytes, default is off meaning 255 bytes (supported since 2.3.0)
13# direct: Unset, defaulting to always (since 2.2.0)
14# !!! recordsize: Unset, defaulting to 128KiB (important performance related setting!)
15#
16# Sources:
17# https://openzfs.github.io/openzfs-docs/Getting%20Started/Debian/Debian%20Trixie%20Root%20on%20ZFS.html#step-2-disk-formatting
18# https://openzfs.github.io/openzfs-docs/man/master/7/zfsprops.7.html#compression
19# https://openzfs.github.io/openzfs-docs/man/master/7/zfsprops.7.html#direct
20# https://openzfs.github.io/openzfs-docs/man/master/7/zfsprops.7.html#dnodesize
21# https://openzfs.github.io/openzfs-docs/man/master/7/zfsprops.7.html#longname
22# https://openzfs.github.io/openzfs-docs/man/master/7/zfsprops.7.html#pbkdf2iters
23#
24#
25zpool create \
26 -o ashift=12 \
27 -o autotrim=on \
28 -O encryption=on -O keylocation=prompt -O keyformat=passphrase \
29 -O pbkdf2iters=700000 \
30 -O acltype=posixacl -O xattr=sa -O dnodesize=auto \
31 -O compression=on \
32 -O normalization=formD \
33 -O relatime=on \
34 -O longname=on \
35 -O canmount=off \
36 -O mountpoint=/mnt/${NAME} ${NAME} \
37 raidz2 \
38 ${DISK1..N}
39
40
41# Dataset creation
42TODO