So i am lookin for some source code to crash the mac kernel. I found crashme for debain linux but that does not work for the mac kernel. So i was wondering if anyone knows where i can find a command-line utility or some source code to invoke the mac kernel panic? This would be a huge help, thanks.

link|improve this question

If it's possible to deliberately invoke a kernel panic, then that is indicative of a bug in the kernel. It should not be possible to trigger a kernel panic from userland. – Kevin Ballard Jan 11 at 23:43
i've doen it by force quitting an app running an apache server, a mysql server, a world of warcraft logon server and a world of warcraft world server all in one, it happens all the time. – Trevor Rudolph Jan 11 at 23:45
2  
Either you've stumbled upon a kernel bug, or you've got a corrupted system. Kernel panics are very rare for a good reason. – Kevin Ballard Jan 11 at 23:49
i can do it on any computer i install this app on – Trevor Rudolph Jan 11 at 23:51
4  
If you already can panic a machine, why are you looking for code that panics a machine? Also, it sounds like you should report this bug. – Kevin Ballard Jan 11 at 23:56
show 1 more comment
feedback

1 Answer

up vote 5 down vote accepted

Apple has a tech note about how to do this. The short way to do it is with this command, sudo dtrace -w -n "BEGIN{ panic();}", run from the terminal.

link|improve this answer
i cant find where it says the proper methiod...? – Trevor Rudolph Jan 13 at 0:35
@TrevorRudolph: The sections that are specifically about triggering a kernel panic are "Triggering a Kernel Panic with DTrace" and "Triggering a Kernel Panic with the Instant Panic Kernel Extension". – Chuck Jan 13 at 4:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.