Connecting to Wi-Fi on Arch Linux using iwd
INFO
A simple guide to using iwd
(iNet wireless daemon) to connect to Wi-Fi on Arch Linux.
Connecting to a Wi-Fi Network
Start the
iwd
interactive shell to manage your Wi-Fi:shiwctl
List available networks:
shstation wlan0 get-networks
Connect to your desired network:
shstation wlan0 connect "your_wifi_name"
To exit the
iwd
interactive shell:shexit
Useful Commands
List all wireless devices:
shdevice list
List all wireless adapters:
shadapter list
Disconnect from a Wi-Fi network:
shstation wlan0 disconnect
View Info
INFO
To view detailed information about your wireless device, you can use the following commands:
To see general information about the device like the MAC address:
shdevice wlan0 show
To view the connection details:
shstation wlan0 show
To see detailed information about the adapter:
shadapter phy0 show
Troubleshooting
INFO
If you're trying to connect and your wireless device shows "Powered off" when you run device list, and you get an error message when trying to power it on, here's how to fix it:
First, make sure that the adapter is powered on using the following command:
shadapter phy0 set-property Powered on
Then, power on the wireless device itself:
shdevice wlan0 set-property Powered on
INFO
Replace
phy0
andwlan0
with your specific adapter and device names, if necessary.