From b228e1d5834eb745b35f1c24f779f7b1412c83db Mon Sep 17 00:00:00 2001 From: beech Date: Thu, 4 Jul 2024 01:39:29 -0500 Subject: [PATCH] Added comments for partitions --- preinstall1.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/preinstall1.sh b/preinstall1.sh index d787550..bc4569a 100644 --- a/preinstall1.sh +++ b/preinstall1.sh @@ -9,8 +9,8 @@ sgdisk -a 2048 -o /dev/sda # new gpt disk 2048 alignment # create partitions sgdisk -n 1:0:1024M /dev/sda # partition 1 (boot) -sgdisk -n 2:0:4G /dev/sda # partition 2 (SWAP) -sgdisk -n 3:0:35G /dev/sda # partition 3 (root) +sgdisk -n 2:0:4G /dev/sda # partition 2 (SWAP - change to desired size) +sgdisk -n 3:0:35G /dev/sda # partition 3 (root - change to desired size) sgdisk -n 4:0:0 /dev/sda # partition 4 (home, remaining space) # set partition types @@ -62,7 +62,7 @@ rankmirrors -n 6 /etc/pacman.d/mirrorlist.backup > /etc/pacman.d/mirrorlist pacstrap -K /mnt base linux linux-firmware base-devel --noconfirm --needed echo "-------------------------------------------------" -echo "Arch Installed - Generating fstab and entering chroot" +echo "Installed - Generating fstab" echo "-------------------------------------------------" # generate fstab @@ -70,5 +70,5 @@ echo "-------------------------------------------------" genfstab -U -p /mnt >> /mnt/etc/fstab echo "-------------------------------------------------" -echo "Finished with install script 1. Please run [arch-chroot /mnt], create your user and move on to the 2nd installer." +echo "Finished install script 1. Please run [arch-chroot /mnt], create your user and move on to the 2nd installer." echo "-------------------------------------------------"