Wednesday, June 10th, 2009...11:20 am
Disable spindump on OS X to prevent system slowdowns
Jump to Comments
Every notice how slow and sluggish your OS X Leopard system can be after an application crash?
This is probably because of the spindump utility that OS X launches to create crash and “hang” reports located in /Library/Logs/HangReporter.
This is all fine and good, but spindump has an annoying habit of thrashing your system disk and eating up a sizable chunk of RAM. Personally, the MAJOR annoyance isn’t worth the aggravation just to get a useless “hang” report like the following.
Date/Time: 2008-07-09 16:33:26 -0400 OS Version: 10.5.4 (Build 9E17) Architecture: i386 Report Version: 4 Command: Skitch Path: /Applications/Skitch.app/Contents/MacOS/Skitch Version: 1.0b6.2 (1.0b6.2 (v10678)) Parent: launchd [107] PID: 377 Event: hang Time: 7.75s Steps: 1
I’m sure there are many ways to disable this utility, but here is a quick an easy method I used to prevent the “sluggishness” after an app crash
sudo -i cd /usr/sbin mv spindump spindump.disabled ln -s /usr/bin/true /usr/sbin/spindump
Problem solved!

3 Comments
July 6th, 2009 at 12:04 am
Shouldn’t line 2 be /usr/sbin?
BTW, spindump seems to start even before the crash. It seems to free thing up a bit for safari and Java apps, but that’s just me guessing because I get lots of spindumps, but no crashes for apps that take a lot of time to do their work.
September 2nd, 2009 at 7:34 am
Thanks for this.
Yes, line 2 should be
cd /usr/sbin
September 2nd, 2009 at 8:09 am
Thanks, code has been fixed to reflect
Leave a Reply