From fc290a728dad5f43fe538e2ac5ec925182c05230 Mon Sep 17 00:00:00 2001 From: Tristan Ancelet Date: Fri, 10 Nov 2023 16:36:36 -0600 Subject: [PATCH] Had to fix typo when installing networkmanager, caused it to fail to install NM and wpa_supplicant --- bare-arch-install.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bare-arch-install.sh b/bare-arch-install.sh index a31cad1..ae76719 100755 --- a/bare-arch-install.sh +++ b/bare-arch-install.sh @@ -201,6 +201,9 @@ locale-gen ## Configure locale.conf echo 'LANG=$LOCALE' > /etc/locale.conf +sync +sleep 1 + # Install and Enable Networking Systems ## #networkmanager: @@ -211,10 +214,13 @@ echo 'LANG=$LOCALE' > /etc/locale.conf ## ## Installing networking packages -pacman -S --noconfirm networkmangager wpa_supplicant +pacman -S --noconfirm networkmanager wpa_supplicant ## Enabling systemd services systemctl enable wpa_supplicant NetworkManager +sync +sleep 1 + ## Installing bootloader #grub: #Grub is a bootloader. A program that helps you boot into an installed system