我有一个内置 USB 设备,lsusb | grep "bluetooth"
输出:
Bus 002 Device 004: ID 413c:8187 Dell Computer Corp. DW375 Bluetooth Module
此设备存在硬件问题,在 Windows 中也无法可靠运行。(在 Linux 中需要一段时间才能恢复正常)
sudo hciconfig hci0 reset
,但在挂起到 RAM 后,设备有时会完全消失,有时无法重新激活,问题,问题......)
我宁愿使用外部蓝牙适配器,但我不想在这个内部设备上浪费电池电量。
在 BIOS 中禁用并不是替代方案,因为 BIOS 受公司政策密码保护。黑名单?
编辑:运行最新的 BIOS 固件
答案1
停止蓝牙服务
$ su -
$ service bluetooth stop
启动时禁用蓝牙服务
# nano /etc/rc.local
在 exit 0 之前添加此行
rfkill block bluetooth
在启动时禁用蓝牙驱动程序
# nano /etc/modprobe.d/blacklist.conf
并将此行添加到 blacklist.conf 中
blacklist btusb
切断蓝牙运行的电源
# nano /etc/bluetooth/main.conf
改变
InitiallyPowered = true
到
InitiallyPowered = false
来源:http://namhuy.net/1397/disable-bluetooth-ubuntu-xubuntu-linux-mint.html