如何在Ubuntu中从终端禁用蓝牙


Answers:


18

停止 :

sudo service bluetooth stop

重新开始:

sudo service bluetooth start

重新启动 :

sudo service bluetooth restart

要检查当前状态:

service bluetooth status

或者您可以使用rfkill命令:

rfkill block bluetooth

1
@downvoter !!!为什么?
Maythux

有人不喜欢你。但是由于我没有Ubuntu,所以我无法投票或拒绝。您认为这可以在平板电脑上使用吗?
Ismael Miguel 2015年

1
是的,应该是
Maythux 2015年

我需要使用ubuntu和USB蓝牙适配器设置chroot进行测试。或尝试虚拟机。
Ismael Miguel 2015年

5

您还可以禁用单个适配器,例如

sudo hciconfig hci0 down

如果hci0是唯一的适配器,则表明蓝牙不可用。


可以将加密狗模式切换为HDI并在启动时使用它吗?
Automat

我不希望任何提议的解决方案都会导致这种情况。
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

禁用蓝牙服务:

#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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.