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 66e4466..b6a79e1 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 @@ -20,9 +20,14 @@ cfdisk /dev/nvme0n1 cfdisk /dev/nvme0n2 ``` +![cfdisk](/images/cfdisk.png) ## Mirroring the ESP partition +__Skip this if you are not doing mirroring__ + While the EFI specs do not support `mdadm`, we can setup mdadm with metadata v1.0, which will be put at the end of the parition and allows it to boot. -`mdadm --create /dev/md0 --level 1 --raid-disks --metadata 1.0 /dev/nvme0n1p1 /dev/nvme0n1p2` \ No newline at end of file +```bash +mdadm --create /dev/md0 --level 1 --raid-disks --metadata 1.0 /dev/nvme0n1p1 /dev/nvme0n1p2 +``` \ No newline at end of file diff --git a/static/images/cfdisk.png b/static/images/cfdisk.png new file mode 100644 index 0000000..a84b7cc Binary files /dev/null and b/static/images/cfdisk.png differ