Desativar o bluetooth no Kubuntu 14.04

2

Alguém sabe como desativar permanentemente o bluetooth no Kubuntu 14.04?

    
por Leo 24.08.2014 / 10:04

2 respostas

2

Você pode escrever um script simples e carregá-lo na inicialização para desativar o Bluetooth permanentemente.

  • Abra seu editor usando gksudo kate e copie isso nele.

    #!/bin/bash rfkill block bluetooth

  • Salve-o em /etc/init.d com <any_name>.sh .
  • Agora torne-o executável usando sudo chmod +x /etc/init.d/<script_name>.sh .
  • Agora use o seguinte comando sudo update-rc.d /etc/init.d/<script_name>.sh defaults .

Ele desativará o seu bluetooth na inicialização do sistema.

    
por g_p 24.08.2014 / 11:27
1

Melhor tentar e digitar isso no seu terminal

rfkill block bluetooth

Espero que desabilite o bluetooth

para desbloquear o uso

rfkill unblock bluetooth

Se o acesso for negado ao rfkill, use

sudo rfkill block bluetooth
    
por Fiona Shoff 24.08.2014 / 10:13