Je reçois une erreur sur l'état du service Bluetooth.
J'ai besoin de conseils pour résoudre cette erreur.
pi@raspberrypi:~ $ sudo service bluetooth status
* bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled)
Active: active (running) since Sat 2016-01-09 19:12:47 UTC; 1min 12s ago
Docs: man:bluetoothd(8)
Main PID: 370 (bluetoothd)
Status: "Running"
CGroup: /system.slice/bluetooth.service
`-370 /usr/lib/bluetooth/bluetoothd
Jan 09 19:12:46 raspberrypi bluetoothd[370]: Bluetooth daemon 5.23
Jan 09 19:12:47 raspberrypi bluetoothd[370]: Starting SDP server
Jan 09 19:12:47 raspberrypi systemd[1]: Started Bluetooth service.
Jan 09 19:12:47 raspberrypi bluetoothd[370]: Bluetooth management interface 1.9 initialized
Jan 09 19:12:47 raspberrypi bluetoothd[370]: Sap driver initialization failed.
Jan 09 19:12:47 raspberrypi bluetoothd[370]: sap-server: Operation not permitted (1)
pi@raspberrypi:~ $
Réponses:
SAP signifie
SIM Access Profile
, vous devez donc le désactiver:/etc/systemd/system/bluetooth.target.wants/bluetooth.service
Changement:
À
Rechargez le systemd:
Redémarrez le bluetooth:
Obtenez le statut Bluetooth:
la source
systemctl restart bluetooth
etsystemctl status bluetooth
. Ceux-ci ont probablement aussi besoin de sudo.Si vous ne voulez pas écraser le
bluetooth.service
fichier système , c'est un bon endroit pour utiliser un.service.d
remplacement:Placez ensuite dans ce fichier:
/etc/systemd/system/bluetooth.service.d/01-disable-sap-plugin.conf
la source
sudo systemctl edit bluetooth.service
au lieu de jouer directement avec les répertoires et fichiers systemd..d/
extrait de fichier pour clarifier ce qu'il fait..service
fichier de production est risqué. Cet article de blog contient des informations plus utiles. L'une des choses mentionnées ici est "Toutes les modifications réussies se convertissent en un redémarrage de service!" Ce n'est donc pas toujours «plus sûr» comme vous le dites, mais cela pourrait être plus pratique.