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

From KlavoWiki
Jump to navigationJump to search
(Created page with "<pre> vi /etc/modprobe.d/fbdev-blacklist.conf </pre> <pre> #Wi-Fi blacklist brcmfmac blacklist brcmutil #Bluetooth blacklist btbcm blacklist hci_uart </pre> Category : R...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<pre>
<pre>
vi  /etc/modprobe.d/fbdev-blacklist.conf
vi  /etc/modprobe.d/blacklist-radios.conf
</pre>
</pre>


Line 11: Line 11:
blacklist btbcm
blacklist btbcm
blacklist hci_uart
blacklist hci_uart
</pre>
or
<pre>
rfkill block wifi
rfkill block bluetooth
rfkill unblock wifi
rfkill unblock bluetooth
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