Last active
May 27, 2019 18:14
-
-
Save cdemers/b088a12207ee85ed961d20ed58a77f9d to your computer and use it in GitHub Desktop.
Disable WiFi and Bluetooth on a Raspberry Pi 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To disable WiFi and Bluetooth on a Raspberry Pi 3, there is | |
# no other way (yet) than to add this file to the modprobe.d | |
# folder (/etc/modprobe.d/raspi-blacklist.conf) | |
# Prevents WiFi: | |
blacklist brcmfmac | |
blacklist brcmutil | |
# Prevents Bluetooth: | |
blacklist btbcm | |
blacklist hci_uart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment