Skip to content

Instantly share code, notes, and snippets.

@jabenninghoff
Created August 30, 2017 12:21
Show Gist options
  • Save jabenninghoff/7b8b6947205dcfeae5b0757bd4123805 to your computer and use it in GitHub Desktop.
Save jabenninghoff/7b8b6947205dcfeae5b0757bd4123805 to your computer and use it in GitHub Desktop.
Fix the VNC "Black Screen" on older versions of OS X

Occasionally on older versions of OS X, connecting to a remote system via VNC will result in a "Black Screen" that is non-responsive. To fix this, kill the loginwindow process:

$ ps ax | grep loginwindow
   83   ??  Ss     0:00.89 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console
$ sudo kill 83

loginwindow will automatically restart and the login screen will appear.

Thanks to Mac Mini World!

@jabenninghoff
Copy link
Author

or, just use sudo killall loginwindow!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment