From cea952ae7e933a124d7553bedf241d675b9521ff Mon Sep 17 00:00:00 2001 From: Tommy Date: Sun, 12 Mar 2023 15:01:23 -0400 Subject: [PATCH] Delete rpool/copyroot dataset Signed-off-by: Tommy --- .../posts/linux/Using Native ZFS Encryption with Proxmox.md | 3 +++ 1 file changed, 3 insertions(+) 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 fdc0e69..18c9508 100644 --- a/content/posts/linux/Using Native ZFS Encryption with Proxmox.md +++ b/content/posts/linux/Using Native ZFS Encryption with Proxmox.md @@ -47,6 +47,9 @@ zfs create -o encryption=on -o keyformat=passphrase rpool/ROOT # Copy the files from the copy to the new encrypted zfs root zfs send -R rpool/copyroot/pve-1@copy | zfs receive -o encryption=on rpool/ROOT/pve-1 +# Deviate from the original gist and delete copyroot +zfs destroy -r rpool/copyroot + # Set the Mountpoint zfs set mountpoint=/ rpool/ROOT/pve-1