From d825db72c27893fe0cc0c409d8ff0b541d050f87 Mon Sep 17 00:00:00 2001 From: Tommy Date: Fri, 28 Jul 2023 15:51:57 -0700 Subject: [PATCH] update --- ...Mirroring, and Remote Unlocking with Ubuntu.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/content/posts/linux/Root ZFS Encryption, Mirroring, and Remote Unlocking with Ubuntu.md b/content/posts/linux/Root ZFS Encryption, Mirroring, and Remote Unlocking with Ubuntu.md index c980099..c42f8bd 100644 --- a/content/posts/linux/Root ZFS Encryption, Mirroring, and Remote Unlocking with Ubuntu.md +++ b/content/posts/linux/Root ZFS Encryption, Mirroring, and Remote Unlocking with Ubuntu.md @@ -249,23 +249,24 @@ EOF ```bash apt install efibootmgr -y -efibootmgr -c -d /dev/nvme0n1 -p 1 \ - -L "ZFSBootMenu (Backup)" \ - -l \\EFI\\ZBM\\VMLINUZ-BACKUP.EFI - efibootmgr -c -d "/dev/nvme0n1" -p 1 \ -L "ZFSBootMenu" \ -l \\EFI\\ZBM\\VMLINUZ.EFI -### Skip this section if you are not doing mirroring -efibootmgr -c -d /dev/nvme0n2 -p 1 \ +efibootmgr -c -d /dev/nvme0n1 -p 1 \ -L "ZFSBootMenu (Backup)" \ -l \\EFI\\ZBM\\VMLINUZ-BACKUP.EFI +### Skip this section if you are not doing mirroring + efibootmgr -c -d "/dev/nvme0n2" -p 1 \ - -L "ZFSBootMenu" \ + -L "ZFSBootMenu 2" \ -l \\EFI\\ZBM\\VMLINUZ.EFI +efibootmgr -c -d /dev/nvme0n2 -p 1 \ + -L "ZFSBootMenu 2 (Backup)" \ + -l \\EFI\\ZBM\\VMLINUZ-BACKUP.EFI + ``` ### Exit the environment