No Wireless Interfaces Found
Raspberry Pi Single-Board Computer
Severity: ModerateWhat Does This Error Mean?
No Wireless Interfaces Found means the Pi's WiFi hardware is not detected by the operating system. This could be a driver issue, disabled WiFi, or a hardware problem. Check rfkill, install drivers, or try a USB WiFi adapter.
Affected Models
- Raspberry Pi 5
- Raspberry Pi 4B
- Raspberry Pi 3B+
- Raspberry Pi Zero 2 W
Common Causes
- WiFi disabled by rfkill (software block)
- WiFi country not set — required before WiFi can be used
- Incorrect OS image without WiFi drivers
- Hardware fault on the WiFi chip
- Power supply insufficient for WiFi operation
How to Fix It
-
Set the WiFi country: sudo raspi-config > Localisation > WLAN Country.
The Pi requires a country code to activate WiFi (different countries use different frequencies). This is the most common cause on fresh installations.
-
Check if WiFi is soft-blocked: rfkill list.
If it shows Soft blocked: yes, run: sudo rfkill unblock wifi
-
Update the OS: sudo apt update && sudo apt upgrade.
Driver updates can fix WiFi detection issues.
-
Try a USB WiFi adapter as a workaround.
If the built-in WiFi has failed, a USB WiFi adapter is a cheap solution ($10-$15).
Frequently Asked Questions
Does the Raspberry Pi Zero (original) have WiFi?
The original Pi Zero does NOT have WiFi. Only the Pi Zero W and Pi Zero 2 W have built-in WiFi.
Can I use Ethernet instead?
Pi 3B+, 4B, and 5 have built-in Ethernet. Pi Zero models need a USB-to-Ethernet adapter.