Created
September 7, 2011 01:09
-
-
Save reedobrien/1199474 to your computer and use it in GitHub Desktop.
fix "Waiting for other installations to complete." on OSX 10.6 10.7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## fix "Waiting for other installations to complete." on OSX 10.6 10.7 | |
## sometimes a failed installation leaves us unable to | |
## perform an installation. The following fixes it for me | |
sudo rm /private/var/db/mds/system/mds.install.lock | |
sudo reboot |
I agree with @TheodoreMurdock - in my case, I forgot that there was an xcode installation going in the background. Being patient let everything finish gracefully :) . patience
Just:
sudo killall -1 installd
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This seems a bit extreme...first you should check whether there are actually other installers waiting to finish, and do whatever they need.
In my case, I started installing new software while there was a popup saying that I needed to close iTunes for an install to finish (due to a recent update). Switching users and closing iTunes, which was open on my other user account, let the first install finish, which in turn let my second install finish as well.