I’ve always been a fan of verbose booting screens letting me know what’s going on while the OS is booting and recently this came to my attention, we can do it on OS X. Booting it once in verbose mode is as simple as holding Command+V when we power it up but if we want it to act like that by default we’ll have to open a Terminal window and type the following:
sudo nvram boot-args=”-v”
To disable verbose mode type the following:
sudo nvram boot-args=
Another option we have on Snow Leopard is booting into 64 bits mode on supported machines, we can hold the 6 and the 4 keys on boot if we want to do it once but if we want it booting into 64 bits by default we’ll have to follow a few necessary steps.
First of all we’ll need to know if we have a 64 bit EFI. Issue the following command on a Terminal window:
ioreg -l -p IODeviceTree | grep firmware-abi
We’ll either get a “EFI32″ or a “EFI64″ result. If we have a 64 bit EFI we’re good to go.
Find and edit /Library/Preferences/SystemConfiguration/com.apple.Boot.plist replacing:
Kernel Flags
With
Kernel Flags
arch=x86_64
Reboot :)