From c4e8d5c46d2ab669f74e3889e483ea27d65993e3 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 7 May 2022 21:51:47 +0000 Subject: [PATCH] Update install.sh --- install.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 2245aee..b15aaa5 100644 --- a/install.sh +++ b/install.sh @@ -69,15 +69,18 @@ sudo swapon $swapName # Create Subvolumes sudo btrfs subvolume create /mnt/@ -# sudo btrfs subvolume create /mnt/@home +sudo btrfs subvolume create /mnt/@home + +# Unmount root +sudo umount /mnt # 1. Create directory to mount partitions and subvolume sudo mkdir /mnt/boot/ -# sudo mkdir /mnt/home/ +sudo mkdir /mnt/home/ # 2. Mount the subvolumes. sudo mount -o noatime,commit=120,compress=zstd:10,space_cache,subvol=@ $rootName /mnt -# sudo mount -o noatime,commit=120,compress=zstd:10,space_cache,subvol=@home $rootName /mnt/home +sudo mount -o noatime,commit=120,compress=zstd:10,space_cache,subvol=@home $rootName /mnt/home # 3. Mount the EFI partition. sudo mount $efiName /mnt/boot