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

39

8

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?

clozach

Posted 2010-07-30T15:16:17.350

Reputation: 653

This might sound a bit madcap, but in the past I've found that quiitting the iPhone simulator can unstick these installs. I suspect theres some sort of lock that only allows one installer at a time, and the iPhone simulator holds that lock closed so it can install apps into its own space. Remember the iPhone simulator just runs regular intel apps but with a different ABI and wrapped in a chrooted ios-like environment, so I guess its sharing the install lock with the OS – Shayne – 2019-03-26T01:35:19.443

Answers

42

  1. sudo rm /private/var/db/mds/system/mds.install.lock
  2. reboot

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

bluesmoon

Posted 2010-07-30T15:16:17.350

Reputation: 536

1The file was named simply mds.lock for me, but otherwise this worked without reboot, thanks! – mVChr – 2015-10-29T16:55:18.210

8I had both mds.lock as well as mds.install.loc, which I removed, but in addition @tantrix's solution (sudo killall -1 installd) was needed to avoid the reboot. – Erik Kaplun – 2015-12-09T11:53:58.587

Note: worked for me without the 'reboot' – Daniel – 2018-06-21T19:43:58.263

thank you @ErikAllikVERY helpful. – user2568374 – 2019-07-16T15:01:20.507

3it's weird how many times I have to refer to my own answer here... that's such an obtuse path. – bluesmoon – 2012-04-26T14:45:17.780

3Obtuse indeed. Worked for me without having to reboot--thanks much. – funroll – 2012-10-28T06:57:57.067

48

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.

tantrix

Posted 2010-07-30T15:16:17.350

Reputation: 601

1Thanks. There were two installations pending. Both finished right after this command – Sayka – 2016-01-24T23:49:17.573

1Thanks, this should be the right answer – Arthur Guiot – 2019-11-02T16:30:55.833

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.

patrickq

Posted 2010-07-30T15:16:17.350

Reputation: 21

0

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.

Hay

Posted 2010-07-30T15:16:17.350

Reputation: 1

-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...

Ian Phillips

Posted 2010-07-30T15:16:17.350

Reputation: 1

-1

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

rabidmachine9

Posted 2010-07-30T15:16:17.350

Reputation: 302

6Bad advice - Apple even expressly allows multiple Xcode installations to exist. I see your reply was first, so you made a blind guess, and I'm just saying: Uninstalling other software on OSX is usually not the solution - that's contrary to Windows, where this used to be rather the rule. – SuperTempel – 2012-05-11T09:10:37.440