From d7f4fc77da452cdb145cd6de8a8b3a49ec2a7059 Mon Sep 17 00:00:00 2001 From: beech Date: Fri, 13 Sep 2024 20:07:57 -0500 Subject: [PATCH] Rollback --- install1-ex.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/install1-ex.sh b/install1-ex.sh index 6be409c..c0ad0b5 100644 --- a/install1-ex.sh +++ b/install1-ex.sh @@ -48,22 +48,22 @@ sgdisk -c 4:"home" $DISK # make filesystems echo -e "\nCreating Filesystems...\n$HR" -mkfs.fat -F32 -n "boot" $(DISK)1 # FAT32 boot partition -mkswap -L swap $(DISK)2 # create SWAP -swapon -L swap # enable SWAP -mkfs.ext4 -L root $(DISK)3 -mkfs.ext4 -L home $(DISK)4 +mkfs.fat -F32 "$(DISK)1" # FAT32 boot partition +mkswap "$(DISK)2" # create SWAP +swapon "$(DISK)2" # enable SWAP +mkfs.ext4 "$(DISK)3" +mkfs.ext4 "$(DISK)4" # mount partitions echo "-------------------------------------------------" echo "Mounting Partitions" echo "-------------------------------------------------" -mount -t ext4 $(DISK)3 /mnt +mount "$(DISK)3" /mnt mkdir /mnt/boot mkdir /mnt/home -mount $(DISK)1 /mnt/boot -mount $(DISK)4 /mnt/home +mount "$(DISK)1" /mnt/boot +mount "$(DISK)4" /mnt/home # install arch echo "-------------------------------------------------"