Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Kymer/48307daa68d7dfcda76380f0a268410c to your computer and use it in GitHub Desktop.
Save Kymer/48307daa68d7dfcda76380f0a268410c to your computer and use it in GitHub Desktop.
Enable OS X screen sharing from the command line, http://frightanic.com/apple-mac/enable-os-x-screen-sharing-command-line/
$ ssh <user>@<mac-without-screen>
$ sudo defaults write /var/db/launchd.db/com.apple.launchd/overrides.plist com.apple.screensharing -dict Disabled -bool false
$ sudo launchctl load /System/Library/LaunchDaemons/com.apple.screensharing.plist
/System/Library/LaunchDaemons/com.apple.screensharing.plist: Service is disabled
$ sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.screensharing.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment