From 01b9a4cff54ce60652b3e84346b565330bcbfed6 Mon Sep 17 00:00:00 2001 From: Tommy Date: Mon, 15 Jul 2024 13:57:58 -0700 Subject: [PATCH] Typo Fix Signed-off-by: Tommy --- content/posts/linux/Using Native ZFS Encryption with Proxmox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/linux/Using Native ZFS Encryption with Proxmox.md b/content/posts/linux/Using Native ZFS Encryption with Proxmox.md index 6ff40ef..5744860 100644 --- a/content/posts/linux/Using Native ZFS Encryption with Proxmox.md +++ b/content/posts/linux/Using Native ZFS Encryption with Proxmox.md @@ -91,7 +91,7 @@ chmod 400 /.data.key chattr +i /.data.key # Create a new dataset with encryption enabled -zfs create acltype=posix -o atime=off -o compression=zstd-3 -o checksum=blake3 -o dnodesize=auto -o encryption=on -o keyformat=passphrase -o keylocation=file:///.data.key -o overlay=off -o xattr=sa rpool/data +zfs create -o acltype=posix -o atime=off -o compression=zstd-3 -o checksum=blake3 -o dnodesize=auto -o encryption=on -o keyformat=passphrase -o keylocation=file:///.data.key -o overlay=off -o xattr=sa rpool/data ``` Next, we need to set up a systemd service for automatic unlocking. Put the following inside `/etc/systemd/system/zfs-load-key.service`: