I am dual booting Windows 11 and Fedora 38. My Wifi was working until I restarted, booted into Windows and updated windows. Secure boot is disabled. My dell latitude has a fast boot setting in the Sytem BIOS settings; I set that to “Thorough.” I disabled fast boot in windows using Powershell’s:
It might assist if you were to do a full sudo dnf upgrade --refresh then reboot to see if upgraded software and firmware may fix the problem. It is quite possible that your problem has already been fixed and a simple update may fix it.
If the update does not fix it then revisit the problem here and show current installed versions when you come back.
(Yes I know you already said you upgraded, but the firmware package you posted says otherwise.)
I ran the command and rebooted. I then the following(output attached):
❯ sudo dnf update -y && sudo dnf upgrade -y
[sudo] password for spurz:
Last metadata expiration check: 0:16:22 ago on Mon 27 Nov 2023 04:50:34 PM CST.
Dependencies resolved.
Nothing to do.
Complete!
Last metadata expiration check: 0:16:25 ago on Mon 27 Nov 2023 04:50:34 PM CST.
Dependencies resolved.
Nothing to do.
Complete!
WiFi works in Windows 11. Let me run a live usb and see if it works on that as well
With that command you are repeating the same exact thing twice.
Within dnf ‘update’ is an alias for ‘upgrade’ so either one may be used and they do the same thing.
With an immense amount of help from ChatGPT, I managed to get it working. We figured out basically that sudo iw dev wlo1 scan was working but sudo nmcli device wifi list was not working. What I then discovered was that in /etc/NetworkManager/NetworkManager.conf there was a line unmanaged-devices=interface-name:wlo1 that was causing all the issues. Because of that one line, NetworkManager was not managing wlo1. I commented that out, restarted NetworkManager and everything started working.