Had to fix typo when installing networkmanager, caused it to fail to install NM and wpa_supplicant

This commit is contained in:
Tristan Ancelet 2023-11-10 16:36:36 -06:00
parent 9f6f752a8a
commit fc290a728d

View File

@ -201,6 +201,9 @@ locale-gen
## Configure locale.conf ## Configure locale.conf
echo 'LANG=$LOCALE' > /etc/locale.conf echo 'LANG=$LOCALE' > /etc/locale.conf
sync
sleep 1
# Install and Enable Networking Systems # Install and Enable Networking Systems
## ##
#networkmanager: #networkmanager:
@ -211,10 +214,13 @@ echo 'LANG=$LOCALE' > /etc/locale.conf
## ##
## Installing networking packages ## Installing networking packages
pacman -S --noconfirm networkmangager wpa_supplicant pacman -S --noconfirm networkmanager wpa_supplicant
## Enabling systemd services ## Enabling systemd services
systemctl enable wpa_supplicant NetworkManager systemctl enable wpa_supplicant NetworkManager
sync
sleep 1
## Installing bootloader ## Installing bootloader
#grub: #grub:
#Grub is a bootloader. A program that helps you boot into an installed system #Grub is a bootloader. A program that helps you boot into an installed system