Disable Wi-Fi and/or Bluetooth on the Raspberry Pi 3: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
No edit summary
No edit summary
 
Line 23: Line 23:


rfkill list all
rfkill list all
</pre>
Disable Bluetooth servcies
<pre>
systemctl disable hciuart
</pre>
</pre>


[[Category : Raspberry Pi]]
[[Category : Raspberry Pi]]

Latest revision as of 22:59, 11 June 2018

vi  /etc/modprobe.d/blacklist-radios.conf
#Wi-Fi
blacklist brcmfmac
blacklist brcmutil

#Bluetooth
blacklist btbcm
blacklist hci_uart

or

rfkill block wifi
rfkill block bluetooth

rfkill unblock wifi
rfkill unblock bluetooth

rfkill list all


Disable Bluetooth servcies

systemctl disable hciuart