📖 ~1 min read
Table of contents
Symptom & Impact
Wireless interface is absent in NetworkManager and no SSIDs are visible.
Environment & Reproduction
Common on fresh installs where proprietary firmware packages were skipped.
lspci -nnk | grep -A3 -i network
lsusb
nmcli device status
rfkill list
Root Cause Analysis
Kernel driver loads without required firmware blobs or interface is soft/hard blocked.
Quick Triage
Identify chipset model and current module/firmware messages.
dmesg | grep -iE 'firmware|wifi|wlan|iwlwifi|brcm' | tail -n 80
modinfo iwlwifi | head
rfkill list
Step-by-Step Diagnosis
Validate driver binding and search missing firmware filenames in kernel logs.
sudo lshw -C network
journalctl -k -b | grep -i firmware
ls /lib/firmware | grep -iE 'iwlwifi|brcm'

Solution – Primary Fix
Install required firmware package set and reload wireless modules.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo apt update
sudo apt install linux-firmware firmware-sof-signed -y
sudo modprobe -r iwlwifi brcmfmac || true
sudo modprobe iwlwifi || sudo modprobe brcmfmac
sudo systemctl restart NetworkManager

Solution – Alternative Approaches
Use Additional Drivers to apply vendor-recommended modules where available.
sudo ubuntu-drivers devices
sudo ubuntu-drivers autoinstall
Verification & Acceptance Criteria
Accepted when wireless interface appears and can connect to target SSID.
nmcli device status
nmcli dev wifi list
ping -c 3 1.1.1.1
Rollback Plan
If a new firmware bundle regresses stability, revert to known good package version.
apt-cache madison linux-firmware
sudo apt install linux-firmware=VERSION -y
Prevention & Hardening
Maintain inventory of wireless chipsets and validated firmware versions.
lspci -nnk | grep -A3 -i network
apt-mark showhold
sudo apt update
Related Errors & Cross-Refs
Related errors include failed to load firmware, rfkill blocked, and No Wi-Fi Adapter Found.
Related tutorial: View the step-by-step tutorial for Ubuntu 26.04 LTS.
View all Ubuntu 26.04 LTS tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Ubuntu Wi-Fi troubleshooting docs, linux-firmware package notes, and NetworkManager references.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.