蓝牙状态:不活动(死机)

蓝牙状态:不活动(死机)

当我尝试在笔记本电脑上激活 USB 时,我看不到我的设备。当我请求蓝牙状态时,我看到下面的消息。

 bluetooth.service - Bluetooth service


Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
Active: inactive (dead)

我该如何激活它?

答案1

要检查蓝牙状态,请使用:

sudo systemctl status bluetooth.service

然后考虑两种可能的解决方案:

  1. 通过以下方式启用蓝牙systemctl

    sudo systemctl enable bluetooth.service
    
  2. 检查你的蓝牙是否被列入黑名单:

    1. sudo vi /etc/modprobe.d/blacklist.conf

    2. 如果文件有blacklist btusb,请退出文件并运行:

      sudo modprobe btusb
      

这应该启用蓝牙。

由于您的蓝牙已失效,第二种解决方案可能会对您有所帮助。

答案2

使用 systemctl 启动蓝牙服务

systemctl start bluetooth

相关内容