From 39959de82aad19df9776c16f7b11928b975fa86a Mon Sep 17 00:00:00 2001 From: Pig Monkey Date: Thu, 6 Sep 2018 18:59:08 -0700 Subject: [PATCH] fix typo --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index c3ae61c..e85bcec 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -124,14 +124,14 @@ Configure GRUB. $ echo GRUB_ENABLE_CRYPTODISK=y >> /etc/default/grub - # BIOS mode - set the UUID of the encrpyted root device + # BIOS mode - set the UUID of the encrypted root device $ ROOTUUID=$(blkid /dev/sda1 | awk '{print $2}' | cut -d '"' -f2) $ sed -i "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"cryptdevice=UUID="$ROOTUUID":lvm:allow-discards resume=\/dev\/mapper\/arch-swap\"/" /etc/default/grub $ grub-mkconfig -o /boot/grub/grub.cfg $ grub-install /dev/sda $ chmod -R g-rwx,o-rwx /boot - # UEFI mode - set the UUID of the encrpyted root device + # UEFI mode - set the UUID of the encrypted root device $ ROOTUUID=$(blkid /dev/sda3 | awk '{print $2}' | cut -d '"' -f2) $ sed -i "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"cryptdevice=UUID="$ROOTUUID":lvm:allow-discards root=\/dev\/mapper\/arch-root resume=\/dev\/mapper\/arch-swap\"/" /etc/default/grub $ grub-mkconfig -o /boot/grub/grub.cfg