Browse Source

Modular Install script

main
Yiğit Çolakoğlu 4 years ago
parent
commit
8a2604107c
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      arch-setup/arch-setup.sh

+ 6
- 1
arch-setup/arch-setup.sh View File

@ -21,12 +21,17 @@ if [ ! "$wipe" = "n" ]; then
fi fi
echo "[INFO]: Wiping the partition table..." echo "[INFO]: Wiping the partition table..."
wipefs -a -f $device wipefs -a -f $device
sleep 1
fi fi
clear
# Run cfdisk for manual partitioning # Run cfdisk for manual partitioning
cfdisk $device cfdisk $device
clear
lsblk $device
echo ""
echo "Now you will specify the partitions you have created" echo "Now you will specify the partitions you have created"
echo "Please enter the suffix for each partition. For Ex:" echo "Please enter the suffix for each partition. For Ex:"
echo "1 if boot partition is /dev/sda1 or p1 if boot is on /dev/nvme0n1p1 and the disk is /dev/nvme0n1" echo "1 if boot partition is /dev/sda1 or p1 if boot is on /dev/nvme0n1p1 and the disk is /dev/nvme0n1"


Loading…
Cancel
Save