web-dev-qa-db-fra.com

bluetooth.service en cours d'exécution, mais bluetoothctl indique "org.bluez.Error.NotReady"

mon Raspberry Pi 3 modèle B, exécutant Arch, a un problème avec le bluetooth. Tout d'abord:

  • Bluetooth a fonctionné parfaitement auparavant
  • pi-bluetooth de l'AUR est à jour
  • bluez et bluez-utils sont à jour
  • Le système est également à jour (vient de lancer pacman -Syu)

Pourtant, lorsque j'essaie d'utiliser l'interface Bluetooth, cela ne fonctionne pas.

bluetoothctl (en tant que root), quand je lance "scan on", me dit

Failed to start discovery: org.bluez.Error.NotReady

wminput ne trouve pas l'interface bluetooth:

No Bluetooth interface found
unable to connect

"systemctl status bluetooth" a la sortie suivante:

● bluetooth.service - Bluetooth service
   Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled; vendor preset: disabled)
   Active: active (running) since Sat 2019-03-23 21:32:47 CET; 9min ago
     Docs: man:bluetoothd(8)
 Main PID: 2005 (bluetoothd)
   Status: "Running"
    Tasks: 1 (limit: 1404)
   CGroup: /system.slice/bluetooth.service
           └─2005 /usr/lib/bluetooth/bluetoothd

Mar 23 21:32:47 media.lan systemd[1]: Starting Bluetooth service...
Mar 23 21:32:47 media.lan bluetoothd[2005]: Bluetooth daemon 5.50
Mar 23 21:32:47 media.lan systemd[1]: Started Bluetooth service.
Mar 23 21:32:47 media.lan bluetoothd[2005]: Starting SDP server
Mar 23 21:32:47 media.lan bluetoothd[2005]: Bluetooth management interface 1.14 initialized

Je suis à bout de souffle ici, tout semble aller bien, mais rien ne fonctionne. Qu'est-ce qui se passe ici?

8
turf

D'accord, wow, il s'avère que tout ce que j'avais à faire était de courir

bluetoothctl power on
11
turf

J'ai le même problème. Il s'est avéré que la réponse @turf n'a pas fonctionné pour moi.

Après avoir vérifié rfkill:

$ rfkill list
0: hci0: Bluetooth
        Soft blocked: yes
        Hard blocked: no
1: phy0: Wireless LAN
        Soft blocked: no
        Hard blocked: no

J'ai exécuté la commande:

rfkill unblock all

Et le Bluetooth a de nouveau fonctionné.

5
Rafael Toledo