Installer hangs on "waiting for other installations to finish" despite no other installations in progress

I started an installation of the Xcode 4 developer's preview last night before going to bed. When I woke up, the installation had popped up a message saying to close Xcode first (doh!). I did so, but whatever script had displayed the message seemed to have hung because the (uncancellable) message wouldn't disappear, and the installer wouldn't progress.

After force quitting the Installer app, the message above was still showing, so I restarted my MacBook Pro and then tried the installation again. This time it wouldn't even start, instead showing one of those candy-stripe activity bars and the message:

Waiting for other installations to finish

At this point, I'm stumped. There are no other installations in progress, so there must be some artifact left over from the interrupted install that's gumming up the works. But what?

1

6 Answers

  1. sudo rm /private/var/db/mds/system/mds.install.lock
  2. reboot or sudo killall -1 installd

Chances are that a previous installation hung and the lock was never cleaned up.

6

When an installation happens a daemon installd runs. Killing a leftover installd should allow another installation to happen (and will kill any new ones that are waiting for the defunct one to finish). So,

sudo killall -1 installd

Nice aspect of this is you won't need to reboot.

2

I had the same problem for no apparent reason and found a couple of solutions suggesting deleting some files - but nothing helped (at least was not enough). Eventually force-quitting the installer with activity monitor and then restarting my Mac did it and after the restart the installation completed fine.

Simply just check that no Applications are downloading in the App Store because I had iMovie downloading in the background and I didn't notice until later. After that I just cancelled the iMovie installation and the other installation downloaded within seconds.

Is there a previous Xcode installation on your computer? If yes maybe you should try and uninstall it first. Good luck..

1

When i try: sudo killall -1 installd I need a password to continue. Also activity monitor can shut down any other installers running that was the way it worked for me...

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like