# archlinux 忽然间 arch 的蓝牙不能用了,提示找不到适配器。
事情的发生总是那么突然,忽然间 arch 的蓝牙不能用了,提示找不到适配器。
systemctl status bluetooth
bluetooth.service - Bluetooth service
Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled; vendor preset: disabled)
Active: inactive (dead)
Docs: man:bluetoothd(8)
随即折腾了一会儿时间,找到了很多种方法,最后结合了两篇文章解决了这个问题。
# archlinux 未找到蓝牙适配器

首先禁止掉了两个服务,随后重启就可以正常打开蓝牙了,但是出现了新得问题,br-connection-profile-unavailable
# 禁掉这两个服务
sudo systemctl disable blueman-mechanism.service
sudo systemctl disable bluetooth-mesh.service
#重启之后就可以正常打开了
reboot
# br-connection-profile-unavailable

事情的经过总是惊人的相似,再次打开浏览器,发现安装 pulseaudio-bluetooth 之后就可正常使用。
sudo pacman -Syy pulseaudio-bluetooth
reboot
# 参考
Bluetooth of archlinux kernel module
bluetoothctl-no-default-controller-available
[SOLVED] Bluetooth connect failed: br-connection-profile-unavailable.
