WiFi
Note: You can skip this part of the guide if you have a wired connection.
- Run
iwctl
- Find your device:
device list
- Scan for networks:
station <DEVICE> scan
- List all scanned networks:
station <DEVICE> get-networks
- Connect to your network:
station <DEVICE> connect <NETWORK_SSID>
- Enter the network passphrase
- Quit iwctl:
quit
ping archlinux.org
- If everything went well, you should see ping responses indicating you have an internet connection
Troubleshooting
General troubleshooting information can be found on the archwiki
Operation failed when trying to connect
Running journalctl -u iwd
gives you information about what has gone wrong.
Recieved Deauthentication event, reason: 2, from_ap: true
If you are encountering this issue you can follow these steps:
- Create or open the iwd config file:
vim /etc/iwd/main.conf
- Add:
[General] ControlPortOverNL80211=False
- Save and quit:
:wq
- Restart iwd:
systemctl restart iwd.service
- Try connecting again