Como você desativa o Bluetooth do terminal no Ubuntu

11

Como você desabilita o Bluetooth do terminal no Ubuntu

    
por Tim Bartrop 19.06.2015 / 09:26

4 respostas

16

Para parar:

sudo service bluetooth stop

Para começar de novo:

sudo service bluetooth start

Para reiniciar:

sudo service bluetooth restart

Para verificar o status atual:

service bluetooth status

Ou você pode usar o comando rfkill :

rfkill block bluetooth
    
por Maythux 19.06.2015 / 09:29
4

Você também pode desativar adaptadores únicos como

sudo hciconfig hci0 down

Se hci0 for o único adaptador, isso significa que o bluetooth não está disponível.

    
por cschramm 19.06.2015 / 12:50
2

Além disso, se você quiser desativá-lo permanentemente:

sudo mv /etc/init/bluetooth.conf /etc/init/bluetooth.conf.disabled

Para reativar:

sudo mv /etc/init/bluetooth.conf.disabled /etc/init/bluetooth.conf
    
por JoKeR 19.06.2015 / 09:36
1

Experimente este comando:

rfkill block bluetooth
    
por opu 웃 19.06.2015 / 09:30

Tags