Kubuntu 14.04でBluetoothを永久に無効にする方法を誰かが知っていますか?
簡単なスクリプトを作成して起動時にロードし、Bluetoothを完全に無効にすることができます。
gksudo kate
を使用してエディターを開き、これをコピーします。
#!/bin/bash rfkill block bluetooth
/etc/init.d
とともに<any_name>.sh
に保存します。Sudo chmod +x /etc/init.d/<script_name>.sh
を使用して実行可能にします。Sudo update-rc.d /etc/init.d/<script_name>.sh defaults
を使用します。システムの起動時にBluetoothを無効にします。
これをあなたの端末に入力してみてください
rfkill block bluetooth
Bluetoothが無効になることを願っています
ブロック解除用
rfkill unblock bluetooth
Rfkillへのアクセスが拒否されたことを示している場合は、
Sudo rfkill block bluetooth