From bc18fe3a55e077b18aef0c4a375ec95251161a4b Mon Sep 17 00:00:00 2001 From: John-Paul Bader Date: Tue, 7 Mar 2023 12:51:16 +0100 Subject: [PATCH] Update commands.md --- commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.md b/commands.md index d4cce3c..affa916 100644 --- a/commands.md +++ b/commands.md @@ -68,7 +68,7 @@ zpool upgrade # upgrade the storage pool to latest ver zpool labelclear [-f] # Clear vdev headers on disk of previous / faulted / obsolete pools zfs send pool/volume@snapshot \ # Compress and Encrypt a snapshot and send it to a remote host for backups | lz4 \ # Decrypt with: openssl enc -d -aes-256-cbc -a -in /path/to/backup/snapshot.lz4.ssl | unlz4 > /path/to/dest - | openssl enc -aes-256-cbc -a -salt \ # OR | zfs receive tank/volume + | openssl enc -aes-256-cbc -a -salt -pbkdf2 \ # OR | zfs receive tank/volume | ssh u@h "cat > /snapshot.lz4.ssl ```