From 1e73d0f30817fa5ac60801ea6e74b26d5b1aab41 Mon Sep 17 00:00:00 2001 From: Harsh Virdi Date: Fri, 17 Oct 2025 21:18:21 +0530 Subject: [PATCH] Updated script so that the OS installs on one continious drive, instead of partitioning it. --- setup | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup b/setup index 7f90bf6..c7d6a2c 100755 --- a/setup +++ b/setup @@ -19,9 +19,9 @@ cfdisk $drive echo "Enter the partition for your root: " read rootpartition mkfs.ext4 $rootpartition -echo "Enter the partition for your home: " -read homepartition -mkfs.ext4 $homepartition + + + read -p "Did you also create efi partition? [y/n]" answer if [[ $answer = y ]] ; then echo "Enter EFI partition: " @@ -30,7 +30,7 @@ if [[ $answer = y ]] ; then fi mount $rootpartition /mnt mkdir /mnt/home -mount $homepartition /mnt/home + # Generating fstab file so the system can find our filesystem on reboot mkdir /mnt/etc