From 8a6eccb88463113d7d30eba75b6f47b0bb5e8e75 Mon Sep 17 00:00:00 2001 From: Tristan Ancelet Date: Fri, 10 Nov 2023 16:13:25 -0600 Subject: [PATCH] Had to alter my 'yes' calls. As I had put un-needed flags '-y' that caused the utility to error out, causing my install to fail --- bare-arch-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bare-arch-install.sh b/bare-arch-install.sh index 2e677b1..90c4d07 100755 --- a/bare-arch-install.sh +++ b/bare-arch-install.sh @@ -211,7 +211,7 @@ echo 'LANG=$LOCALE' > /etc/locale.conf ## ## Installing networking packages -pacman -y -S networkmangager wpa_supplicant +yes | pacman -S networkmangager wpa_supplicant ## Enabling systemd services systemctl enable wpa_supplicant NetworkManager @@ -229,11 +229,11 @@ systemctl enable wpa_supplicant NetworkManager ` case "${BOOT_METHOD,,}" in efi) - echo "yes -y | pacman -y -S grub efibootmgr" + echo "yes | pacman -y -S grub efibootmgr" echo "grub-install --target=x86_64-efi --bootloader-id=GRUB --efi-directory=/boot/efi" ;; bios) - echo "yes -y | pacman -y -S grub" + echo "yes | pacman -y -S grub" echo "grub-install --target=i386-pc --boot-directory=/boot" ;; esac @@ -256,7 +256,7 @@ grub-mkconfig -o /boot/grub/grub.cfg # This is the default desktop manager (login screen) for gnome. This just handles the login screen and starting up your desktop session & windowing system based off of your choices. ## Install desktop env -pacman -y -S gnome +yes | pacman -y -S gnome ## Enable desktop manager/login-screen systemctl enable gdm