以下是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地址
等。