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 Best 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 24, 2014 6:28 PM in response to Hippomormor

For anyone interested, here is my step by step to turning off the default startup sound. This builds on Hippomormor's posts back in October, filling in the gaps for basic users such as myself and adding a bit of context. The context may not be perfect, but I'm running Mavericks 10.9.2 and this works.


open terminal


type

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

this creates a mute-on.sh script file in a vim (editor) instance


press ‘i’ this will allow you to enter or ‘insert’ text


type

#!/bin/bash

osascript -e 'set Volume with output muted'


the first line means run this script in bash. 'bash' is a shell. A shell is a program that takes your commands from the keyboard and gives them to the operating system to perform.

the second line says “run the following statement 'set Volume with output muted’”.

Applescript adopts a plain English approach and this string mutes the volume. To unmute, which we’ll have to do below, the statement will change to ‘set Volume without output muted’. I guess the plain English approach only goes so far.


press ‘Esc’. This gets you out of the ‘insert text’ mode in the vim editor


hold ‘Shift’ and press the 'z' key twice. This gets you out of the vim editor and back into Terminal


type

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

this creates a mute-off.sh file in the nano editor. why use a different editor? not sure.


in your nano instance, type

#!/bin/bash

osascript -e 'set volume without output muted'


- Press ‘control + x’ then ‘y’ then ‘enter/return’

‘control + x’ is the Exit command in the nano editor, ‘y’ for “Yes, please” and ‘enter/return’ to save it to the default chosen file (the one you’ve been editing)


You’re back in Terminal

type

sudo chmod u+x /Library/Scripts/mute-on.sh

press ‘enter’

you’ll be asked to enter your administrator password


then type

sudo chmod u+x /Library/Scripts/mute-off.sh

I was not asked for another password


then type

sudo defaults write com.apple.loginwindow LogoutHook /Library/Scripts/mute-on.sh

press ‘enter’

this tells the computer to run the mute-on script when logging out


then type

sudo defaults write com.apple.loginwindow LoginHook /Library/Scripts/mute-off.sh

press ‘enter’

this tells the computer to run the mute-off script when logging in


Close your Terminal window and restart your computer a couple of times and enjoy the silence.


Hopefully this helps and works for you too.

Apr 25, 2014 3:07 AM in response to imicanada

Actually there is not a perminent solution for turning-off startup chime without third-part apps or writing some commands in terminal.


If you do not want to use 3rd part apps and change some operation system files you have have two options;


1. Press the mute key just before shutting computer down

2. Hold the mute key while turning computer on.

May 18, 2014 8:18 AM in response to Ruairelie

A lot of steps, but worked! I'm not comfortable with installing apps that do this for you, and was looking for a script instead.


The nano script editor thing got me confused as I was reading your process, but was back on track when the nano editor popped up for me to see after typing the said line code.


I'm running 10.7.5 on a late model 2006 imac.


Thanks for the info!

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