Affected versions: Ubuntu 24.04 LTS

📖 ~1 min read

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution – Primary Fix
  7. Solution – Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

Symptom & Impact

Wireless adapter disappears and no Wi-Fi networks are listed.

Environment & Reproduction

Appears after kernel changes or firmware package issues.

nmcli device status
lspci -nnk | grep -A3 -i network
rfkill list

Root Cause Analysis

Required kernel module or firmware blob failed to load.

Quick Triage

Check rfkill state, detected hardware, and loaded modules.

rfkill list
lsmod | grep -Ei 'iwlwifi|ath|rtw|brcm'
dmesg | grep -Ei 'firmware|wifi|wlan' | tail -n 60

Step-by-Step Diagnosis

Correlate module load failures with firmware package status.

modinfo iwlwifi | head -n 20
apt-cache policy linux-firmware
sudo journalctl -k -b -0 | grep -Ei 'iwlwifi|firmware'
Illustrative mockup for ubuntu-24-04-lts — desktop_or_gui
Missing Wi-Fi interface in settings — Illustrative mockup — Progressive Robot

Solution – Primary Fix

Reinstall firmware package and reload Wi-Fi driver modules.

Still having issues? Our Network Design team can diagnose and resolve this for you. Get in touch for a free consultation.

sudo apt update
sudo apt install --reinstall -y linux-firmware
sudo modprobe -r iwlwifi
sudo modprobe iwlwifi
Illustrative mockup for ubuntu-24-04-lts — terminal_or_shell
Kernel module and firmware recovery — Illustrative mockup — Progressive Robot

Solution – Alternative Approaches

Boot previous kernel from GRUB if regression is kernel-specific.

uname -r
grep menuentry /boot/grub/grub.cfg | head -n 20

Verification & Acceptance Criteria

Wireless interface appears and can connect successfully.

nmcli device status
nmcli dev wifi list
ping -c 3 8.8.8.8

Rollback Plan

Revert to known-good kernel/firmware combination.

sudo apt install -y linux-image-
sudo update-grub

Prevention & Hardening

Test kernel updates on representative hardware before wide rollout.

sudo apt-mark showhold
uname -r

Related to Secure Boot module signing and rfkill hard blocks.

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 wireless and firmware support 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.