Macbook Pro 8,2 EFI_STUB loading with rEFInd Failing

Hello fellow Arch users, I've been struggling with trying to get Arch running on my Macbook Pro 8,2 (Early 2011) for the past couple of days and I was hoping that the collective intelligence of the community might be able to help me. I feel that the combination of recent changes in the installation medium, using a Macbook, and my hardware modifications have all converged to make it hard to diagnose what is wrong.  First off for hardware I have:
Processor: Core i7 (I7-2820QM)
Integrated Graphics: Intel HD Graphics 3000
Dedicated Graphics: AMD Radeon HD 6750M 1024 MB
Ram: 16G (8Gx2) 1333 MHz
Internal Harddrive: 1Tb WDC WD10TPVT-00HT5T1
Internal Harddrive (in optical drive spot with an OWC Data Doubler): 128Gb APPLE SSD TS128C
I have the SSD setup with only OSX and I planned on installing Arch to the HHD and using rEFInd to boot everything with EFI_STUB.  Initially started by trying to install from an external source, but was unable to do so.  In the past I had attempted to install windows 7 from an external CD drive only to learn that it is essentially imposible (it would appear to firmware constraint as the Macbook Airs and rMacbook Pros as able to) and I wonder if the same constraint applies for linux live CDs.  I tried the "Remove UEFI boot support from ISO" from the UEFI page as well and that did not help.  Oddly enough I also was unable to get any usb medium to work as well (both the regular install disk and Archboot, the "Create UEFI bootable USB from ISO" method of the UEFI page) even though it seems that many others have successfully gotten this to work and it should not be affected by my modifications.
At this point I removed the SSD from inside and replaced it with the original super drive.  rEFInd will not boot it through efi, but will boot it through BIOS emulation (the partition is listed as windows in rEFInd).  From there I followed the standard insertion procedure to get Arch installed (following UEFI_Bootloaders#Linux_Kernel_EFISTUB, Unified_Extensible_Firmware_Interface#Create_an_UEFI_System_Partition_in_Linux and MacBook_Pro_8,1_/_8,2_/_8,3_(2011_Macbook_Pro):
$ cgdisk /dev/sda
    512M partition of type EF00, name efi
    the rest default type (linux), name root
$ mkfs.vfat -F32 /dev/sda1
$ mkfs.ext4 /dev/sda2
$ mount /dev/sda2 /mnt
$ mkdir /mnt/boot/efi
$ mount /dev/sda1 /mnt/boot/efi
$ mkdir /mnt/boot/efi/EFI/arch/
$ pacstrap /mnt base{,-devel}
$ genfstab -p /mnt >> /mnt/etc/fstab
$ arch-chroot /mnt
$ nano /etc/mkinitcpio.conf
    MODULES="..ahci libahci.."  #The Macbook page recommends this and I tried it with sd_mod as well based off some previous forum posts.
$ mkinitcpio -p linux
$ cp /boot/vmlinuz-linux /boot/efi/EFI/arch/vmlinuz-arch.efi
$ cp /boot/initramfs-linux.img /boot/efi/EFI/arch/initramfs-arch.img
$ cp /boot/initramfs-linux-fallback.img to /boot/efi/EFI/arch/initramfs-arch-fallback.img
# create /boot/efi/EFI/arch/refind_linux.conf as instructed with the UUID of sda2
$ echo “archy” >> /etc/hostname
$ ln -s /usr/share/zoneinfo/America/New_York /etc/localtime
$ echo “America/New_York” >> /etc/timezone
$ vi /etc/locale.gen
    /#en_US and uncomment
$ locale-gen
$ hwclock --systohc --utc
$ echo “KEYMAP=us” >> /etc/vconsole.conf
$ passwd root
$ exit
$ umount /mnt/boot/efi
$ umount /mnt
$ reboot
When I reboot rEFInd does not show the arch partition, but if I boot holding option to bring up the built in partition selection and select the efi partition, rEFInd loads showing the arch linux partition.  At this point it loads and gets stuck displaying:
Error: device '' not found.  Skipping fsck
Error: Unable to find root device ''.
You are being dropped to a recovery shell
    Type 'exit' to try and continue booting
sh: cant access tty; job control turned off
[rootfs /]#
I've tried mounting /dev/sda and I simply presents the same error again.
I can confirm the default kernel has EFI_STUB enable as:
$ zcat /proc/config.gz | grep EFI_STUB
displays:
CONFIG_EFI_STUB=y
Any help would be greatly appreciated.  I have refined installed on the SSD with OSX and most guides have it installed on the EFI partition with Arch.  Is there a different approach I should be taking to set this up with two disks? Thanks.

So, I really don't want to hijack this thread, but seeing that I've now 'repaired' my system from the damage mentioned before, I feel I should.
@WonderWoofy:
Well, I very much doubt that this was an issue with my firmware, my reasoning being that it quite simply did not change, the arch-packages however did, quite invasively I may add.
To clarify,
linux (3.6.2-1 -> 3.6.4-1) was the update that broke my systen boot for me.
linux (3.6.4-1 -> 3.6.6-1) since today has again fixed it.
My custom kernel was just vanilla 3.6.0.
So what I did to repair, was to boot up using a live-cd and after discovering I still had my custom-built kernel I copied it back to my EFI-partition, and guess what, it no longer booted!!
to be more precise, it booted, but no display, and after my hdd seemed to have settled, unresponsive/frozen system, hard-reset the only option. The stock kernel(3.6.4-1) never did boot, just froze immediately on load(I could still see the efi-shell).
So, I figured it must be systemd`s fault (because its responsible for loading my system and it was probably no longer working properly with the older kernel version + udev).
My solution was to boot using an older arch-installation cd (in bios-mode!!! again efimode broken) and chroot, update the system, and for now it seems to work again.
So I restate, that arch+efi can be quite unstable at times, even though it could well be my 'luck' to have multiple issues all at once.
To round this off, and maybe benefit the OP, I thought I'd clarify my setup.
I have a single disk, gpt formatted. It holds 7 partitions:
/dev/sda1 -> EFI
/dev/sda2 -> MSRESERVE
/dev/sda3 -> WINDOWS
/dev/sda4 -> DATA
/dev/sda5 -> LINUX
/dev/sda6 -> HOME
/dev/sda7 -> SWAP
Note, I do not have a separate boot partition.
My LINUX partition is laid out in the following way:
/boot -> contains the stock vmlinuz-linux and initramfs-linux.img
/boot/efi -> mountpoint for the EFI partition
fstab entry:
/dev/sda1 /boot/efi vfat rw,noexec,fmask=0113,dmask=0022 0 0
When mounted in such a way, /boot/efi contains:
ls -l /boot/efi/ ->
drwxr-xr-x 8 root root 2.0K Nov 20 14:29 EFI/
ls -l /boot/efi/EFI/ ->
drwxr-xr-x 2 root root 2.0K Nov 20 14:30 arch/
drwxr-xr-x 2 root root 2.0K Nov 20 14:30 archmy/
drwxr-xr-x 2 root root 2.0K Jun 15 19:41 Boot/
drwxr-xr-x 3 root root 2.0K Jun 15 19:25 Microsoft/
drwxr-xr-x 4 root root 2.0K Aug 9 14:48 refind/
drwxr-xr-x 2 root root 2.0K Aug 9 15:09 tools/
Now of interest are the /boot/efi/EFI/refind/ and /boot/efi/EFI/arch folders.
Notice the /boot/efi/EFI/archmy folder is for my custom kernel mentioned above.
Separate folders are one way to use refind's auto-detection mechanism (hence no need to mess with manual boot stanzas) and not have the arch-specific problem of unversioned kernel files.
So /boot/efi/EFI/arch contains:
-rw-rw-r-- 1 root root 13M Nov 21 13:08 initramfs-linux-fallback.img
-rw-rw-r-- 1 root root 4.0M Nov 21 13:08 initramfs-linux.img
-rw-rw-r-- 1 root root 200 Nov 20 14:14 refind_linux.conf
-rw-rw-r-- 1 root root 3.4M Nov 21 13:08 vmlinuz-linux.efi
and /boot/efi/EFI/refind contains:
drwxr-xr-x 2 root root 2.0K Aug 9 14:48 drivers_x64/
drwxr-xr-x 2 root root 4.0K Aug 9 14:48 icons/
-rw-rw-r-- 1 root root 12K Nov 20 14:14 refind.conf
-rw-rw-r-- 1 root root 137K Jun 23 23:26 refind_x64.efi
The two important configuration files are /boot/efi/EFI/arch/refind_linux.conf:
"Boot with Default Options" "root=/dev/sda5 ro rootfstype=ext4 add_efi_memmap"
"Boot with More Options" "root=/dev/sda5 ro rootfstype=ext4 add_efi_memmap radeon.modeset=1 iommu=pt radeon.pcie_gen2=1"
In this case I have two seperate kernel-cmd lines, each with different options. I can select which to use, by selecting the 'kernel-entry' I want when refind loads up(each directory, arch/ and archmy/ are a seperate icon)
and pressing'+'. A menu will appear which will show both those lines and I can choose the one I want. This can also be handy when wanting to boot with debugging options.
For instance, the 'radeon-options' are specific to my hw-setup.
Notice that there is no mention of which initramfs file to use, this is handled by refind automatically, BUT can be wonky if not separating kernel versions properly!!!
The only required option is 'root=/dev/sda5' which obviously points at my root partition. (in this case /dev/sda5 -> LINUX)
And /boot/efi/EFI/refind/refind.conf:
timeout 7
hideui banner,label
#icons_dir myicons
#banner hostname.bmp
#selection_big selection-big.bmp
#selection_small selection-small.bmp
#textonly
#resolution 1024 768
use_graphics_for osx,windows
#showtools shell, about, reboot
#scan_driver_dirs EFI/tools/drivers,drivers
#scanfor internal,external,optical
#also_scan_dirs boot,EFI/linux/kernels
dont_scan_dirs EFI/boot
#scan_all_linux_kernels
#max_tags 0
#default_selection 1
These are just the configuration options I have set/unset. Note that some of the commented-out options are still in use, they are just the defaults.
This gives me automatic kernel detection (as long as properly separating things!) and at least when the image itself is working, results in a boot-able system

Similar Messages

  • Hello. I have a macbook pro 2011 that originally came with os lion (on the computer not a disk). What I did was I downloaded Os Mountain lion. There was nothing wrong with it but I just feel the battery life is too short. So what I did was I tried to do s

    Hello
    I have a macbook pro 2011 13" that came with OS Lion (integrated not on a disk). I recently bought OS Mountain Lion of the app store and it is working fine. However I was a bit dissapointed in the battery so I decided to try and downgrade and completely failed, I froze the computer and when I restarted it it did not work. I went into recovery system and erased my disk and all that and went to re-download my OS. I was expecting to get the option to re-download Lion but instead I could only re-download Mountain Lion.
    My question is since my computer originally came with Lion can I reset my computer so I get OS Lion back instead of OS Mountain Lion?
    Thanks for any help. Any answer will be appreciated even if it is saying it is not possible.

    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
        1.    Select Disk Utility from the main menu and click on the Continue button.
        2.    After DU loads select your startup volume (usually Macintosh HD) from the left side list. Click on the Erase tab in the DU main window.
        3.    Set the format type to Mac OS Extended (Journaled.) Click on the Erase button and wait until the process has completed.
        4.    Quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Kappy, a pretty wonderful and very knowledgeable man, has tip for that which I have copied and pasted above

  • Macbook Pro Mid-2010 Crashing Randomly with Mavericks?

    Hey gang,
    I recently upgraded to Mavericks right after purchasing a used Macbook Pro mid-2010. However, more frequently, the laptop has been crashing randomly, and it does not matter which programs/apps are running when it does. Below is the latest crash report. I am looking for help to avoid the nonsense of having to deal with the Genius Bar if at all possible.
    If anyone could help me out and lend a helping hand as to what's causing the problem and how to fix it, I would be eternally grateful! Thanks so much.
    Anonymous UUID:       REMOVED
    Wed Feb  5 21:02:19 2014
    panic(cpu 1 caller 0xffffff8010edc19e): Kernel trap at 0xffffff7f92da3d22, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff851d1dc040, CR3: 0x00000000281f507f, CR4: 0x00000000000206e0
    RAX: 0x00000000fffffda0, RBX: 0x00000000fffffda0, RCX: 0x00000000fffffda0, RDX: 0x0000000005ca79c0
    RSP: 0xffffff810209b980, RBP: 0xffffff810209b9c0, RSI: 0xffffff811d1dc9c0, RDI: 0xffffff80e2e90000
    R8:  0xffffff7f92dc10dc, R9:  0x00000000000004ad, R10: 0x0000000000000002, R11: 0x0000000005b20840
    R12: 0xffffff811d1dc9c0, R13: 0x00000000e00002c2, R14: 0x0000000005ca79c0, R15: 0xffffff80e2e90000
    RFL: 0x0000000000010246, RIP: 0xffffff7f92da3d22, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff851d1dc040, Error code: 0x0000000000000002, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff810209b610 : 0xffffff8010e22f69
    0xffffff810209b690 : 0xffffff8010edc19e
    0xffffff810209b860 : 0xffffff8010ef3606
    0xffffff810209b880 : 0xffffff7f92da3d22
    0xffffff810209b9c0 : 0xffffff7f92d97cd2
    0xffffff810209b9e0 : 0xffffff7f92d8585b
    0xffffff810209bb20 : 0xffffff7f92d83abd
    0xffffff810209bb70 : 0xffffff80112cc226
    0xffffff810209bb90 : 0xffffff80112cd821
    0xffffff810209bbf0 : 0xffffff80112cb28f
    0xffffff810209bd40 : 0xffffff8010eb6008
    0xffffff810209be50 : 0xffffff8010e26bb1
    0xffffff810209be80 : 0xffffff8010e139b5
    0xffffff810209bef0 : 0xffffff8010e1e003
    0xffffff810209bf70 : 0xffffff8010ec921d
    0xffffff810209bfb0 : 0xffffff8010ef3e26
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelHDGraphics(8.1.8)[3B0E1776-E304-3C2F-AA61-F2E2283EBE 7A]@0xffffff7f92d79000->0xffffff7f92e38fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f914ba000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f91778000
    BSD process name corresponding to current thread: firefox
    Mac OS version:
    13B42
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:     0x0000000010c00000
    Kernel text base: 0xffffff8010e00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 741360758015
    last loaded kext at 295522644872: com.apple.filesystems.msdosfs          1.9 (addr 0xffffff7f91d17000, size 65536)
    last unloaded kext at 388102998030: com.apple.driver.AppleUSBUHCI          650.4.0 (addr 0xffffff7f9200b000, size 65536)
    loaded kexts:
    com.avast.AvastFileShield          2.1.0
    com.avast.PacketForwarder          1.4
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.14.11
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleHDA          2.5.3fc1
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.GeForceTesla          8.1.8
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.2.0f6
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleMikeyDriver          2.5.3fc1
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleMuxControl          3.4.12
    com.apple.driver.AppleIntelHDGraphics          8.1.8
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.8
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBCardReader          3.3.5
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleIRController          325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.iokit.SCSITaskUserClient          3.6.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.4.0
    com.apple.driver.AppleUSBHub          650.4.4
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.iokit.AppleBCM5701Ethernet          3.6.9b9
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleAHCIPort          2.9.5
    com.apple.driver.AppleUSBEHCI          650.4.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.0
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.kext.triggers          1.0
    com.apple.AppleGraphicsDeviceControl          3.4.12
    com.apple.driver.DspFuncLib          2.5.3fc1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.4fc11
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.5.3fc1
    com.apple.iokit.IOHDAFamily          2.5.3fc1
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.iokit.IOBluetoothFamily          4.2.0f6
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.AppleGraphicsControl          3.4.12
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.nvidia.classic.NVDANV50HalTesla          8.1.8
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.nvidia.classic.NVDAResmanTesla          8.1.8
    com.apple.iokit.IONDRVSupport          2.3.6
    com.apple.iokit.IOGraphicsFamily          2.3.6
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.5.1d27
    com.apple.driver.AppleSMC          3.1.6d1
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.0
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.AppleUSBMultitouch          240.6
    com.apple.iokit.IOUSBHIDDriver          650.4.4
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.0
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.0
    com.apple.iokit.IOUSBUserClient          650.4.4
    com.apple.iokit.IO80211Family          600.34
    com.apple.iokit.IOEthernetAVBController          1.0.3b3
    com.apple.driver.mDNSOffloadUserClient          1.0.1b4
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.6.0
    com.apple.iokit.IOUSBFamily          650.4.4
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.10
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          21
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Internal Memory Card Reader
    USB Device: Hub
    USB Device: Built-in iSight
    USB Device: IR Receiver
    Thunderbolt Bus:

    Didn't know Avast was so ****** haha. I removed it last night and also unchecked "automatic graphic switching" in the energy saver preferences. Then shut down my computer and went to bed. Woke up this morning and within five minutes, the computer crashed again. Here's the new report:
    (P.S. I read that this model of Macbook Pro has a known problem with GPU Panic -____-)
    Thanks for the help so far! I really appreciate it.
    Anonymous UUID:  
    Thu Feb  6 09:29:04 2014
    panic(cpu 2 caller 0xffffff7f86b53fac): "GPU Panic: [<None>] 3 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80fc8c1000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.12/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80f5bf3140 : 0xffffff8004822f69
    0xffffff80f5bf31c0 : 0xffffff7f86b53fac
    0xffffff80f5bf3290 : 0xffffff7f8521c53d
    0xffffff80f5bf3350 : 0xffffff7f852e8d9e
    0xffffff80f5bf3390 : 0xffffff7f852e8dfc
    0xffffff80f5bf3400 : 0xffffff7f8556d5be
    0xffffff80f5bf3530 : 0xffffff7f8530cd41
    0xffffff80f5bf3550 : 0xffffff7f8522308d
    0xffffff80f5bf3600 : 0xffffff7f85220bae
    0xffffff80f5bf3800 : 0xffffff7f85221af6
    0xffffff80f5bf38e0 : 0xffffff7f86189ba2
    0xffffff80f5bf3920 : 0xffffff7f8619955f
    0xffffff80f5bf3940 : 0xffffff7f861c751b
    0xffffff80f5bf3980 : 0xffffff7f861c757b
    0xffffff80f5bf39c0 : 0xffffff7f8619eff5
    0xffffff80f5bf3a10 : 0xffffff7f8616ad3e
    0xffffff80f5bf3aa0 : 0xffffff7f86166cc7
    0xffffff80f5bf3ad0 : 0xffffff7f86164816
    0xffffff80f5bf3b00 : 0xffffff8004ccb873
    0xffffff80f5bf3b90 : 0xffffff8004ccd76f
    0xffffff80f5bf3bf0 : 0xffffff8004ccb28f
    0xffffff80f5bf3d40 : 0xffffff80048b6008
    0xffffff80f5bf3e50 : 0xffffff8004826bb1
    0xffffff80f5bf3e80 : 0xffffff80048139b5
    0xffffff80f5bf3ef0 : 0xffffff800481e003
    0xffffff80f5bf3f70 : 0xffffff80048c921d
    0xffffff80f5bf3fb0 : 0xffffff80048f3e26
    Kernel Extensions in backtrace:
    com.apple.driver.AppleMuxControl(3.4.12)[A4934A66-0E30-36E9-984A-650481102449]@0 xffffff7f86b46000->0xffffff7f86b58fff
    dependency: com.apple.driver.AppleGraphicsControl(3.4.12)[661E3C87-5B97-3272-88FF-B9BA9B6E2 4ED]@0xffffff7f86b3e000
    dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f85124000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f84eba000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f85178000
    dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f86b41000
    com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3C 2786]@0xffffff7f851cb000->0xffffff7f8543afff
    dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f84eba000
    dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f851bb000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f85178000
    com.apple.nvidia.classic.NVDANV50HalTesla(8.1.8)[3666E0FC-87C7-3329-BD8C-2F1ADED 100A4]@0xffffff7f85445000->0xffffff7f856f1fff
    dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f851cb000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f84eba000
    com.apple.GeForceTesla(8.1.8)[7DAF283F-6FD3-3783-B3CC-D23964F1B9B8]@0xffffff7f86 149000->0xffffff7f86213fff
    dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f84eba000
    dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f851bb000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f85178000
    dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f851cb000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13B42
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:
    0x0000000004600000
    Kernel text base: 0xffffff8004800000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 584004891492
    last loaded kext at 265489557032: com.apple.filesystems.msdosfs
    1.9 (addr 0xffffff7f86c56000, size 65536)
    last unloaded kext at 326217985111: com.apple.filesystems.msdosfs
    1.9 (addr 0xffffff7f86c56000, size 57344)
    loaded kexts:
    com.apple.driver.AudioAUUC
    1.60
    com.apple.driver.AppleHWSensor
    1.9.5d0
    com.apple.driver.AGPM
    100.14.11
    com.apple.filesystems.autofs
    3.0
    com.apple.driver.AppleMikeyHIDDriver
    124
    com.apple.driver.AppleHDA
    2.5.3fc1
    com.apple.GeForceTesla
    8.1.8
    com.apple.driver.SMCMotionSensor
    3.0.4d1
    com.apple.driver.AppleMikeyDriver
    2.5.3fc1
    com.apple.driver.AppleUpstreamUserClient
    3.5.13
    com.apple.driver.AppleIntelHDGraphics
    8.1.8
    com.apple.driver.AppleIntelHDGraphicsFB
    8.1.8
    com.apple.driver.AppleSMCPDRC
    1.0.0
    com.apple.driver.AppleSMCLMU
    2.0.4d1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport
    4.2.0f6
    com.apple.iokit.IOUserEthernet
    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager
    4.2.0f6
    com.apple.Dont_Steal_Mac_OS_X
    7.0.0
    com.apple.driver.AppleHWAccess
    1
    com.apple.driver.AppleLPC
    1.7.0
    com.apple.driver.ACPI_SMC_PlatformPlugin
    1.0.0
    com.apple.driver.AppleMuxControl
    3.4.12
    com.apple.driver.AppleMCCSControl
    1.1.12
    com.apple.driver.AppleUSBTCButtons
    240.2
    com.apple.driver.AppleUSBCardReader
    3.3.5
    com.apple.driver.AppleIRController
    325.7
    com.apple.driver.AppleUSBTCKeyboard
    240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless
    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib
    1.0.0d1
    com.apple.BootCache
    35
    com.apple.iokit.SCSITaskUserClient
    3.6.0
    com.apple.driver.XsanFilter
    404
    com.apple.iokit.IOAHCIBlockStorage
    2.4.0
    com.apple.driver.AppleFWOHCI
    4.9.9
    com.apple.driver.AppleUSBHub
    650.4.4
    com.apple.driver.AirPort.Brcm4331
    700.20.22
    com.apple.iokit.AppleBCM5701Ethernet
    3.6.9b9
    com.apple.driver.AppleAHCIPort
    2.9.5
    com.apple.driver.AppleUSBEHCI
    650.4.1
    com.apple.driver.AppleSmartBatteryManager
    161.0.0
    com.apple.driver.AppleRTC
    2.0
    com.apple.driver.AppleACPIButtons
    2.0
    com.apple.driver.AppleHPET
    1.8
    com.apple.driver.AppleSMBIOS
    2.0
    com.apple.driver.AppleACPIEC
    2.0
    com.apple.driver.AppleAPIC
    1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient
    216.0.0
    com.apple.nke.applicationfirewall
    153
    com.apple.security.quarantine
    3
    com.apple.driver.AppleIntelCPUPowerManagement
    216.0.0
    com.apple.AppleGraphicsDeviceControl
    3.4.12
    com.apple.kext.triggers
    1.0
    com.apple.driver.DspFuncLib
    2.5.3fc1
    com.apple.vecLib.kext
    1.0.0
    com.apple.iokit.IOAudioFamily
    1.9.4fc11
    com.apple.kext.OSvKernDSPLib
    1.14
    com.apple.nvidia.classic.NVDANV50HalTesla
    8.1.8
    com.apple.nvidia.classic.NVDAResmanTesla
    8.1.8
    com.apple.iokit.IOFireWireIP
    2.2.5
    com.apple.driver.AppleHDAController
    2.5.3fc1
    com.apple.iokit.IOHDAFamily
    2.5.3fc1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport
    4.2.0f6
    com.apple.iokit.IOSurface
    91
    com.apple.iokit.IOSerialFamily
    10.0.7
    com.apple.iokit.IOBluetoothFamily
    4.2.0f6
    com.apple.driver.AppleSMBusPCI
    1.0.12d1
    com.apple.driver.AppleSMC
    3.1.6d1
    com.apple.driver.IOPlatformPluginLegacy
    1.0.0
    com.apple.driver.IOPlatformPluginFamily
    5.5.1d27
    com.apple.driver.AppleGraphicsControl
    3.4.12
    com.apple.driver.AppleBacklightExpert
    1.0.4
    com.apple.iokit.IONDRVSupport
    2.3.6
    com.apple.driver.AppleSMBusController
    1.0.11d1
    com.apple.iokit.IOGraphicsFamily
    2.3.6
    com.apple.iokit.IOSCSIBlockCommandsDevice
    3.6.0
    com.apple.iokit.IOUSBMassStorageClass
    3.6.0
    com.apple.driver.AppleUSBMultitouch
    240.6
    com.apple.iokit.IOUSBHIDDriver
    650.4.4
    com.apple.driver.AppleUSBMergeNub
    650.4.0
    com.apple.driver.AppleUSBComposite
    650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice
    3.6.0
    com.apple.iokit.IOBDStorageFamily
    1.7
    com.apple.iokit.IODVDStorageFamily
    1.7.1
    com.apple.iokit.IOCDStorageFamily
    1.7.1
    com.apple.iokit.IOAHCISerialATAPI
    2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily
    3.6.0
    com.apple.iokit.IOFireWireFamily
    4.5.5
    com.apple.iokit.IOUSBUserClient
    650.4.4
    com.apple.iokit.IO80211Family
    600.34
    com.apple.iokit.IOEthernetAVBController
    1.0.3b3
    com.apple.driver.mDNSOffloadUserClient
    1.0.1b4
    com.apple.iokit.IONetworkingFamily
    3.2
    com.apple.iokit.IOAHCIFamily
    2.6.0
    com.apple.iokit.IOUSBFamily
    650.4.4
    com.apple.driver.AppleEFINVRAM
    2.0
    com.apple.driver.AppleEFIRuntime
    2.0
    com.apple.iokit.IOHIDFamily
    2.0.0
    com.apple.iokit.IOSMBusFamily
    1.1
    com.apple.security.sandbox
    278.10
    com.apple.kext.AppleMatch
    1.0.0d1
    com.apple.security.TMSafetyNet
    7
    com.apple.driver.AppleKeyStore
    2
    com.apple.driver.DiskImages
    371.1
    com.apple.iokit.IOStorageFamily
    1.9
    com.apple.iokit.IOReportFamily
    21
    com.apple.driver.AppleFDEKeyStore
    28.30
    com.apple.driver.AppleACPIPlatform
    2.0
    com.apple.iokit.IOPCIFamily
    2.8
    com.apple.iokit.IOACPIFamily
    1.4
    com.apple.kec.corecrypto
    1.0
    com.apple.kec.pthread
    1
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Internal Memory Card Reader
    USB Device: Hub
    USB Device: IR Receiver
    USB Device: Built-in iSight
    Thunderbolt Bus:

  • My macbook pro is running very slow with some strange mouse and window movements. The trackpad is very unresponsive and when responding the cursor moves on its own and/or very erratically. When on safari the window suddenly zooms in or highlights words.

    My macbook pro is running very slow with some strange mouse and window movements. The trackpad is very unresponsive and when responding the cursor moves on its own and/or very erratically. When on safari the window suddenly zooms in or highlights words and looks them up via dictionary. I currently have a wireless mouse connected and I am still having the same problems.
    I fee like I may have a virus or my laptop is perhaps being accessed remotely. All of the sharing options are unchecked.
    HELP PLEASE
    Very worried!!

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and
         after the chime press and hold down the OPTION key until the boot manager screen appears.
         Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
         Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).
    4. Reinstall Lion/Mountain Lion, Mavericks: Reboot from the Recovery HD. Select Reinstall Lion/Mountain Lion, Mavericks from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).

  • I am using an early 2008 MacBook Pro and am having issues with it deleting text on its own (in word, emails, etc.). As I am typing it all of a sudden starts deleting and I can't stop it. What can I do?

    I am using an early 2008 MacBook Pro and am having issues with it deleting text on its own (in word, emails, etc.). As I am typing it all of a sudden starts deleting and I can't stop it. This happened once before and it was due to a buldging battery pressing on the track pad. I checked the battery and it appears to be fine. What can I do?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • When I create a new folder on the desktop of my macbook pro, it is automatically populated with all of the files on the desktop, which I don't want.

    when I create a new folder on the desktop of my macbook pro, it is automatically populated with all of the files on the desktop, which I don't want.

    I got the problem solved. It was pretty simple but new to me. I had evidently inadvertently switched the setting in the "View" tab on the dropdown menu so that all of my desktop folders were populated by all folders/documents residing on the desktop.
    The solution was to open one of the folders, then go to the "View" tab and change the setting to "List." Presto, now all the folders include only the contents I had intentionally loaded into them.

  • HT3986 Hi, i have a macbook pro version 10.6.8 with boot camp version 3.0.4. I managed to install windows 7 professional x64, however when i insert my OS CD to install the drivers using the boot camp method, it says unsupported to this computer model

    Hi, i have a macbook pro version 10.6.8 with boot camp version 3.0.4. I managed to install windows 7 professional x64 bits but however when i tried to install the drivers using the OSX MAC CD using boot camp, it prompt me boot camp x 64 is unsupported with this computer model. Then i tried the method by right click the bootcamp x64 and managed to install the drivers. However, i still couldnt manage access the internet and it prompts me no networking hardware detected...Any idea how can i solve it?
    P.S i tried updating my bootcamp version 3.0.4 in mac os with bootcamp x64 version 3.1 exe but it shows me weird wording..
    my bootcamp version in windows 7 is 2.1..

    Uninstall 2.x totally
    Use CCleaner Registry tool
    Do whatever you need to to nuke the existing Apple programs and folders hidden here and there also.
    BC 2.2 was XP and Vista only

  • How to install W.7 on 2011 Macbook pro which doesn't come with bootcamp dvd?

    how to install W.7 on 2011 Macbook pro which doesn't come with bootcamp dvd?

    Use the Boot Camp Assistant in the /Applications/Utilities/ folder to put the Boot Camp drivers onto an optical disk or USB thumbdrive.
    (80603)

  • I have a problem with Mail on my Macbook Pro. It is configurated with a gmail account, and now I can't access the mail. Is it possible to reboot the account or..? Please help:)

    I have a problem with Mail on my Macbook Pro. It is configurated with a gmail account, and now I can't access the mail. Is it possible to reboot the account or..? Please help:)

    The question mark means the computer cannot find a bootable volumes so can;t do anything, That, combined with annoying sounds, strongly suggests a failed hard drive.
    You can ask a "genius" at an Apple Rtail Store to test it but I'm pretty sure the drive is kaput. I'm hoping you had your data backed up.

  • How do I connect my MacBook Pro to an LCD TV (with HDMI and S-Video ports)?

    How do I connect my MacBook Pro to an LCD TV (with HDMI and S-Video ports)?  I assume I would need to use the DVI to Video adapter that came with my computer to connect to my LCD tv.  I'm just not sure which port I should use on the TV.  The HDMI port is being used for digital cable.
    Also, does anyone know if this can be done wirelessly? 

    For a 2010+ MBP you can connect with a Displayport to HDMI, which will include Audio.
    With older MBP you will need a displayport to HDMI, if you want audio to the actually TV, then you will need to get a cable with either digital out from MBP to the HDMI, or USB audio mixed into the HDMI
    eg
    http://eshop.macsales.com/item/NewerTech/CBLMDPHDMID/

  • Last week, I had no problems streaming my MacBook Pro to my sony Bravia with a logix hdmi cable. I came back from holidays and now it doesn't work anymore.  What settings should my computer be on and what settings should my tv be on?

    Last week, I had no problems streaming my MacBook Pro to my sony Bravia with a logix hdmi cable. I came back from holidays and now it doesn't work anymore.  What settings should my computer be on and what settings should my tv be on?

    TarahCurrie Sep 10, 2014 3:48 PM
    Restore From Time Machine Backup
    Reinstall OS X
    Get Help Online
    Disk Utility
    MacBook Pro, Mac OS X (10.5.8)
    You are running 10.5.8
    Did you try booting off your Install disk holding the c key down.  From here you can get to the drop down menu just a few clicks in (you are not going to install) and run  the Disk Utility>Repair Disk.  See if it will let you do this.

  • When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates.

    When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates. Any ideas?

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5/5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5.1 sometimes can not open its own files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has not only managed to confuse all its users, but also itself.
    Note: Apple has removed over 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).

    I need to know which update(s) I can apply to help stabalize the system.

    Typing the body of the thread message in the title, huh? -)
    I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).
    Only Apple could hamstring and tie Mac OS to Windows. There isn't any other than whether you can download the drivers into Windows (you can) but Apple puts a block on the installer setup even if your mac does not support it.
    Windows 7 needs at least Boot Camp 3.1 and 3.3 is what you should already have. And you are not getting security updates if you don't have at least 10.6.8 as was pointed out.  --- you arent using Software Update as you should. And you should backup and clone Mac (and Windows) as well.
    You need Mountain Lion to use Boot Camp 5.x which supports Windows 7 & 8 and 64-bit.
    I would upgrade to Lion if you can realizing that Rosetta and PowerPC are no longer supported though.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    http://www.apple.com/support/bootcamp/
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    Boot Camp 5.0 Drivers
    http://support.apple.com/kb/DL1638
    Frequently asked question
    http://support.apple.com/kb/HT4818
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdfcreate a Windows support software (drivers) CD or USB storage media
    http://support.apple.com/kb/HT4407
    The Boot Camp Assistant can burn Boot Camp software (drivers) to a DVD or copy it to a USB storage device, such as a flash drive or hard drive. These are the only media you can use to install Boot Camp software.
    https://support.apple.com/kb/HT4569
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.8.pdf
    Instructions for all features and settings.
    Boot Camp 4.0 FAQ Get answers to commonly asked Boot Camp questions.
    Windows 7 FAQ Answers to commonly asked Windows 7 questions.
    http://www.apple.com/support/bootcamp/
    Is there a download of the Boot Camp 5 Support Software if I'm not using OS X Mountain Lion v10.8.3?
    Yes, you can download the Boot Camp 5 Support Software here.
    http://support.apple.com/kb/DL1638
    How do I use the Boot Camp 5 Support Software I downloaded from the web page?
    The download file is a .zip file. Double click it to uncompress it.
    Double-click the Boot Camp disk image.
    Copy the Boot Camp and "$WinPEDriver$" folders to the root level of a USB flash drive or hard drive that is formatted with the FAT file system (see question below for steps on how to format).
    Install Windows, leaving the flash or hard drive attached to the USB port of your Mac.
    Installation of the drivers can take a few minutes. Don't interrupt the installation process. A completion dialog box will appear when everything is installed. Click Finish when the dialog appears.
    When your system restarts your Windows 8 installation is done.
    Note: If the flash drive or hard drive was not attached when you installed Windows and was inserted after restarting into Windows 8, double-click the Boot Camp folder, then locate and double click the "setup.exe" file to start the installation of the Boot Camp 5 Support Software.
    How do I format USB media to the FAT file system?
    Use Disk Utility to format a disk to use with a Windows computer. Here's how:
    Important: Formatting a disk erases all the files on it. Copy any files you want to save to another disk before formatting the disk.
    Open Disk Utility.
    Select the disk you want to format for use with Windows computers.
    Click Erase, and choose one of the following from the Format pop-up menu:
    If the size of the disk is 32 GB or less, choose MS-DOS (FAT).
    If the size of the disk is over 32 GB, choose ExFAT.
    Type a name for the disk. The maximum length is 11 characters.
    Click the Erase button and then click Erase again.
    Which versions of Windows are supported with Boot Camp 5?
    64-bit versions of Windows 8 and Windows 7 are supported using the Boot Camp 5 Support Software. If you need to use a 32-bit version, you need to use Boot Camp 4 Support Software, and you must use Windows 7. 32-bit versions of Windows 8 are not supported via Boot Camp. For a complete list of Windows OS support, click here.

  • How do I get more memory for my Macbook Pro Spring 2010 13-inch with 2.66GHz Intel Core 2 Duo?

    How do I get more memory for my Macbook Pro spring 2010 13-inch with 2.66GHz Intel Core 2 Duo. Apple says no memory currently available for that model. I have 4 GB memory and 3.99 used. Help!

    macette1976 wrote:
    Now I'm confused. This is the one Crucial told me to get:
    CT3309356 - 4GB DDR3 PC3-8500 Unbuffered NON-ECC 1.35V 512Meg x 64
    $45.99
    Also what do you mean that actual memory is 16GB but with Apple it's 8?
    When I go to the "About this Mac" it says Memory 4G 1067 MHz DDR3, then when I go to System Report it says
     Memory Slot
    Bank 0/ DIMM0 2G DDR3 1067 MHZ OK
    Bank 1/ DIMM0 2G DDR3 1067 MHZ OK
    Sorry I'm clueless. Just don't want to buy something that messes up my machine more than it already is.
    The Crucial site appears to have recommended the correct spec 4gB RAM stick for your model. Please note that you will need to remove the existing sticks of RAM to install new, so you will need 2x4gB to get to 8gB.
    When your model of computer was designed/built, it was tested with readily available 2x4gB (8gB). After release RAM retailers have tested it with higher amounts, and Apple didn't update their quoted specs.

  • How to migrate from my old MacBook Pro to a new one with less disk space and an external hard drive?

    I have just bought a new MacBook Pro and an external hard drive.
    Yet I have problems migrating data from my old MacBook Pro (more internal disk space with around 500 GB data) to my new one (internal disk space less than 500 GB). 
    I have connected all 3 devices but it seems the Migration Assistant does not have an option for us to select to migrate to an external hard drive.
    Any other way to do it?
    Kindly help me.  Thanks.

    For your situation, Target disk mode may be the most efficient method:
    http://support.apple.com/kb/ht1661
    Ciao.

Maybe you are looking for

  • It won't let me download attachments. An error message comes up.

    I can't download any of the attachments. In the form they are there but when I click to download it gives me an error and I can't download it. This is a serious issue. This is the main reason I liked this software.

  • IWeb announcement email opens in Entourage instead of iMail?

    Hello all, I use the iWeb announcement email to notify my friends of when I've updated my site. The list of subscribers is starting to growing so I'm looking at a mailing list option in Entourage (my main email client). I've got my mailing list set u

  • Asha 201 problem

    I bought my phone by 5/01/13 and its been working perfectly well until after i updated it last month.At first,it was my sim-card menu that stopped working,i reset factory settings and now its working.Now its my mail service that's not working.What do

  • Adobe Forms, XML(PDF format) to PDF binary

    Hi experts! I'm working with Interactive Adobe Forms and the form function return the PDF in a XML format (xstring) through the parameter FPFORMOUTPUT-XML. I need to save the PDF file (binary) without geting it through the "getpdf" parameter FPFORMOU

  • Why doesn't the keyboard display lower case when this is selected?

    Why doesn't the keyboard display lower case characters when these are selected?