Disable OS X startup sound

I would like to suggest a little script that I wrote to solve this problem without hacking the system.

The idea is that the boot sound is not played if the Mac was muted before shutting it down. So this script basically mutes the Mac right before the shutdown and restore its previous state after login.

It should work on any version of OS X, and I tested it on my MacBooks with Yosemite.

You can find it on GitHub: https://github.com/teored90/nobootsound

The README tells you how to install the script. I hope this works for your system and I'd like to hear your feedback.


Try this in Terminal:

sudo nvram SystemAudioVolume="%01"

then restart. Cuts out the chord completely on my Yosemite Mac.

Alternatively:

sudo nvram SystemAudioVolume=" "

(That's a single space character between the quotes. This plays the startup chord at a substantially reduced volume level.)


Found this on Apple discussions.

To disable type in terminal:

sudo nvram StartupMute=%01

To enable replace 01 with 00.

Work for me on MacBook Pro 15 mid-2015, macOS Mojave