How to disable WiFi in Raspberry Pi4, possibly keeping the chip powered off.
3 Answers
Raspbian is managing hardware with overlays. In /boot/overlays/README you will find:
Name: pi3-disable-wifi
Info: Disable Pi3 onboard WiFi
Load: dtoverlay=pi3-disable-wifi
Params: <None>
I suggest you just add
dtoverlay=pi3-disable-wifi
to /boot/config.txt to disable wifi. I have tested it with a Raspberry Pi 4B. It is also valid for Pi4. When disabled you will not get a WiFi interface wlan0 as you can check with ip -br addr.
UPDATE:
@JeffAtwood noted in his comment
They renamed it to
disable-wifiso you can use that,pi3-disable-wifiwas kept as a synonym for compatibility. Same thing with disabling bluetooth.
2019-10-25: seems everything is documented now in /boot/overlays/README.
- 42,961
- 20
- 87
- 207
Use rfkill block wifi and reboot to disable and rfkill unblock wifi and reboot to enable it again.
- 211
- 2
- 5
Create /etc/modprobe.d/brcm-blacklist.conf with the following content:
blacklist brcmfmac
blacklist brcmutil
Reboot, and WiFi should be disabled. You may find errors in the system log depending on what method you are using to configure the network. You can choose to correct those, or not, of course.
- 520
- 3
- 5