User Tools

Site Tools


docs:tips_n_tricks:max_os_x:system.html

This is an old revision of the document!


Mac OS X System Issues

Bluetooth

At some poinet, the bluetooth in my MacBook Air could not be activated any more. The commands that helped were

sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.blued.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.blued.plist

Thanks to Macuser.de

A simple script to aid in this situation:

#! /bin/sh

case "$1" in 
"start")
      launchctl load -w /System/Library/LaunchDaemons/com.apple.blued.plist
      ;;
"stop")
      launchctl unload -w /System/Library/LaunchDaemons/com.apple.blued.plist
      ;;
"restart"|"reload"|"relaunch")
      "$0" stop
      "$0" start
      ;;
*)    echo ERROR >&2
      ;;
esac

OSX Bluetooth

docs/tips_n_tricks/max_os_x/system.html.1356174671.txt.gz · Last modified: 22.12.2012 12:11 CET by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki