Skip to content

Instantly share code, notes, and snippets.

@cdemers
Last active May 27, 2019 18:14
Show Gist options
  • Save cdemers/b088a12207ee85ed961d20ed58a77f9d to your computer and use it in GitHub Desktop.
Save cdemers/b088a12207ee85ed961d20ed58a77f9d to your computer and use it in GitHub Desktop.
Disable WiFi and Bluetooth on a Raspberry Pi 3
# 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