以下是Ubuntu蓝牙驱动的一般配置步骤:
lsusb
或lspci
,查看是否有蓝牙设备被识别。systemctl status bluetooth
,若服务未运行,使用sudo systemctl enable bluetooth
和sudo systemctl start bluetooth
启用并启动服务。sudo apt update
和sudo apt install bluez
。若为Broadcom或Realtek适配器,可能需安装额外驱动,如sudo apt install firmware-realtek
。sudo modprobe btusb
。bluetoothctl
工具,依次输入power on
、scan on
找到设备,再按提示进行配对,如pair 设备MAC地址
、connect 设备MAC地址
等。