저도 집에서 쓰는 G4 466의 시동 소리 때문에 깜짝깜짝 놀랬더랬습니다. 해서 방법을 찾던 중 MacOSX Hints site에서 아래와 같은 tip을 찾았었는데 terminal에 조금 익숙하시면 별도의 Application 도움 없이 system shutdown시 자동으로 시동음 크기를 조절할 수 있습니다. 아래 예제는 system shutdown시 시동음을 mute 시키는 경우에 해당하겠군요.
First write a small script:
#!/bin/tcsh -f
osascript -e 'set volume 0'
I named mine mute.sh and saved it to /usr/local/bin/. Next, make it executable:
sudo chmod u+x /usr/local/bin/mute.sh
Add it as a logout hook using the defaults write command:
sudo defaults write com.apple.loginwindow LogoutHook /usr/local/bin/mute.sh
And last, make a small AppleScript with Script Editor to set the sound back to a normal level when the user logs back in.
set volume 3
Save it as a run-only application, and add it to your login items. Restart and listen to the startup sound, because you won't have to hear it again.