Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. pi@raspberrypi:~ $ sudo service bluetooth status
  2. * bluetooth.service - Bluetooth service
  3. Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled)
  4. Active: active (running) since Sat 2016-01-09 19:12:47 UTC; 1min 12s ago
  5. Docs: man:bluetoothd(8)
  6. Main PID: 370 (bluetoothd)
  7. Status: "Running"
  8. CGroup: /system.slice/bluetooth.service
  9. `-370 /usr/lib/bluetooth/bluetoothd
  10.  
  11. Jan 09 19:12:46 raspberrypi bluetoothd[370]: Bluetooth daemon 5.23
  12. Jan 09 19:12:47 raspberrypi bluetoothd[370]: Starting SDP server
  13. Jan 09 19:12:47 raspberrypi systemd[1]: Started Bluetooth service.
  14. Jan 09 19:12:47 raspberrypi bluetoothd[370]: Bluetooth management interface 1.9 initialized
  15. Jan 09 19:12:47 raspberrypi bluetoothd[370]: Sap driver initialization failed.
  16. Jan 09 19:12:47 raspberrypi bluetoothd[370]: sap-server: Operation not permitted (1)
  17. pi@raspberrypi:~ $
  18.  
  19. ExecStart=/usr/lib/bluetooth/bluetoothd
  20.  
  21. ExecStart=/usr/lib/bluetooth/bluetoothd --noplugin=sap
  22.  
  23. $ sudo systemctl daemon-reload
  24.  
  25. $ sudo service bluetooth restart
  26.  
  27. $ sudo service bluetooth status
  28.  
  29.  
  30. bluetooth.service - Bluetooth service
  31. Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled)
  32. Active: active (running) since Sat 2016-04-30 10:38:46 UTC; 6s ago
  33. Docs: man:bluetoothd(8)
  34. Main PID: 12775 (bluetoothd)
  35. Status: "Running"
  36. CGroup: /system.slice/bluetooth.service
  37. └─12775 /usr/lib/bluetooth/bluetoothd --noplugin=sap
  38.  
  39. sudo mkdir /etc/systemd/system/bluetooth.service.d/
  40.  
  41. [Service]
  42. ExecStart=
  43. ExecStart=/usr/lib/bluetooth/bluetoothd --noplugin=sap
  44.  
  45. sudo systemctl daemon-reload
  46. sudo systemctl restart bluetooth.service
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement