From eb1098bc37580c159708dbdd05dff1691842eefc Mon Sep 17 00:00:00 2001 From: Tommy Date: Tue, 18 Jun 2024 16:07:42 -0700 Subject: [PATCH] Change /dev/urandom to /dev/random 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 a777784..0820e6c 100644 --- a/content/posts/linux/Using Native ZFS Encryption with Proxmox.md +++ b/content/posts/linux/Using Native ZFS Encryption with Proxmox.md @@ -75,7 +75,7 @@ Note that the encryption key will be stored inside of the `rpool/ROOT` dataset. zfs destroy -r rpool/data # Create a new encryption key -dd if=/dev/urandom bs=32 count=1 of=/.data.key +dd if=/dev/random bs=32 count=1 of=/.data.key # Set the approprieate permission chmod 400 /.data.key