蓝牙不适用于我的Ubuntu20.04。因此,在本论坛上阅读了其他一些答案并安装了一些软件包之后,当我运行blueman-manager时,它不会启动并给出这一错误。
命令$ sudo /etc/init.d/bluetooth status的输出-
bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:bluetoothd(8)对于命令$sudo rfkill list -
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no如何使蓝牙在我的系统中正常工作?
发布于 2023-03-31 11:52:33
首先见bluetooth.service状态;
$ sudo systemctl状态蓝牙
bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; disabled; preset: disabled)
Active: inactive (dead)
Docs: man:bluetoothd(8)如果终端显示了这一点,你需要这样做;
$ sudo systemctl启用蓝牙&& sudo systemctl启动蓝牙
完事了!
发布于 2023-04-08 18:22:29
确保系统上启用了蓝牙。
systemctl status blueman.service如果它没有运行,您可以从以下内容开始:
sudo systemctl start blueman.service你也可以重置蓝人。
rm -rf ~/.config/blueman
sudo systemctl restart blueman.service如果上述解决方案都不起作用,请重新安装Blueman。您可以使用以下命令来完成此操作:
sudo apt-get install --reinstall blueman希望这能帮上忙。
https://askubuntu.com/questions/1375711
复制相似问题