View previous topic :: View next topic |
Author |
Message |
fishsemxpinha n00b

Joined: 01 Jul 2022 Posts: 12
|
Posted: Tue Aug 23, 2022 6:13 pm Post subject: [SOLVED] Lost Wi-Fi after system update |
|
|
Hi all,
I’ve done a system update and after reboot can’t get my Wi-Fi to work again.
syslog has the following error:
Code: | NetworkManager: <error> iwd-manager: failed to acquire IWD Object Manager: Wi-Fi will not be available (Error calling StartServiceByName for net.connman.iwd: Launch helper exited with unknown return code 1) |
Any ideas what this could be? I couldn’t find online references to such error.
Drivers seem to be properly loaded and rfkill is not showing any blocked devices. nmcli won’t list any Wi-Fi networks, but does show.
Last edited by fishsemxpinha on Tue Aug 23, 2022 6:50 pm; edited 1 time in total |
|
Back to top |
|
 |
alamahant Advocate

Joined: 23 Mar 2019 Posts: 3958
|
|
Back to top |
|
 |
fishsemxpinha n00b

Joined: 01 Jul 2022 Posts: 12
|
Posted: Tue Aug 23, 2022 6:50 pm Post subject: |
|
|
Many thanks for the reference. Will apply.
In the meantime I've managed to connect via wi-fi using iwd in the meantime with iwctl and then setting ip, dns and ip route manually, so I can fix this now as I don't have any way to connect using cable atm.
A reference for anyone needing to connect temporarily with iwd on WPA2 networks:
Code: | # iwctl station wlan0 get-networks
# iwctl station wlan0 connect <SSID>
Passphrase: **************
# ip address add <ipaddress/mask> dev wlan0
# ip route add default via <gateway>
# echo "nameserver 1.1.1.1" | resolvconf -a wlan0 |
example:
Code: | # iwctl station wlan0 get-networks
# iwctl station wlan0 connect SomeNetworkName
Passphrase: mynetworkpassphrase
# ip address add 192.168.1.100/24 dev wlan0
# ip route add default via 192.168.1.1
# echo "nameserver 1.1.1.1" | resolvconf -a wlan0 |
|
|
Back to top |
|
 |
NuLL3rr0r Tux's lil' helper

Joined: 13 Jul 2009 Posts: 96 Location: The Netherlands
|
Posted: Sun Oct 09, 2022 2:01 pm Post subject: |
|
|
Thank you! That was a life saver on 3 systems. I'm wondering why they don't document such changes in an ebuild message for example. |
|
Back to top |
|
 |
|