UPDATE: Please read Update 2 at the bottom of this post before using a 64-bit kernel as your default.
With Snow Leopard making its appearance this Friday, August 28, 2009, some people may be wondering whether they’ll be able to boot their Macs in 64-bit mode. Only Intel Xserves will boot this way by default. If you want to boot your desktop or mobile Mac in 64-bit mode, you’ll need to take some additional steps. The first is checking to see if your Mac has a 64-bit-capable EFI. If the output of the following command is EFI64, you’re good. If not, you’re out of luck.
ioreg -l -p IODeviceTree | awk -F'"' '/firmware-abi/{print $4}'
Once you’ve verified it’s possible, you have a couple options for making your Mac boot into 64-bit mode. I’d try them in this order. First, to affect the current boot only, hold down the ‘6′ and ‘4′ keys during bootup. Once you’ve verified it works and are comfortable with it, you can make the change permanent by adding an ‘arch=x86_64′ boot flag to your com.apple.Boot.plist, like so:
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.Boot 'Kernel Flags' 'arch=x86_64'
UPDATE 1 (8/28/09): Apple has a couple new (and one older) knowledge-base articles pertaining to this topic.
- Mac OS X Server v10.6: Macs that use the 64-bit kernel
- Mac OS X Server v10.6: Starting up with the 32-bit or 64-bit kernel
- How to tell if your Intel-based Mac has a 32-bit or 64-bit processor
UPDATE 2 (8/29/09): This post has received quite a few hits, so I now feel the need to include some educational material about why Apple chose to make Snow Leopard boot with a 32-bit kernel by default.
The primary reason is for compatibility with third-party software, particularly software that requires kernel extensions. Probably the most widely know examples of software that depends upon kernel extensions, or kexts, are VMware Fusion and Parallels. If you use these to run Windows or Linux on your Mac, you’ll want to keep using a 32-bit kernel. Virtualization software needs direct access to the hardware normally controlled by the kernel (CPU, RAM, Disk) in order to “fool” operating systems into thinking they’re installed on “real” computers. The kernel extensions allow them to do this.
Kexts must be written specifically for 32-bit or 64-bit kernels. They are not interchangeable. Applications, on the other hand, can run at 64-bit even if the kernel is 32-bit. As far as your 64-bit CPU is concerned, the kernel is just another application. It’s a very important application — in the sense that it is code that is executed on a processor — whose job it is to arbitrate demands on the system’s resources. Most applications don’t have direct access to the CPU, RAM, or other physical devices, but make requests of the kernel instead.
UPDATE 3 (9/1/09): John Siracusa’s new article on Snow Leopard was posted today. Then entire thing is great reading, but I’m linking to the section that addresses 64-bit vs 32-bit here.
Follow me on twitter
August 24, 2009 at 5:29 pm
Some other cmds:
Snow Leopard 32bit or 64bit (Can also hold 32 keys to boot temporarily into 32bit or 64 for 64bit on bootup.):
ioreg -p IODeviceTree -w0 -l | grep firmware-abi
Snow Leopard 32bit or 64bit (Can also hold 32 keys to boot temporarily into 32bit or 64 for 64bit on bootup.):
uname -a
Print nvram settings:
nvram -p
Set boot-args to use 64 bit kernel:
nvram boot-args=”arch=x86_64″
Set boot-args to use 32 bit kernel:
sudo nvram boot-args=”arch=i386″
sudo nvram -d boot-args
August 30, 2009 at 1:47 am
Does not work on my MacBookPro2,2 (C2D 2,16)
August 30, 2009 at 10:30 am
Your MacBook Pro has a 32-bit EFI. Although this isn’t technically a barrier to loading a 64-bit kernel, Apple restricts loading of the 64-bit kernel to machines with 64-bit EFI.
August 30, 2009 at 2:54 pm
[...] permalink Dude, come on: sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.Boot 'Kernel Flags' 'arch=x86_64' Can I boot Snow Leopard in 64-bit mode? Your Mac Guy (and more) [...]
September 3, 2009 at 4:26 am
cant boot 64bit mode anyway :
[floxy:~] root# ioreg -l -p IODeviceTree|grep abi
| | “firmware-abi” =
([floxy:~] root# nvram -p |grep arg
boot-args arch=x86_64
com.apple.Boot.plist:
Kernel Flags
arch=x86_64
[floxy:~] root# defaults find ‘Kernel Flags’
Found 1 keys in domain ‘com.apple.Boot’: {
“Kernel Flags” = “arch=x86_64″;
}
[floxy:~] root#
and anyway in About This Mac -> More info -> System:
64-bit Kernel and Extensions: No
please help..
September 11, 2009 at 11:26 am
[...] Ref 7. Can I boot Snow Leopard in 64-bit mode? [...]
September 19, 2009 at 3:41 pm
I think this is a problem:
I have the 64-bit firmware on my imac
mymac:~ john$ sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.Boot ‘Kernel Flags’
2009-09-19 14:41:10.164 defaults[248:e07]
Rep argument is not a dictionary
Defaults have not been changed.
September 19, 2009 at 8:57 pm
You left off the ‘arch=x85_64′ part. Make sure you use the whole command:
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.Boot ‘Kernel Flags’ ‘arch=x86_64′
September 30, 2009 at 9:04 am
I tried the above-mentioned method together with the one on the Apple site under ‘Update 1′. This is the response from terminal:
Last login: Wed Sep 30 14:36:12 on console
vc-41-7-22-230:~ Chris$ sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.Boot ‘Kernel Flags’ ‘arch=x86_64′
Password:
2009-09-30 15:00:43.356 defaults[349:1707] Unexpected argument ‘arch=x86_64′; leaving defaults unchanged.
vc-41-7-22-230:~ Chris$
I own a MBP 3,1 and confirmed the EFI to be 64 compatible.
Any Thoughts?
Chris
October 7, 2009 at 9:31 pm
Just FYI: I’ve been having problems with Snow Leopard not respecting my Text Replacement preference to not substitute curly quotes in Safari forms (so any web pages HTML or CSS editing).
I’ve resorted to copying everything out to TextWrangler and then back into the browser for minor edits.
Something to be aware of.
October 18, 2009 at 4:56 pm
Hey friend, congrats!Very good post.
I only have one question, do we have reports of MacBook 5,1 booting in 64 bit kernel mode?
October 18, 2009 at 5:24 pm
The MacBook 5,1 does not come with a 64-bit EFI, so without a hack you can’t boot in 64-bit mode. Amit Singh wrote about such a hack on his blog. Check neat the end of the page.
October 18, 2009 at 6:35 pm
nope, my Macbook does have a 64 bit EFI, that means that i can boot in 64 bit kernel mode?
October 19, 2009 at 8:45 pm
How to tell if your Intel-based Mac has a 32-bit or 64-bit processor
Processor Name 32- or 64-bit
Intel Core Solo 32 bit
Intel Core Duo 32 bit
Intel Core 2 Duo 64 bit
Intel Quad-Core Xeon 64 bit
November 3, 2009 at 10:11 am
The Mac Pro from End 2006 returns 32, and can’t get it to 64.
Snow Leopard runs fine on it of course.
The iMac 24″ from Early 2009 returns 64, and boots fine in 64.
And Snow Leopard runs fine on it too.
Powerbook from End 2005 of course won’t run Snow Leopard at all.
That’s my experience.
Thanks for this article!
November 17, 2009 at 1:54 pm
Hi. I got:
MacBookPro3,1
Intel Core 2 Duo 2.4 GHz
Mac OS X 10.6.2
I did
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.Boot ‘Kernel Flags’ ‘arch=x86_64′
and when checking System Software Overview, the 64-bit Kernel and Extensions says No. ¿any ideas?
also when typing nvram -p in Terminal, I get boot-args arch=x86_64
November 17, 2009 at 2:15 pm
Have you rebooted?