蓝牙连接错误

蓝牙连接错误

我有一台 HP 笔记本电脑 245-G4。安装 Ubuntu 22.04.1 LTS 后,我的设备最初成功连接到蓝牙。但是,重启后,我的设备中的蓝牙已打开,但附近设备列表中没有显示任何设备。

我怎样才能解决这个问题?

答案1

尝试运行以下命令并向我们显示输出,

sudo systemctl status bluetooth.service      # Check status of the bluetooth service

如果您的蓝牙服务未运行,请尝试:

sudo systemctl enable bluetooth.service      # Enable the bluetooth service, if not already.

答案2

尝试bt-device -l

您的笔记本电脑型号可能是 RTL8821CE,蓝牙和 wifi 来自同一个接口。所以您没有 22.04 的运气,最后一个好的版本是 18.04,但是。

确保你安装sudo apt install bluez并尝试从那里运行。还要确保没有 rfkill 阻止它rfkill unblock all

相关内容