You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How do I turn off startup sound?

Every computer I ever had, the first thing I do is to turn off the startup sound because it is very annoying in a public place and sometimes in a quiet place. I have not been able to find out how to trun it off on my Air. I asked the guys at the stores and they just say you can't. That is really dumb. I turned off my speaker but that is not a practical way because I may not remember to turn it off when I shut down.

The question is how do I turn it off permenantly.

Love to know.

Thanks.

Glenn

MacBook Air, Mac OS X (10.7.4)

Posted on Jun 4, 2012 12:50 AM

Reply
Question marked as Top-ranking reply

Posted on Aug 21, 2012 9:59 AM

To disable the startup sound that plays when you turn on your mac, simply hold down the mute button while pressing the power button. Keep it held down for a while, until after the sound would have normally played.

106 replies

Apr 6, 2015 7:33 AM in response to Hippomormor

On my MacBook Pro (Retina, Mid 2012) running 10.9 Mavericks, the solution

sudo nvram SystemAudioVolume="%80"

didn't work for longer than a few days.


The solution first mentioned by Hippomormor, perhaps originally proposed by Macworld Hints in 2003, worked on 10.9 but became problematic after I upgraded to 10.10 Yosemite. Although turning the sound off before shutdown still worked, turning it back on after boot-up often failed and had to be done manually.


To solve this, I kept the part that mutes at shutdown:

sudo nano /Library/Scripts/mute-on.sh

and pasting

#!/bin/bash
osascript -e 'set volume with output muted'

and saving, and then

sudo chmod u+x /Library/Scripts/mute-on.sh
sudo defaults write com.apple.loginwindow LogoutHook /Library/Scripts/mute-on.sh

all as described by Hippomormor. But I had to make changes in the part that puts the volume back on at boot:

sudo nano /Library/Scripts/mute-off.sh

with an extra line in the script to make it wait until the Applescript system is ready:

#!/bin/bash
sleep 10;
osascript -e 'set volume without output muted'

and after saving and closing, I created a new file /Library/LaunchDaemons/com.giessen.soundon.plist with these contents:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.giessen.soundon</string>
<key>RunAtLoad</key>
<true/>
<key>Program</key>
<string>/Library/Scripts/mute-off.sh</string>
</dict>
</plist>

Now it all works again on 10.10. From the reactions above, it seems to me that mileage may vary in big and unexpected ways. That is strange, since we're all using the same operating systems.

Jun 26, 2015 6:20 AM in response to Hippomormor

Thanks for this trick! I've modified the line from

osascript -e ‘set volume with output muted’


to

osascript -e ‘set volume 0.1’


I think it is just good to hear the start-up chime... someone once wrote that it is a part of a start-up troubleshooting feature, so silencing it might not be the best idea. So making it softer would and could be a better solution. I think one can go even lower than 0.1... so feel free to experiment.

Dec 27, 2015 1:18 AM in response to kuhak

The nvram solution works on Yosemite (10.10.5) too I'm glad to say. I'd reset nvram using Cmd-Opt-P-R on startup trying to rectify a failure during update to El Cap. The original software I'd used to mute the chime- chime? more like a discordant noise! - didn't work after the PPC emulation code was removed from OS X. All is well now as peace has been restored and I don't have to remember to hold down any keys during startup or shutdown. Thanks kuhak.

Jan 2, 2016 9:50 AM in response to wariovonflutenhausen

For iMac users who don't want to hear the startup chime I have found a simple and permanent solution: mute the internal speaker and monitor sound through the headphone port or an audio interface (plugged into in the thunderbolt or USB port).

First, just a little background: Unlike many laptops, plugging something into the headphone (audio output) port of my iMac does not stop the chime, because the internal speakers continue to play the chime. However, you can control the sound of the internal speakers separately from the headphone port. If you mute the internal speaker it stops the chime.

Like many people, I always listen to the audio of my mac either through a sound system or headphones plugged into the headphone port (or else through an audio interface plugged into the thunderbolt port). So muting the internal speaker doesn’t affect me; I can still hear audio. Also, I don’t have to constantly mute and unmute anything, or put any code into the system.

How to do this: When you have nothing plugged into the headphone port the system preferences for “Sound” let you mute the internal speakers. Be sure nothing is plugged into your headphone port. When you have something plugged into the headphone port the system preferences will allow you to change the settings for the headphone port only, and not the internal speakers. (By the way this seems like a confusing set up. Why not have these in the same menu at the same time?)

May 1, 2016 5:17 AM in response to imicanada

Amazing... that after all these years buying and using Mac's - that I am STILL annoyed by the loud start-up chime and having to take my TIME to search for a solution. Proof again, that some of the smartest people in the world (Apple employees), can also be some of the stupidest. PLEASE take a few minutes Apple and fix this irritating sound.

Jun 3, 2016 4:36 AM in response to imicanada

I only mind the chime when I need to start to silently. I'm not so tech savvy so all the script writing is not for me and I've tried holding down the mute button and putting in headphones with no luck.

What I did this morning was to turn on my computer and then I immediately put down the screen it before it had a chance to chime and then opened it again 3 seconds later. It worked and my son is still sleeping 🙂. While its not the ideal solution, for the few times I need to start up silently this should work.

Oct 25, 2016 8:42 AM in response to imicanada

I HAVE JUST DISCOVERED THE SECRET: Press the round start button, wait to hear a two part sound from inside the computer, sort of a wawa woo. Listen for it . it is a low sound ! Immediately press and hold down the speaker icon mute button. for a second or two. Then release it. The screen will appear with no sound. It takes a few tries to get it right , but it works for me. Then try and duplicate the procedure once you get it right. Good luck.

How do I turn off startup sound?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.