Skip to content

Instantly share code, notes, and snippets.

@byronmansfield
Created June 20, 2018 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save byronmansfield/2c2b9201acead167d191ab73961dfbfc to your computer and use it in GitHub Desktop.
Save byronmansfield/2c2b9201acead167d191ab73961dfbfc to your computer and use it in GitHub Desktop.
Restart Sierra Bluetooth
https://apple.stackexchange.com/questions/251842/how-to-restart-bluetooth-service-from-command-line
# Kill bluetooth daemon
sudo pkill blued
# you can list them like this if it is a different name
sudo launchctl list
# Stop and Start it manually
sudo launchctl stop com.apple.blued
sudo launchctl start com.apple.blued
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment