3ng1and Posted July 2, 2006 Share Posted July 2, 2006 Is there any way to enable the apple boot screen? every time I start my laptop (OS X 10.4.5) it always shows the progress mode. Thanks Link to comment https://www.insanelymac.com/forum/topic/20896-apple-boot-screen/ Share on other sites More sharing options...
snfgnc Posted July 2, 2006 Share Posted July 2, 2006 Start Mac OS X, open terminal and type: sudo -s (enter and type your password) cd /Library/Preferences/SystemConfiguration/ nano com.apple.Boot.plist Then where you see "timeout", delete "8". Now add: <key>Quiet Boot</key> <string>Yes</string> At the end you should see this: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple$ <plist version="1.0"> <dict> <key>Kernel</key> <string>mach_kernel</string> <key>Kernel Flags</key> <string></string> <key>Boot Graphics</key> <string>Yes</string> <key>Timeout</key> <string></string> <key>Quiet Boot</key> <string>Yes</string> </dict> </plist> Now press ctrl+o, press enter and close terminal. Restart your PC et voilà! You will have your apple boot smile.gif If you will have to acces to Darwin BootLoader, press F8 at boot. Bye Link to comment https://www.insanelymac.com/forum/topic/20896-apple-boot-screen/#findComment-138349 Share on other sites More sharing options...
belgrano Posted July 2, 2006 Share Posted July 2, 2006 Or, if you have <key>Kernel Flags</key> <string>-v</string> in the com.apple.Boot.plist, there's no need to add a QuietBoot key. Just delete that "-v" and save the plist. Link to comment https://www.insanelymac.com/forum/topic/20896-apple-boot-screen/#findComment-138379 Share on other sites More sharing options...
Recommended Posts