Update easy-arch.sh

This commit is contained in:
Tommaso Chiti 2021-05-27 15:38:27 +02:00 committed by GitHub
parent 7bc3a46a3e
commit a9cdb0e127
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -142,23 +142,10 @@ kernel_selector
# Pacstrap (setting up a base sytem onto the new root).
echo "Installing the base system (it may take a while)."
pacstrap /mnt base $kernel $microcode linux-firmware btrfs-progs grub grub-btrfs efibootmgr snapper sudo apparmor reflector
pacstrap /mnt base $kernel $microcode linux-firmware btrfs-progs grub grub-btrfs efibootmgr snapper sudo apparmor reflector base-devel
network_selector
# Choice to install base-devel package
echo "base-devel contains helpful tools like gcc, automake, autoconf, sudo and many others."
read -r -p "This will install the base-devel package. Do you agree [y/N]? " bd_response
bd_response=${bd_response,,}
if [[ "$bd_response" =~ ^(yes|y)$ ]]
then
echo "Installing the package.."
pacstrap /mnt base-devel
else
echo "Quitting."
exit
fi
# Generating /etc/fstab.
echo "Generating a new fstab."
genfstab -U /mnt >> /mnt/etc/fstab