当有多个可用蓝牙适配器时,如何让蓝牙 UI 使用特定的蓝牙适配器?
我的笔记本电脑内置的蓝牙适配器出现故障。所以我买了一个 USB 蓝牙适配器。我能够使用命令行实用程序将设备与第二个适配器连接起来,但我无法让 UI 使用它。:(
手动连接步骤:
# Step 1: Find alias for my adapter
sudo hciconfig
# hci1: <stuff> (this is the new one)
# hci0: <stuff> (built-in)
# Step 2: Discover available devices
bt-adapter -a hci1 -d
# <bd mac>
# Step 3: Bind bluetooth device
bt-device -a hci1 -c <bd mac>
# Step 4: Connect audio device
bt-audio -a hci1 -c <bd mac>
Ubuntu 版本:
Distributor ID: Ubuntu
Description: Ubuntu 12.04.5 LTS
Release: 12.04
Codename: precise
答案1
你可以手动关闭它,sudo hciconfig hci0 down
但 udev 规则也可以工作,gksudo gedit /etc/udev/rules.d/10-local.rules
并输入以下内容
ACTION=="add", KERNEL=="hci0", RUN+="/usr/bin/hciconfig hci0 down"
保存、退出并重启