我正在使用蓝牙键盘,一切都运行良好,直到今天。它停止工作了。我的蓝牙小程序显示“未找到适配器”。我有一台华硕 UX303LA。
当使用时sudo service bluetooth status
,这是输出:
● bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
Active: active (running) since wo 2015-08-12 10:55:09 CEST; 13min ago
Main PID: 2792 (bluetoothd)
CGroup: /system.slice/bluetooth.service
└─2792 /usr/sbin/bluetoothd -n
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: DIS cannot start: GATT is disabled
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: Failed to init deviceinfo plugin
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: Failed to init proximity plugin
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: Failed to init time plugin
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: Failed to init alert plugin
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: Failed to init thermometer plugin
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: Failed to init gatt_example plugin
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: Bluetooth Management interface initialized
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: Failed to init gatt_example plugin
aug 12 10:55:09 stephan-UX303LA bluetoothd[2792]: bluetoothd[2792]: Bluetooth Management interface initialized
hcitool dev
没有提供任何设备。
我怎样才能知道出了什么问题?
答案1
我在 ThinkPad X220 上升级后遇到了同样的问题,出现了同样的错误。我已经解决了安装 bluez-utils 的问题:
sudo apt install bluez-utils
答案2
我只需重新启动蓝牙即可摆脱“未找到适配器”的问题:
sudo service bluetooth restart
。