Simple guide how to turn on wifi in command line. If you don't have the packages and can only connect through wifi you need to use the bootable usb. This is how you can make it work on your installed machine.
Source code viewer
#Install the iwd package. pacman -S iwd # Create /etc/iwd/main.conf and ifll it with the lines below: [General] EnableNetworkConfiguration=true [Network] NameResolvingService=systemd # Start services. systemctl start iwd systemctl start systemd-resolved # Connect to a network. iwctl device list station device scan station device get-networks station device connect SSIDProgramming Language: Bash