blueman-manager 未启动

blueman-manager 未启动

我的 Ubuntu 20.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

如何使蓝牙在我的系统中正常工作?

答案1

首先查看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 启动蓝牙

并做了!

答案2

确保您的系统已启用蓝牙。

systemctl status blueman.service

如果它没有运行,你可以使用以下命令启动它:

sudo systemctl start blueman.service

您也可以重置 blueman。

rm -rf ~/.config/blueman
sudo systemctl restart blueman.service

如果上述解决方案均无效,请尝试重新安装 Blueman。您可以使用以下命令执行此操作:

sudo apt-get install --reinstall blueman

希望这会有所帮助。

相关内容