UbuntuのターミナルからBluetoothを無効にする方法


15

UbuntuのターミナルからBluetoothを無効にする方法



@Hunter本当に馬鹿じゃない。Kubuntuについて。これはUbuntuのについてです
ユニバーサル電気

2
@UniKittyの違いはGUIにあります。コマンドラインの質問にとって重要なのはなぜですか?
ムル

lsusb私が知っているように、別の
有効な

回答:


18

止まる :

sudo service bluetooth stop

再度開始するには:

sudo service bluetooth start

再起動します :

sudo service bluetooth restart

現在のステータスを確認するには:

service bluetooth status

または、次のrfkillコマンドを使用できます。

rfkill block bluetooth

1
@downvoter !!! どうして?
Maythux

誰かがあなたを好きではありません。しかし、Ubuntuを持っていないので、私は賛成も反対もできません。これはタブレットでも機能すると思いますか?
イスマエルミゲル

1
はい、あるべきです
Maythux

テストするために、ubuntuとUSB bluetoothアダプターでchrootをセットアップする必要があります。または、VMを試してください。
イスマエルミゲル

5

次のような単一のアダプターを無効にすることもできます

sudo hciconfig hci0 down

hci0が唯一のアダプタである場合、これはBluetoothが利用できないことを意味します。


ドングルモードをHDIに切り替えて、起動時に使用できますか?
オートマトン

提案されたソリューションがそれを引き起こすとは期待していません。
cschramm

2

また、永続的に無効にする場合:

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

再度有効にするには:

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

1

このコマンドを試してください:

rfkill block bluetooth

0

Bluetoothサービスを無効にします。

#disable bluetooth service
sudo systemctl disable bluetooth

#stop running instance
sudo systemctl stop bluetooth

後でサービスを再度有効にします。

#re-enable bluetooth service later
sudo systemctl enable bluetooth

#start bluetooth service again
sudo systemctl start bluetooth

さらにいくつかの説明を追加できますか?また、再起動する方法/再有効化、それは良いヒントです与える
damadam
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.