Recibo un error en el estado del servicio bluetooth.
Necesito orientación para resolver este error.
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:~ $
Respuestas:
SAP significa
SIM Access Profile
, por lo que debe deshabilitarlo:/etc/systemd/system/bluetooth.target.wants/bluetooth.service
Cambio:
A
Recargue el systemd:
Reinicia el bluetooth:
Obtenga el estado del bluetooth:
fuente
systemctl restart bluetooth
ysystemctl status bluetooth
. Esos probablemente también necesiten sudo.Si no desea sobrescribir el
bluetooth.service
archivo del sistema , es un buen lugar para usar una.service.d
anulación:Luego coloque en este archivo:
/etc/systemd/system/bluetooth.service.d/01-disable-sap-plugin.conf
fuente
sudo systemctl edit bluetooth.service
lugar de jugar directamente con directorios y archivos systemd..d/
fragmento de archivo para aclarar lo que está haciendo..service
archivo de producción es arriesgado. Esta publicación de blog tiene más información útil. Una de las cosas mencionadas allí es "¡Todas las ediciones exitosas se convierten en un reinicio del servicio!" Por lo tanto, no siempre es "más seguro" como usted dice, pero podría ser más conveniente.