Search
-
Recent Posts
Tags
adwords amazon analytics api apple aws blog chrome chromium cloud Design dropbox ec2 email error facebook firefox google google-apps homebrew ipad javascript jQuery linux lion mac microsoft mysql osx os x paypal php plugin quicksilver raspberry pi scam social spam twitter ubuntu unix video windows woo wordpress
Tag Archives: logon
OS X Mountain Lion hangs during Logon [solved]
OS X Mountain Lion has a known issue regarding hang during logon. This more commonly occurs after the computer has been sleeping, standby, or locked. There are a lot of issues that could cause this, and some people have tracked it down to different causes. However, for me, I got this error / problem message after upgrading from Snow Leopard. What I realized was that if the WiFi connection is off, the system will hang. If the WiFi / Airport is on, then everything is OK. After doing some research it appears to be related to the Bonjour service. The solution for me was to make sure I have WiFi / Airport turned on before putting the computer to sleep, locking it, etc, so that it doesn’t hang on the login screen after it wakes up.
Disable “Reopen windows when logging back in” by default – OS X Mavericks
You may have noticed that when you log out or reboot Mac OS X Mavericks, you get a dialog window with a checkbox next to “Reopen windows when logging back in” that restores all of your currently open applications and windows. If you don’t like it and you’re tired of unchecking the box to no longer reopen the windows, you can use a third party script to render the feature useless. To clarify, what this does is disable the feature completely on a constant basis, regardless of whether that checkbox to preserve windows is checked or not, the windows will not restore. You may have noticed that when you log out or reboot Mac OS X Mavericks, you get a dialog window with a checkbox next to “Reopen windows when logging back in” that restores all of your currently open applications and windows. If you don’t like it and you’re tired of unchecking the box to no longer reopen the windows, you can use a third party script to render the feature useless. To clarify, what this does is disable the feature completely on a constant basis, regardless of whether that checkbox to preserve windows is checked or not, the windows will not restore. ** instructions ** create a new file called /tmp/loginfix.sh in your temporary directory touch /tmp/loginfix.sh add two lines into that file to tell it to remove login window files: echo ‘#!/bin/sh’ > /tmp/loginfix.sh echo ‘rm -f /Users/*/Library/Preferences/ByHost/com.apple.loginwindow.*’ >> /tmp/loginfix.sh make that file owned by the system: … Continue reading