📖 ~1 min read
Table of contents
Symptom & Impact
No wireless interface appears, blocking network setup on laptops and desktops.
Environment & Reproduction
Observed on fresh installs where proprietary firmware is missing.
lspci -nnk | grep -A3 -i network
lsusb
ip -br link
Root Cause Analysis
Required firmware or kernel module is absent, blacklisted, or blocked by rfkill.
Quick Triage
Check rfkill state and dmesg module load events.
rfkill list
dmesg | grep -Ei 'wifi|wlan|firmware|iwlwifi|rtl' | tail -n 80
Step-by-Step Diagnosis
Identify chipset and installed firmware packages.
ubuntu-drivers devices
apt-cache policy linux-firmware
modinfo iwlwifi 2>/dev/null | head

Solution – Primary Fix
Install recommended drivers and firmware, then reload 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 ubuntu-drivers autoinstall
sudo apt install --reinstall linux-firmware -y
sudo modprobe -r iwlwifi 2>/dev/null; sudo modprobe iwlwifi
sudo reboot

Solution – Alternative Approaches
Use wired network or USB tethering to fetch missing packages first.
nmcli device
sudo apt install bcmwl-kernel-source -y
Verification & Acceptance Criteria
Wireless interface appears and can connect to WPA2/WPA3 SSIDs.
nmcli device wifi list
ip -br addr
Rollback Plan
Revert driver changes if connectivity worsens after module update.
sudo apt remove bcmwl-kernel-source -y
sudo apt install --reinstall linux-firmware -y
Prevention & Hardening
Keep firmware current and review hardware support before kernel transitions.
sudo apt update && sudo apt upgrade -y
Related Errors & Cross-Refs
Related symptoms include missing wlan0 and firmware load failure in dmesg.
Related tutorial: View the step-by-step tutorial for Ubuntu 24.04 LTS.
View all Ubuntu 24.04 LTS tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Ubuntu hardware enablement and linux-firmware package documentation.
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.