Bluetooth, Raspbian Stretch ve Raspberry Pi 3 ile çalışmaz


10

Raspbian Stretch'in yeni yüklemesinde, giriş yapın ve ilk komutuyla systemctl status bluetoothşunu elde ederim:

$ systemctl status bluetooth
● bluetooth.service - Bluetooth service
   Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
   Active: active (running) since Fri 2017-08-18 01:37:37 UTC; 1s ago
     Docs: man:bluetoothd(8)
 Main PID: 667 (bluetoothd)
   Status: "Running"
   CGroup: /system.slice/bluetooth.service
           └─667 /usr/lib/bluetooth/bluetoothd

Aug 18 01:37:37 raspberrypi systemd[1]: Starting Bluetooth service...
Aug 18 01:37:37 raspberrypi bluetoothd[667]: Bluetooth daemon 5.43
Aug 18 01:37:37 raspberrypi systemd[1]: Started Bluetooth service.
Aug 18 01:37:37 raspberrypi bluetoothd[667]: Starting SDP server
Aug 18 01:37:38 raspberrypi bluetoothd[667]: Bluetooth management interface 1.14 initialized
Aug 18 01:37:38 raspberrypi bluetoothd[667]: Failed to obtain handles for "Service Changed" characteristic
Aug 18 01:37:38 raspberrypi bluetoothd[667]: Sap driver initialization failed.
Aug 18 01:37:38 raspberrypi bluetoothd[667]: sap-server: Operation not permitted (1)

Sonuç olarak, bluetoothctlherhangi bir cihaz algılamaz.

Bu Raspbian Jessie ile olmadı. Bunu nasıl çözeceğine dair herhangi bir işaretçi var mı?


Not: için bluez repo de bekleyen bir hata girişi gibi görünüyor için kolları alınamadı karakteristik "Servis değiştirdi"
Besi

Yanıtlar:


7

Ben sadece aynı sorunu vurdum. Bluetooth servisindeki hatalar kırmızı ringalardır. Sorun (benim için zaten) DBus üzerinden hizmete erişmek için gereken izinlerin değişmiş olmasıydı.

Normal kullanıcı olarak:

pi@raspberrypi:~ $ busctl tree org.bluez
Failed to introspect object / of service org.bluez: Access denied
No objects discovered.

Kök olarak:

pi@raspberrypi:~ $ sudo busctl tree org.bluez
└─/org
  └─/org/bluez
    └─/org/bluez/hci0

İşaretli /etc/dbus-1/system.d/bluetooth.conf , kullanıcılar olmalıdır diyor ki bluetooth grubunda.

Gruba kullanıcı ekle:

pi@raspberrypi:~ $ sudo adduser pi bluetooth
Adding user `pi' to group `bluetooth' ...
Adding user pi to group bluetooth
Done.
pi@raspberrypi:~ $ newgrp bluetooth

Şimdi çalışıyor:

pi@raspberrypi:~ $ busctl tree org.bluez
└─/org
  └─/org/bluez
    └─/org/bluez/hci0
pi@raspberrypi:~ $ bluetoothctl 
[NEW] Controller 43:43:A1:12:1F:AC raspberrypi [default]

kodi üzerinde çalışmaya başladın mı? Sadece krom tarayıcıda çalışıyor gibi görünüyor
answerSeeker
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.