Macbook Pro 6,2 EFI Boot rEFind

I have been using Linux for a while, but I am not very familiar with the booting process of Linux.
First, I have managed to get Arch booting using grub2-efi, however I would like to use the Linux Kernel EFISTUB.
I have placed the initramfs-linux.img and vmlinuz-linux.efi in the /EFI/Arch/ (which happens to be mounted on /boot) and a linux.conf in the same place containing
    initrd=\EFI\Arch\initramfs-linux.img root=/dev/sda5 ro quiet
When I try to boot Arch using rEFInd (not rEFInd to Grub2 to Arch) I see that rEFInd attempts to use the settings found in the linux.conf then I get the following:
    [    0.592308] i8042: No controller found
    :: running early hook [udev]
    :: running hook [udev]
    :: Triggering uevents....
    [    0.673673] uhci_hcd 0000:00:1a.0: Found HC with no IRQ. Check PIOS/PCI 0000:00:1a.0 setup!
    [    0.673739] uhci_hcd 0000:00:1a.0: init 0000:00:1a.0 fail, -19
    [    0.673793] uhci_hcd 0000:00:1d.0: Found HC with no IRQ. Check PIOS/PCI 0000:00:1a.0 setup!
    [    0.673849] uhci_hcd 0000:00:1d.0: init 0000:00:1a.0 fail, -19
    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: can't access tty; job control turned off
I am not sure what most of it means, however my research tells me that the uhci_hcd is some device that the kernel cannot use correctly and the two that start with ERROR: are related to the EFI booting. Since I specified the device in the linux.conf should it be looking there and not in ''?
Can someone guide me along the correct path?
Comment reguarding the "uhci_hcd" and "No controller found" messages are welcome as well.
Last edited by raisdead (2012-09-15 19:32:29)

Hello raisdead.
I'm using an iMac (mid 2010, with i3 processor and AMD 4670 graphics).
I also have been trying to get EFISTUB boot to work and I've got it running now. I prefer it to grub.
Your log reports are OK (like mine) until the ERROR comes up.
I think you may not have got the correct UUID for your disk in the refind_linux.conf file.
If you can boot with another linux, maybe a live install disk, and run
sudo blkid /dev/sda7   (or whatever the number is for your arch disk partition)
you will get the UUID to put in your refind_linux.conf file.
In the refind_linux.conf file, the menu line I use to boot with is
"Boot default" "root=UUID=e5ead341-2bea-4933-969c-09ba528e9729 ro nosplash nomodeset init=/bin/systemd"
You might use the same but with your own UUID value, and maybe no init= value, if you are not using systemd yet (despite initial problems I recommend it).
The nomodeset is to avoid a black screen problem with the radeon video module.
My boot files are under EFI/arch353/ on the first partition on my mac. The files there are
refind_linux.conf
vmlinuz-linux
initramfs-linux.img
initramfs-linux-fallback.img
To keep this up to date when the kernel changes I mount the EFI partition (do this before the new kernel is installed, otherwise you might lose the ability to mount)
mount /dev/sda1 /mnt/uefi
make a new folder arch354 (say)
and copy over the new vmlinuz, initramfs files, together with a copy of the original refind_linux.conf
When one version isn't needed just delete its folder.
refind seems to find anything that might be bootable.
Good luck.

Similar Messages

  • When installing Windows 8 from a USB to my MacBook Pro 2011 only EFI Boot option shows, there is no normal Windows Boot option

    Hello. I want to install Windows 8 on my MacBook Pro 2011 form a USB stick. And when I restart, holding Alt. There only option is EFI Boot, which doesn't work. And there is no usual Windows option. I have tried instaling using an external optical drive, but it doesn't work. And I don't have an internal drive because it has been replaced with a HDD. Please help.

    try kunu's solution here and report back
    https://discussions.apple.com/thread/5105056?tstart=0

  • [SOLVED] Two Grub boot menus on Macbook pro 7.1 efi boot

    Hello
    This is my first Arch post and I feel a bit of a fool for making the error I'm going to describe but here we go....
    A couple of weeks ago I installed Arch as dual boot on my Macbook pro 7.1 and I'm generally quite happy with the result.  I boot as EFI using Grub2 having followed instructions to make a standalone boot.efi and boot from the mac's bootloader. The boot.efi file is placed on a small macosx journaled partition that has been made bootable with "bless". I've been able to boot between the two systems using 'alt' at startup or, more generally, just leave the pc to boot into Arch.
    When I generated the boot.cfg file I didn't specify ro or rw but grub added ro. So I've had the "root mounted as ro" warning since upgrading to 3.10.3-1 (I don't subscribe to the testing repository) although it was obviously an issue from the start and I was aware of it. After reading some of the forum posts today I thought I'd have a go at changing the boot parameters at startup and edit the boot menu to include rw. This worked and I didn't get the read only warning. I decided to try to generate a new grub.fcg and specify rw before generating a new boot.efi. On inspecting the new boot.cfg I noticed it had both ro and rw entries. I decided to think about what to do (thinking of removing the ro) before making the standalone file.
    Anyway, I had to boot into osx for something else but when doing so noticed that I now have 3 efi boot options in the mac bootmanager. Two are grub and one boots osx. I've had a look in the forums and on the internet in general but can't find out how to remove the second entry. My guess is I've installed grub on my Arch /boot partition but can't figure out how to remove it.   
    Although I can boot into Arch as normal as the pc defaults to the original grub menu, I'd like to remove the additional entry if possible and would be grateful for any help.
    Dylan
    Last edited by youngdm (2013-08-06 21:00:37)

    These are the instructions I followed
    grub-mkconfig -o boot/grub/grub.cfg grub-mkstandalone -o boot.efi -d usr/lib/grub/x86_64-efi -O x86_64-efi -C xz boot/grub/grub.cfg
    Then in osx:
    sudo bless --device /dev/disk0s4 --setBoot
    I think that on initial installation I ran the command above as one and then last night ran it as two. Like this:
    grub-mkconfig -o boot/grub/grub.cfg
    grub-mkstandalone -o boot.efi -d usr/lib/grub/x86_64-efi -O x86_64-efi -C xz boot/grub/grub.cfg
    The instructions were from:
    http://codylittlewood.com/arch-linux-on … tallation/
    From the apple discussion forums..
    This one is a bit more tricky, surely there is another way but this one is simple and not so risky
    1- burn a GParted Live CD iso
    2- boot on the GParted live CD (press alt on boot and wait for the CD boot option to appear) and choose the first boot entry
    3- during the boot process accept every option with its default value
    4- in GParted select the EFI partition and somewhere in the menus select the "flags" entry and uncheck "boot"
    5- exit GParted Live CD and boot in Mac OS
    6- a new volume has appeared "/volumes/efi"
    in the finder go to "/volumes/efi/EFI" and delete the "ubuntu" folder
    7- repeat steps 2/3 and step 4 but check "boot" instead of unchecking it
    8- exit GParted live CD and reboot
    I have found the instructions above on the apple discussion forums but as noted above I'm a little wary about following them. I guess though that I need to remove the entry in the mac EFI partition which is hidden in osx but shows as sda1 in Arch.
    Do you think I could mount sda1 in Arch and have a look at what's on there? From the instructions above it looks like there should be a directory  for Arch that could be deleted. I presume that Arch is booting from the blessed partition on sda4. Is this correct?
    Last edited by youngdm (2013-08-06 11:46:09)

  • My MacBook Pro is very slow booting up (1 minute plus) since I installed Mavericks. What can I do to speed up?

    My MacBook Pro is very slow booting up (1 minute plus) since I installed Mavericks. What can I do to speed up?

    Hi John,
    I posted the question.  Here is my system log result:
    Mar  3 11:29:52 localhost bootlog[0]: BOOT_TIME 1393864192 0
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.appstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
              Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.authd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.bookstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.eventmonitor" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.install" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.iokit.power" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.mail" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.MessageTracer" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.performance" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.securityd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 --- last message repeated 6 times ---
    Mar  3 11:30:05 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Mar  3 11:30:05 localhost kernel[0]: PMAP: PCID enabled
    Mar  3 11:30:05 localhost kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Mar  3 11:30:05 localhost kernel[0]: vm_page_bootstrap: 1983425 free pages and 97343 wired pages
    Mar  3 11:30:05 localhost kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    Mar  3 11:30:05 localhost kernel[0]: zone leak detection enabled
    Mar  3 11:30:05 localhost kernel[0]: "vm_compressor_mode" is 4
    Mar  3 11:30:05 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar  3 11:30:05 localhost kernel[0]: standard background quantum is 2500 us
    Mar  3 11:30:05 localhost kernel[0]: mig_table_max_displ = 74
    Mar  3 11:30:05 localhost kernel[0]: TSC Deadline Timer supported and enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    Mar  3 11:30:05 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar  3 11:30:05 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar  3 11:30:05 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar  3 11:30:05 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar  3 11:30:05 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar  3 11:30:05 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar  3 11:30:05 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar  3 11:30:05 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar  3 11:30:05 localhost kernel[0]: MAC Framework successfully initialized
    Mar  3 11:30:05 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar  3 11:30:05 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Mar  3 11:30:05 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Mar  3 11:30:05 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Mar  3 11:30:05 localhost kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Mar  3 11:30:05 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 6689
    Mar  3 11:30:05 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    Mar  3 11:29:54 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar  3 11:30:05 localhost kernel[0]: [ PCI configuration begin ]
    Mar  3 11:30:05 localhost kernel[0]: console relocated to 0xf90010000
    Mar  3 11:30:05 localhost kernel[0]: [ PCI configuration end, bridges 12, devices 18 ]
    Mar  3 11:30:05 localhost kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    Mar  3 11:29:54 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Mar  3 11:30:05 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    Mar  3 11:30:05 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar  3 11:30:05 localhost kernel[0]: rooting via boot-uuid from /chosen: 278FA782-15F5-3827-9A81-43DEB73FA45E
    Mar  3 11:30:05 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar  3 11:30:05 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar  3 11:30:05 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Hitachi HTS545050B9A302 Media/IOGUIDPartitionScheme/Customer@2
    Mar  3 11:30:05 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Mar  3 11:30:05 localhost kernel[0]: BTCOEXIST off
    Mar  3 11:30:05 localhost kernel[0]: BRCM tunables:
    Mar  3 11:30:05 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Mar  3 11:30:05 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffed498ea; max speed s800.
    Mar  3 11:30:05 localhost kernel[0]: hfs: mounted Macintosh HD on device root_device
    Mar  3 11:30:05 localhost kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar  3 11:30:05 localhost kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    Mar  3 11:30:13 localhost kernel[0]: VM Swap Subsystem is ON
    Mar  3 11:30:14 localhost hidd[50]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Mar  3 11:30:14 localhost hidd[50]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Mar  3 11:30:14 localhost com.apple.SecurityServer[15]: Session 100000 created
    Mar  3 11:30:14 localhost distnoted[68]: # distnote server daemon  absolute time: 22.597465450   civil time: Mon Mar  3 11:30:14 2014   pid: 68 uid: 0  root: yes
    Mar  3 11:30:14 localhost distnoted[68]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar  3 11:30:15 localhost kdc[48]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    Mar  3 11:30:15 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc[48]): Exited with code: 1
    Mar  3 11:30:15 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc): Throttling respawn: Will start in 6 seconds
    Mar  3 11:30:15 localhost kernel[0]: AGC: 3.4.35, HW version=1.9.23, flags:0, features:20600
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: Previous Shutdown Cause: 5
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Mar  3 11:30:15 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Mar  3 11:30:15 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    Mar  3 11:30:15 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xd000 ****
    Mar  3 11:30:15 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xd000 ****
    Mar  3 11:30:16 localhost com.apple.SecurityServer[15]: Entering service
    Mar  3 11:30:16 localhost aosnotifyd[66]: aosnotifyd has been launched
    Mar  3 11:30:16 localhost aosnotifyd[66]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar  3 11:30:16 localhost awacsd[63]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Mar  3 11:30:16 localhost awacsd[63]: InnerStore CopyAllZones: no info in Dynamic Store
    Mar  3 11:30:16 localhost UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar  3 11:30:16 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar  3 11:30:16 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Mar  3 11:30:16 localhost mDNSResponder[41]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    Mar  3 11:30:16 localhost com.apple.usbmuxd[23]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    Mar  3 11:30:16 localhost systemkeychain[85]: done file: /var/run/systemkeychaincheck.done
    Mar  3 11:30:16 localhost mDNSResponder[41]: D2D_IPC: Loaded
    Mar  3 11:30:16 localhost mDNSResponder[41]: D2DInitialize succeeded
    Mar  3 11:30:16 localhost mDNSResponder[41]:   4: Listening for incoming Unix Domain Socket client requests
    Mar  3 11:30:16 localhost networkd[100]: networkd.100 built Aug 24 2013 22:08:46
    Mar  3 11:30:16 localhost kernel[0]: Waiting for DSMOS...
    Mar  3 11:30:16 localhost UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar  3 11:30:16 localhost digest-service[102]: label: default
    Mar  3 11:30:16 localhost digest-service[102]:           dbname: od:/Local/Default
    Mar  3 11:30:16 localhost digest-service[102]:           mkey_file: /var/db/krb5kdc/m-key
    Mar  3 11:30:16 localhost digest-service[102]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar  3 11:30:17 localhost kernel[0]: createVirtIf(): ifRole = 1
    Mar  3 11:30:17 localhost kernel[0]: in func createVirtualInterface ifRole = 1
    Mar  3 11:30:17 localhost airportd[67]: airportdProcessDLILEvent: en1 attached (down)
    Mar  3 11:30:17 localhost kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Mar  3 11:30:17 localhost kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Mar  3 11:30:17 localhost kernel[0]: Created virtif 0xffffff80194fd800 p2p0
    Mar  3 11:30:17 localhost digest-service[102]: digest-request: uid=0
    Mar  3 11:30:17 localhost mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Mar  3 11:30:18 localhost digest-service[102]: digest-request: netr probe 0
    Mar  3 11:30:18 localhost digest-service[102]: digest-request: init request
    Mar  3 11:30:18 localhost digest-service[102]: digest-request: init return domain: BUILTIN server: LOCALHOST indomain was: <NULL>
    Mar  3 11:30:18 localhost kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar  3 11:30:18 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Mar  3 11:30:18 localhost airportd[67]: _handleLinkEvent: WiFi is not powered. Resetting state variables.
    Mar  3 11:30:18 localhost locationd[46]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar  3 11:30:18 localhost locationd[46]: NBB-Could not get UDID for stable refill timing, falling back on random
    Mar  3 11:30:18 localhost apsd[65]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar  3 11:30:18 localhost locationd[46]: Location icon should now be in state 'Inactive'
    Mar  3 11:30:19 localhost configd[17]: dhcp_arp_router: en1 SSID unavailable
    Mar  3 11:30:19 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc): Throttling respawn: Will start in 2 seconds
    Mar  3 11:30:19 localhost configd[17]: network changed: DNS*
    Mar  3 11:30:19 imac-3.local configd[17]: setting hostname to "walters-imac-3.local"
    Mar  3 11:30:20 imac-3 kernel[0]: en1: 802.11d country code set to 'US'.
    Mar  3 11:30:20 imac-3 kernel[0]: 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Mar  3 11:30:20 imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9624801F60 imac-3.local. (Addr) that's already in the list
    Mar  3 11:30:20-imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F96248023F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Mar  3 11:30:20-imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9625005960-imac-3.local. (AAAA) that's already in the list
    Mar  3 11:30:20-imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9625005DF0 E.0.C.D.9.0.E.F.F.F.7.4.8.F.2.E.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    Mar  3 11:30:20-imac-3 com.apple.launchd[1] (com.apple.Kerberos.kdc): Throttling respawn: Will start in 1 seconds
    Mar  3 11:30:21 --- last message repeated 1 time ---
    Mar  3 11:30:21-imac-3.local kdc[117]: label: default
    Mar  3 11:30:21-imac-3.local kdc[117]:           dbname: od:/Local/Default
    Mar  3 11:30:21-imac-3.local kdc[117]:           mkey_file: /var/db/krb5kdc/m-key
    Mar  3 11:30:21-imac-3.local kdc[117]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar  3 11:30:21-imac-3.local kdc[117]: KDC started
    Mar  3 11:30:21-imac-3 kernel[0]: init
    Mar  3 11:30:21-imac-3 kernel[0]: probe
    Mar  3 11:30:21-imac-3 kernel[0]: start
    Mar  3 11:30:21-imac-3 kernel[0]: DSMOS has arrived
    Mar  3 11:30:21-imac-3 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xd000
    Mar  3 11:30:21-imac-3 kernel[0]: [IOBluetoothHCIController][start] -- completed
    Mar  3 11:30:21-imac-3.local loginwindow[44]: Login Window Application Started
    Mar  3 11:30:21-imac-3 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar  3 11:30:21-imac-3 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x2740 -- 0x7800 -- 0xd000 ****
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Server is starting up
    Mar  3 11:30:21-imac-3.local blued[61]: hostControllerOnline - Number of Paired devices = 0, List of Paired devices = (null)
    Mar  3 11:30:21-imac-3.local mds[40]: (Normal) FMW: FMW 0 0
    Mar  3 11:30:21-imac-3.local mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar  3 11:30:21 --- last message repeated 2 times ---
    Mar  3 11:30:21-imac-3 kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6760
    Mar  3 11:30:21-imac-3 kernel[0]: en3: promiscuous mode enable succeeded
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Session 256 retained (2 references)
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Session 256 released (1 references)
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Session 256 retained (2 references)
    Mar  3 11:30:22-imac-3.local WindowServer[119]: init_page_flip: page flip mode is on
    Mar  3 11:30:22-imac-3 kernel[0]: MacAuthEvent en1   Auth result for: 68:7f:74:95:b3:73  MAC AUTH succeeded
    Mar  3 11:30:22-imac-3 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Mar  3 11:30:22-imac-3 kernel[0]: AirPort: Link Up on en1
    Mar  3 11:30:22-imac-3 kernel[0]: en1: BSSID changed to 68:7f:74:95:b3:73
    Mar  3 11:30:22-imac-3 kernel[0]: AirPort: RSN handshake complete on en1
    Mar  3 11:30:22 -imac-3 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 39 modes for display 0x00000000 [30, 9]
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    Mar  3 11:30:24 --- last message repeated 2 times ---
    Mar  3 11:30:24-imac-3.local WindowServer[119]: mux_initialize: Mode is dynamic
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 39 modes for display 0x00000000 [30, 9]
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    Mar  3 11:30:24 --- last message repeated 1 time ---
    Mar  3 11:30:24-imac-3.local WindowServer[119]: WSMachineUsesNewStyleMirroring: false
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x042728c2: GL mask 0x5; bounds (0, 0)[1440 x 900], 39 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 2, Rotation 0
              UUID 0xe2d0b55c862d4b0eba07e1bd2579493f
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[3840 x 2160], 2 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: WSSetWindowTransform: Singular matrix
    Mar  3 11:30:24 --- last message repeated 1 time ---
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x042728c2: GL mask 0x5; bounds (0, 0)[1440 x 900], 39 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 2, Rotation 0
              UUID 0xe2d0b55c862d4b0eba07e1bd2579493f
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f003d: GL mask 0x2; bounds (2464, 0)[1 x 1], 2 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f0040: GL mask 0x10; bounds (2465, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24 walters-imac-3.local WindowServer[119]: Display 0x003f003f: GL mask 0x8; bounds (2466, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: CGXPerformInitialDisplayConfiguration
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x042728c2: Unit 2; Alias(2, 0x5); Vendor 0x610 Model 0x9ca3 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]: CGXMuxBoot: Boot normal
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, accelerator 0x00004d2b, unit 0, caps QEX|MIPMAP, vram 451 MB
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x0000001c, accelerator 0x000048c3, unit 2, caps QEX|MIPMAP, vram 256 MB
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x0000001c, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor enabled for tile size [256 x 256]
    Mar  3 11:30:24-imac-3.local WindowServer[119]: CGXGLInitMipMap: mip map mode is on
    Mar  3 11:30:25-imac-3.local loginwindow[44]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Mar  3 11:30:25-imac-3 kernel[0]: nspace-handler-set-snapshot-time: 1393864227
    Mar  3 11:30:25-imac-3.local com.apple.mtmd[39]: Set snapshot time: 2014-03-03 11:30:27 -0500 (current time: 2014-03-03 11:30:25 -0500)
    Mar  3 11:30:25-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:30:25-imac-3.local launchctl[138]: com.apple.findmymacmessenger: Already loaded
    Mar  3 11:30:25-imac-3.local com.apple.SecurityServer[15]: Session 100005 created
    Mar  3 11:30:25-imac-3.local UserEventAgent[140]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar  3 11:30:25-imac-3.local loginwindow[44]: Setting the initial value of the magsave brightness level 1
    Mar  3 11:30:25-imac-3.local loginwindow[44]: Login Window Started Security Agent
    Mar  3 11:30:26-imac-3.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'MyWireless' making interface primary (protected network)
    Mar  3 11:30:26-imac-3.local configd[17]: network changed: DNS* Proxy
    Mar  3 11:30:26-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Mar  3 11:30:26-imac-3.local UserEventAgent[11]: Captive: en1: Probing 'MyWireless'
    Mar  3 11:30:26-imac-3.local WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x42728c2
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 15 modes for display 0x042728c2 [10, 5]
    Mar  3 11:30:26-imac-3.local WindowServer[119]: CGXMuxAcknowledge: Posting glitchless acknowledge
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x42728c2
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 1 modes for display 0x042728c2 [1, 0]
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x3f003f
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 1 modes for display 0x003f003f [1, 0]
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x3f0040
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 1 modes for display 0x003f0040 [1, 0]
    Mar  3 11:30:27-imac-3.local configd[17]: network changed: v4(en1!:192.168.1.100) DNS+ Proxy+ SMB
    Mar  3 11:30:27-imac-3.local WindowServer[119]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fd409d063f0) - enabling OpenGL
    Mar  3 11:30:28-imac-3.local mtmfs[38]: mount succeeded for /Volumes/MobileBackups
    Mar  3 11:30:28-imac-3.local mds[40]: (Normal) Volume: volume:0x7fae1a823000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Mar  3 11:30:28-imac-3.local mds[40]: (Normal) Volume: volume:0x7fae1a823000 ********** Created snapshot backup index
    Mar  3 11:30:28-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:30:28-imac-3.local airportd[67]: _doAutoJoin: Already associated to “MyWireless”. Bailing on auto-join.
    Mar  3 11:30:28-imac-3.local SecurityAgent[146]: This is the first run
    Mar  3 11:30:28-imac-3.local SecurityAgent[146]: MacBuddy was run = 0
    Mar  3 11:30:29-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:30:29-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Mar  3 11:30:32-imac-3.local ntpd[110]: proto: precision = 1.000 usec
    Mar  3 11:30:34-imac-3.local awacsd[63]: Exiting
    Mar  3 11:30:55-imac-3 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0PS (kSMCKeyNotFound)
    Mar  3 11:30:55-imac-3 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Mar  3 11:31:11-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:31:57-imac-3.local distnoted[170]: # distnote server agent  absolute time: 122.781746823   civil time: Mon Mar  3 11:31:57 2014   pid: 170 uid: 89  root: no
    Mar  3 11:34:19-imac-3.local mds[40]: (Normal) Volume: volume:0x7fae20860000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.Or8ufk
    Mar  3 11:40:25-imac-3.local WindowServer[119]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    Mar  3 11:40:25-imac-3.local WindowServer[119]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    Mar  3 11:41:39-imac-3 kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    Mar  3 11:41:40-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:41:40-imac-3.local ntpd[110]: ntpd: wake time set -0.413667 s
    Mar  3 11:41:41-imac-3 kernel[0]: hibernate image path: /var/vm/sleepimage
    Mar  3 11:41:41-imac-3 kernel[0]: efi pagecount 43
    Mar  3 11:41:41-imac-3 kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff80d811f000, 0xffffff80d815f000
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_page_list_setall time: 187 ms
    Mar  3 11:41:42-imac-3 kernel[0]: pages 541993, wire 209488, act 62351, inact 295, cleaned 0 spec 19, zf 1951, throt 0, compr 0, xpmapped 0
    Mar  3 11:41:42-imac-3 kernel[0]: could discard act 7524 inact 6013 purgeable 14318 spec 240034 cleaned 0
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_page_list_setall preflight pageCount 274104 est comp 50 setfile 594876320 min 4294967296
    Mar  3 11:41:42-imac-3 kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2acc82c000, 0x32000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2b6490e000, 0x19000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2bc48e8000, 0x32000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2c6481f000, 0x40000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2ca481f000, 0xb000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2d3481d000, 0x19000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2d84934000, 0x1f000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x0, 0x0]
    Mar  3 11:41:42-imac-3 kernel[0]: kern_open_file_for_direct_io(0) took 21 ms
    Mar  3 11:41:42-imac-3 kernel[0]: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 2000000 ssd 0
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_alloc_pages act 84193, inact 8261, anon 2381, throt 0, spec 240053, wire 229621, wireinit 97343
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_setup(0) took 13 ms
    Mar  3 11:41:42-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:41:42-imac-3 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff80d811f000, 0xffffff80d815f000
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_page_list_setall time: 379 ms
    Mar  3 11:41:47-imac-3 kernel[0]: pages 540297, wire 207784, act 62356, inact 297, cleaned 0 spec 19, zf 1951, throt 0, compr 0, xpmapped 14199
    Mar  3 11:41:47-imac-3 kernel[0]: could discard act 7524 inact 6013 purgeable 14318 spec 240035 cleaned 0
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_page_list_setall found pageCount 272407
    Mar  3 11:41:47-imac-3 kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Mar  3 11:41:47-imac-3 kernel[0]: IOHibernatePollerOpen(0)
    Mar  3 11:41:47-imac-3 kernel[0]: encryptStart 14060
    Mar  3 11:41:47-imac-3 kernel[0]: bitmap_size 0x3f5a0, previewSize 0x4f6798, writing 270854 pages @ 0x549d98
    Mar  3 11:41:47-imac-3 kernel[0]: encryptEnd 538ae00
    Mar  3 11:41:47-imac-3 kernel[0]: image1Size 0x9264000, encryptStart1 0x14060, End1 0x538ae00
    Mar  3 11:41:47-imac-3 kernel[0]: encryptStart 9264000
    Mar  3 11:41:47-imac-3 kernel[0]: encryptEnd 10cc8600
    Mar  3 11:41:47-imac-3 kernel[0]: PMStats: Hibernate write took 3848 ms
    Mar  3 11:41:47-imac-3 kernel[0]: all time: 3848 ms, comp bytes: 1109782528 time: 693 ms 1525 Mb/s, crypt bytes: 215856032 time: 425 ms 483 Mb/s,
    Mar  3 11:41:47-imac-3 kernel[0]: image 281841664 (6%), uncompressed 1109782528 (270943), compressed 274692368 (24%), sum1 1a7db691, sum2 5851d8ce
    Mar  3 11:41:47-imac-3 kernel[0]: zeroPageCount 119992, wiredPagesEncrypted 142036, wiredPagesClear 64284, dirtyPagesEncrypted 64623
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_write_image done(0)
    Mar  3 11:41:47-imac-3 kernel[0]: sleep
    Mar  3 11:41:47-imac-3 kernel[0]: Wake reason: EC.PowerButton PWRB (User)
    Mar  3 11:45:01-imac-3 kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Mar  3 11:45:01-imac-3 kernel[0]: Previous Sleep Cause: 5
    Mar  3 11:45:01-imac-3 kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    Mar  3 11:45:01-imac-3 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar  3 11:45:01-imac-3 kernel[0]: TBT W (1): 0 [x]
    Mar  3 11:45:01-imac-3 kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    Mar  3 11:45:01-imac-3 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Mar  3 11:45:01-imac-3 kernel[0]: en1: 802.11d country code set to 'X0'.
    Mar  3 11:45:01-imac-3 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Mar  3 11:45:01-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar  3 11:45:01-imac-3.local configd[17]: network changed: v4(en1-:192.168.1.100) DNS- Proxy-
    Mar  3 11:45:01-imac-3.local netbiosd[153]: network_reachability_changed : network is not reachable, netbiosd is shutting down
    Mar  3 11:45:01-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:45:01-imac-3.local WindowServer[119]: CGXDisplayDidWakeNotification [713009376958]: posting kCGSDisplayDidWake
    Mar  3 11:45:01-imac-3.local WindowServer[119]: handle_will_sleep_auth_and_shield_windows: NULL shield_window (lock state: 3)
    Mar  3 11:45:09-imac-3 kernel[0]: en1: 802.11d country code set to 'SG'.
    Mar  3 11:45:09-imac-3 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 149 153 157 161 165
    Mar  3 11:45:10-imac-3 kernel[0]: MacAuthEvent en1   Auth result for: 68:7f:74:95:b3:73  MAC AUTH succeeded
    Mar  3 11:45:10-imac-3 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Mar  3 11:45:10-imac-3 kernel[0]: AirPort: Link Up on en1
    Mar  3 11:45:10-imac-3 kernel[0]: en1: BSSID changed to 68:7f:74:95:b3:73
    Mar  3 11:45:10-imac-3 kernel[0]: AirPort: RSN handshake complete on en1
    Mar  3 11:45:10-imac-3 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'MyWireless' making interface primary (cache indicates network not captive)
    Mar  3 11:45:11-imac-3.local configd[17]: network changed: DNS* Proxy
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: en1: Not probing 'MyWireless' (cache indicates not captive)
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Mar  3 11:45:11-imac-3.local configd[17]: network changed: v4(en1!:192.168.1.100) DNS+ Proxy+ SMB
    Mar  3 11:45:17-imac-3.local SecurityAgent[146]: User info context values set for kathleen1
    Mar  3 11:45:18-imac-3.local loginwindow[44]: Login Window - Returned from Security Agent
    Mar  3 11:45:18-imac-3.local loginwindow[44]: USER_PROCESS: 44 console
    Mar  3 11:45:18-imac-3.local airportd[67]: _doAutoJoin: Already associated to “MyWireless”. Bailing on auto-join.
    Mar  3 11:45:18-imac-3 kernel[0]: AppleKeyStore:Sending lock change 0
    Mar  3 11:45:18 --- last message repeated 1 time ---
    Mar  3 11:45:18-imac-3 com.apple.launchd.peruser.503[185]: Background: Aqua: Registering new GUI session.
    Mar  3 11:45:18-imac-3 com.apple.launchd.peruser.503[185] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Mar  3 11:45:18-imac-3 com.apple.launchd.peruser.503[185] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Mar  3 11:45:18-imac-3.local launchctl[187]: com.apple.pluginkit.pkd: Already loaded
    Mar  3 11:45:18-imac-3.local launchctl[187]: com.apple.sbd: Already loaded
    Mar  3 11:45:18-imac-3.local distnoted[189]: # distnote server agent  absolute time: 730.554072877   civil time: Mon Mar  3 11:45:18 2014   pid: 189 uid: 503  root: no
    Mar  3 11:45:21-imac-3.local sharingd[209]: Starting Up...
    Mar  3 11:45:21-imac-3.local WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar  3 11:45:21-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:45:21-imac-3.local UserEventAgent[188]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Mar  3 11:45:22-imac-3.local SystemUIServer[196]: Cannot find executable for CFBundle 0x7fb8e3a30740 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Mar  3 11:45:22-imac-3.local SystemUIServer[196]: Cannot find executable for CFBundle 0x7fb8e3a31e40 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Mar  3 11:45:22-imac-3.local SystemUIServer[196]: Cannot find executable for CFBundle 0x7fb8e3a32510 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Mar  3 11:45:22-imac-3.local KiesAgent[240]: KiesAgent started, 7
    Mar  3 11:45:22-imac-3.local WiFiKeychainProxy[220]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Mar  3 11:45:22-imac-3.local WiFiKeychainProxy[220]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Mar  3 11:45:23-imac-3.local com.apple.IconServicesAgent[243]: IconServicesAgent launched.
    Mar  3 11:45:23-imac-3.local WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar  3 11:45:23-imac-3.local WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.06 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar  3 11:45:23-imac-3.local com.apple.SecurityServer[15]: Session 100008 created
    Mar  3 11:45:23-imac-3 accountsd[246]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar  3 11:45:23-imac-3.local SystemUIServer[196]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar  3 11:45:23-imac-3.local SystemUIServer[196]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar  3 11:45:23-imac-3.local KiesAgent[240]: checkAutoStart (null)
    Mar  3 11:45:24-imac-3.local com.apple.SecurityServer[15]: Session 100011 created
    Mar  3 11:45:25-imac-3.local apsd[219]: Unrecognized leaf certificate
    Mar  3 11:45:26-imac-3.local com.apple.time[188]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar  3 11:45:28 --- last message repeated 1 time ---
    Mar  3 11:45:28-imac-3.local secd[242]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    Mar  3 11:45:28-imac-3.local secd[242]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    Mar  3 11:45:30-imac-3.local secd[242]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar  3 11:45:30-imac-3.local secd[242]:  securityd_xpc_dictionary_handler WiFiKeychainProx[220] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar  3 11:45:38-imac-3.local imagent[228]: [Warning] Services all disappeared, removing all dependent devices
    Mar  3 11:45:39 walters-imac-3.local parentalcontrolsd[266]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar  3 11:45:41-imac-3.local imagent[228]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    Mar  3 11:45:42 --- last message repeated 1 time ---
    Mar  3 11:45:42-imac-3.local soagent[222]: [Warning] Services all disappeared, removing all dependent devices
    Mar  3 11:45:42-imac-3.local soagent[222]: No active accounts, killing soagent in 10 seconds
    Mar  3 11:45:44 --- last message repeated 1 time ---
    Mar  3 11:45:44-imac-3.local Microsoft Entourage[268]: OTAtomicAdd32 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:45:48-imac-3.local sandboxd[264] ([263]): storeagent(263) deny file-read-data /Users/1/Library/Preferences/com.apple.WebFoundation.plist
    Mar  3 11:45:48 walters-imac-3.local usernoted[217]: Connection does not have the proper entitlement (com.apple.private.notificationcenter-system) to connect to the system notification center. All communication will be denied. center com.apple.storeagent
    Mar  3 11:45:48-imac-3.local usernoted[217]: Connection does not have the proper entitlement (com.apple.developer.notificationcenter-identifiers) to connect on behalf of com.apple.appstore. All communication will be denied.
    Mar  3 11:45:49-imac-3.local bookstoreagent[275]: DownloadManifest: Error moving legacy manifest - Error Domain=NSCocoaErrorDomain Code=513 "“manifest.plist” couldn’t be moved because you don’t have permission to access “com.apple.iBooksX”." UserInfo=0x7faa48d13f40 {NSSourceFilePathErrorKey=/Users/1/Library/Application Support/AppStore/manifest.plist, NSUserStringVariant=(
                  Move
              ), NSDestinationFilePath=/var/folders/st/k9plffx91lzbwlv6f3db2n2m0000gq/C/com.appl e.iBooksX/manifest.plist, NSFilePath=/Users/1/Library/Application Support/AppStore/manifest.plist, NSUnderlyingError=0x7faa48d13240 "The operation couldn’t be completed. Operation not permitted"}
    Mar  3 11:45:49-imac-3.local bookstoreagent[275]: DownloadManifest: Error removing legacy download location - Error Domain=NSCocoaErrorDomain Code=513 "“AppStore” couldn’t be removed because you don’t have permission to access it." UserInfo=0x7faa4a9041c0 {NSFilePath=/Users/kathleen1/Library/Application Support/AppStore, NSUserStringVariant=(
                  Remove
              ), NSUnderlyingError=0x7faa4a904050 "The operation couldn’t be completed. Operation not permitted"}
    Mar  3 11:45:49-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-write-unlink /Users/kathleen1/Library/Application Support/AppStore/manifest.plist
    Mar  3 11:45:49 --- last message repeated 1 time ---
    Mar  3 11:45:49-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-write-unlink /Users/kathleen1/Library/Application Support/AppStore
    Mar  3 11:45:50-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-read-data /Users/1/Library/Application Support/AppStore
    Mar  3 11:45:50-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-read-data /Users/kathleen1/Library/Preferences/com.apple.WebFoundation.plist
    Mar  3 11:45:51-imac-3.local Microsoft Database Daemon[277]: OTAtomicAdd32 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:45:52-imac-3.local Microsoft Entourage[268]: OTInetGetInterfaceInfo is unimplemented and will be removed soon.  Please stop using it.
    Mar  3 11:45:52-imac-3.local soagent[222]: Killing soagent.
    Mar  3 11:45:52-imac-3.local NotificationCenter[225]: SOHelperCenter main connection interrupted
    Mar  3 11:45:52-imac-3.local com.apple.dock.extra[252]: SOHelperCenter main connection interrupted
    Mar  3 11:45:52-imac-3.local imagent[228]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:222)
    Mar  3 11:45:56 --- last message repeated 1 time ---
    Mar  3 11:45:56-imac-3.local iTunes[271]: ApplePushService: APSConnection being used without a delegate queue
    Mar  3 11:46:00-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:46:00-imac-3.local Microsoft Entourage[268]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:00-imac-3.local Microsoft Entourage[268]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:00-imac-3.local Microsoft Database Daemon[277]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:00-imac-3.local Microsoft Database Daemon[277]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:01-imac-3.local Microsoft Entourage[268]: The function `CGSFlushWindow' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGSFlushWindowContentRegion' instead.
    Mar  3 11:46:04-imac-3.local Microsoft Entourage[268]: OTCompareAndSwap32 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:12-imac-3.local Microsoft Sync Services[283]: [0x17142e0] |ISyncManager|Warning| Sync Server is disabled.
    Mar  3 11:49:58-imac-3.local Console[301]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.

  • Windows 7 professional 64 Bit on MacBook Pro Retina 15 with Boot Camp ?

    Hallo guys, i have a big problem with installing Windows 7 professional 64 Bit on my MacBook Pro Retina 15 with Boot Camp. No matter what i try i get a black screen after partitioning or get a message like " No bootable disk" or  " No System Disk availabe".
    My Mac has : OS X version 10.8.2, 16 GB RAM, 512 GB memory, 2.6 GHz Intel i7 and is only a week old
    My Boot Camp is version 5.0.1
    My Windows InstallingDVD is one year old now, i needed it to build a PC last year, hope that doesnt make a difference, its a full version, so not just for upgrading.
    From what i saw in the apple support it should work on my macbook. I hope someone can help me.
    Thanks in advance.

    Ok, problem solved. I looked a bit more here in the questions and there was the answer and its quite simple.
    Somehow an USB-stick makes problems while Windows wants to install, i dont know why. So i just made everything over DVDs and now everything works fine.

  • HT3964 I have a MacBook Pro that will not boot up. The apple symbol   Read more: I have a MacBook Pro that will not boot up. The apple symbol is there and a spinning wheel continues to spin. Any options??

    I have a MacBook Pro that will not boot up. The apple symbol is there and the spinning wheel keeps spinning. Any idea how I can fix this?

    Reinstall OS X.
    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    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.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main 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.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion 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.
    OR
    Reinstall Snow Leopard without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. 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 installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install the Combo Updater for the version you prefer from support.apple.com/downloads/.

  • MacBook Pro 2011 won't boot

    My early 2011 MacBook Pro 15" won't boot. Second time dealing with this this year. Apple Store charged me $300+ to fix it the first time. It worked for a few months, but stopped working again. Took it to the shop again and asked them to fix it for good this time. They wanted to charge me $310. I said NO. why would they charge me twice for a repair I asked them to do before? How widespread is this problem? I know for a fact I'm not the only one dealing with this problem.

    What have you done to define your problem?  Look at this comprehensive troubleshooting article and perhaps you can find a solution:
    https://discussions.apple.com/docs/DOC-3353
    Note that Apple repairs are guaranteed for 90 days.
    Ciao.

  • My macbook pro retina 15'' cant boot after smc reset .

    My macbook pro retina 15" cant boot after smc reset. Can someone find me a solution which does not require opening my laptop ? Thnx in advance .

    Try Resetting the PRAM

  • My Internal HD became corrupt and it would not boot up so I installed My osx onto a new HD via usb and then inserted into my macbook pro but it wont boot up. It will only boot up if i connect via usb how can i boot it as an internal HD?

    My Internal HD became corrupt and it would not boot up so I installed My osx onto a new HD via usb and then inserted into my macbook pro but it wont boot up. It will only boot up if i connect via usb how can i boot it as an internal HD?

    Shootist007 wrote:
    If the system won't boot from the new drive the OP bought and install OS X on it it certainly won't boot from the original drives Recovery HD partition.
    Sorry genius.....but if the Recovery disk shows up that means the disk cable isn't bad.  Could be he did have a screwed up HDD and when he put the NEW HDD in (after putting the OS on it via USB) the computer didn't reconize it and therefore didn't boot the OS.  Just maybe right genius?  Don't rush to criticize someone's recommendations until you realize other possibilities.  (I did say "if it does")
    Thank you

  • I have a Macbook PRO and it stopped booting up. When I turn power on it just stays in white screen.

    I have a Macbook PRO and it stopped booting up. When I turn power on it just stays in white screen. I have not dropped it anything. Please help.

    Try holding alt when booting to select your hard drive to boot into, if that fails, do it again but select the "recovery" partition (If you have Lion or Mountain Lion)

  • How to triple boot (MacOSX / Win7 / Linux) a MacBook Pro (Retina, late 2013) with Refind

    ok it's not a question, it's an howto.
    You do it at your own risk. No failure reported so far, but I'm not responsible for anything.
    If you try to multiboot your MacBook Pro (MBP hereafter) you may face a new complexity. With on partition, Bootcamp does a pretty amazing job installing windows. But when you want to partition your disk in your own way, Bootcamp may fail to install windows and another third OS. You may also want to have a share partition between your OSes, hence have multiple partitions. Most of this tuto should also work for Windows 8 and for other Macbooks.
    Problem 1 : Bootcamp does it with one partition that it divides in two and allow to setup Win7. Not all time though since some user reportidely have problems to get USB 3 support and the keyboard and mouse are non working during the install / setup phase.
    Problem 2 : Windows 7 is not able to install itself to a GPT partition and needs an Hybrid MBR. Bootcamp does this, but just for a Dual OS setup. So to make the magic happen in a multi OS environment, you'll have to do want bootcamp does, manually.
    Step 1 : Download the OS X Recovery Disk Assistant from Apple and flash it to a USB stick. (http://support.apple.com/kb/DL1433)
    Step 2 : Reboot, holding the option key (aka CMD, left of spacebar) down, to trigger the boot menu options. Start the usb drive with OS X recovery and enter the partition tool. Create 3 to 4 partitions, suiting your tastes. Just put windows partition first and I recommend to put the partition sharing data across OSes second, MacOS 3rd and Linux Last for example. MacOS and Linux are fine with pretty much every setup, Windows need the 1° usable partition.
    Step 3 : Migrate your Macos using the same tool (google it for details) or Reinstall MacOS from the recovery partition. (more about migration here, but there are better tuto on this)
    Step 4 : Start your MacOS and create a bootcamp USB stick with the bootcamp tool. You need an ISO from Win7 (or Win 8) and a drive of at least 4 GB. Bootcamp will most likely complain about the fact that it will not be able to install 7 due to the fact that you don't have only one partition, ignore and proceed to the Bootcamp USB stick setup.
    Step 5 : Adding the USB3 support to your Win7 installation. Plug your newly created Win7 USB stick to a computer running Windows. In the sources directory, copy the boot.vim on your disk drive and add the drivers that Bootcamp added to your USB stick, in the $WinPEDriver$ directory and follow these instructions to add them to your boot.vim image. Follow carefully every step, it does works. Add the drivers you feel like, commit and copy back your boot.vim image, patched, to your USB stick, in the sources directory.
    Step 6 : In your MacOSX, install the GPT fdisk partition tool. You just have to unzip the archive. Win7 is unable to install to a GPT disk, so you will have to create a (dirty) Hybrid MBR. From a terminal, launch GPT fdisk. Carefull here, the Win7 is most likely not the 1st but the 2nd or 3rd because there is an UEFI partition before. Just check before adding them if in doubt, by striking p. Then key in r then h then the number of the partitions you want to add to this hybrid MBR (the Win7 & the Shared one). Accept the type 07 for this partition and type y, n & finally w. (more details here for the fans)
    Step 7 : Reboot, keep the CMD key down to trigger the boot option menu. Reboot on the USB stick, install Win7. If it doesn't understand the partition made for it, format it, if needed, from the 7 installer, delete and recreate it.
    Step 8 : Install your favorite Linux distro with a USB stick generator. (see here & here). No complex part, except that Grub will most likely scratch your nice Hybrid MBR, rendering Win7 inaccessible. No problem, reboot in MacOS and redo step 6, this will revive your win7.
    Step 9 : It's cosmetic but keeping CMD key down to boot is not so practical. ReFind does it just great. Setup is super easy, just kick install.sh from a shell in MacOS. Fine tune decoration and some stuffs later on from the config file.
    Step 10 (optionnal) : You want it all, without switching between OSes? Having Windows app running within MacOS is easy, with most native hardware acceleration preserved, using Parallels desktop. It also works with a "simple" Bootcamp Windows setup.
    Enjoy your mighty triple boot MBP.

    Just ordered a Retina MacBook Pro11,2 (mid-2014 15", 2.2GHz Intel Core i7, 16GB RAM, 512GB SSD, OSX 10.9.4 Pre-installed - Build 13E28)  and have the exact same issue.  The first thing I did when i booted it for the first time was enable FileValut2 and encrypt the disk.  Though I failed to notice this behavior prior to encrypting the disk, the stuttering/lag happens without fail every time I have logged in from a cold boot, locked screen or sleep. Additionally I have noticed the same stuttering behavior when switching tabs on various built-in OSX applications such as the tabs on the About This Mac > More Info.... (System Information) dialog for example, and similarly other dialogs that experience this behavior of resizing when switching tabs. I was running no other software than About This Mac > More Info ... (System Information) and OSX 10.9.4 itself.  The issue happens without fail with and without a USB mouse plugged in.
    I am really glad to have found this thread and with such recent posts.  I'd love to find out that this is just a software bug that will be fixed when OSX 10.10 "Yosemite" is released.  If not, I hope the cause of this bug is determined soon so I can still exchange or have it repaired.
    Migflono and Matthew, would you be able to post your hardware specs for comparison? 

  • MacBook Pro (Retina, Mid 2012) - Boot Camp/Win 7 - Num Lock Problem

    Hey,
    I have a client who has a MacBook Pro (Retina, Mid 2012) who is experiencing a problem when booted into Windows 7 via Boot Camp in that he cannot type certain character like # (hash character by keystroke alt + 3) without Windows 7 error bleeping at him. He needs the # character as part of his password for logging into webmail.
    The Boot Camp setup has the latest Boot Camp drivers installed (this was a fresh Boot Camp setup/install today) and every other part of the hardware works I suspect that this problem is not a key mapping problem but more something to do with Windows registering Num Lock as being active.
    If the problem is that Num Lock is enabled then what is the keystroke to disable Num Lock? I thought it was fn + 6 but did this change since the Unibody MacBooks?
    I understand that there are ways of resurrecting number pad fuctionality as decribed in the MacWorld article (see link below) but this is a Mac OS X System Preference and as such would not operate when booted into Windows via Boot Camp.
    http://www.macworld.com/article/1142609/ressurect_numberpad.html
    Any advice will be greatly appreciated.

    You have Graphics card problem.
    Take it in Hardware problem:
    Genius reservation http://www.apple.com/retail/geniusbar/
    on-line https://getsupport.apple.com/GetproductgroupList.action
    check warranty https://selfsolve.apple.com/agreementWarrantyDynamic.do
    see if this applies http://appleinsider.com/articles/12/11/13/some-15-retina-macbook-pro-users-compl ain-of-graphics-issues-after-efi-update

  • Boot Camp: Macbook Pro 8,2 wont boot from USB or External CD Drive

    Im pretty far into this process, and I have already jumped through a few hoops.  I have replaced my Superdrive with a HD and am trying to install Boot Camp on a late 2011 Macbook Pro 8,2.  I have gone in and edited the info.plist by taking out PRE which allowed me to make a USB Bootable drive with Windows 7 Ultimate on it.  I also have the install DVD with a an activation key for that.  I have partitioned my HD with 50 GB of space for Boot Camp and Windows and then it prompts me to restart.  At this point the computer tries to boot into Windows installer but instead gives me " No Bootable Device - insert bootable CD and press any key..."  I have tried restarting holding option with the external CD drive and USB drive plugged in, with just the USB drive plugged in, and with just the external CD drive plugged in.  With the CD drive plugged in and by holding option I do get the option to boot from OSX, Recovery, Windows, and EFI boot (the last two have the icon of a disk.)  When I click on windows it goes to the black screen with No Bootable Device.... and when I tried EFI boot it just sits there for a really long time and does nothing.  Any help?
    I have already had people tell me to re-install my superdrive and try but that was a tedious process and I'd rather not do that.  Thanks in advance,

    Meh, with the price they take for a drive in Denmark, I don't think it's worth it... They take around 160 $ for the drive (that's the cheapest MacBook drive I could find), and I am not even sure that's the one I need.

  • MacBook Pro 4,1 efi install every bootup

    Hi guys, I have a Macbook pro 4,1 (Early 2008 15inch)
    I am running OS X lion. All updates up to date.
    1 Mac partition, 1 Bootcamp Win7 partition.
    Now, what is happening is that few days ago, (i think, but am not sure - after a bootcamp update) my mb started updating EFI on each bootup. (apple logo and loading bar for about 5mins).
    Also, when i hold alt in order to choose system, my Mac partition is now renamed EFI Disk.
    From my understanding, a simple system reinstall, od removal of bootcamp partition won't help since it's EFI?
    Does anyone please have any words of advice?
    Do not be afraid to overcrumb me with terminal stuff, i am pretty knowledgeable myself.
    Thank you in advance.
    Model Name:          MacBook Pro
      Model Identifier:          MacBookPro4,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.5 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache:          6 MB
      Memory:          4 GB
      Bus Speed:          800 MHz
      Boot ROM Version:          MBP41.00C1.B03
      SMC Version (system):          1.27f3

    It is not re-loading the Firmware. You have disk Directory damage:
    Mac OS X v10.6: Gray progress bar appears under Apple logo during startup

  • Macbook freezes when choosing efi boot in Mavericks?

    Hi. I'm not sure how many have already upgraded to Mavericks, but I'm experiencing the following:
    I was trying to install Windows 7 with BootCamp but got errors about "not being able to boot from this disk" even though I did everything the way I should.
    I started looking around and found a huge community that was trying to get Windows 7 installed in EFI mode (without bootcamp bios emulation) on older macs (and more succesfully on newer macs).
    Now the thing is that all these people say that they can boot fine from normal "windows" installation and boot just fine from "efi boot" installation, but that they got errors during install.
    My problem: Is that as soon as I choose EFI boot on my windows 7 DVD or windows 7 USB installer, my macbookpro9,2 will freeze. First the screen will hang a short while (the press-alt-during-boot-screen) then this screen will get grainy, and then the top few centimeters will go black with colored bars in them.
    After this happens I can do nothing else than force the macbook to power down.
    The windows installer boots fine from the normal "windows" boot mode but then I get these "windows may not be able to boot from this disk" errors.
    So I have two questions:
    1. Does anyone have experience with the "Windows can't be installed on this disk, Windows may not be able to boot properly from it" errors?
    2. Does anyone have experience with installing Windows 7 when choosing EFI boot in the boot manager?
    I would appreciate it if some of you that have a window 7 USB or DVD installer, please insert it into your mac, press alt during boot, choose EFI, and check if it freezes, boots windows install, or boots OSX.
    Kind regards,
    Jasper de Werk

    Hello raisdead.
    I'm using an iMac (mid 2010, with i3 processor and AMD 4670 graphics).
    I also have been trying to get EFISTUB boot to work and I've got it running now. I prefer it to grub.
    Your log reports are OK (like mine) until the ERROR comes up.
    I think you may not have got the correct UUID for your disk in the refind_linux.conf file.
    If you can boot with another linux, maybe a live install disk, and run
    sudo blkid /dev/sda7   (or whatever the number is for your arch disk partition)
    you will get the UUID to put in your refind_linux.conf file.
    In the refind_linux.conf file, the menu line I use to boot with is
    "Boot default" "root=UUID=e5ead341-2bea-4933-969c-09ba528e9729 ro nosplash nomodeset init=/bin/systemd"
    You might use the same but with your own UUID value, and maybe no init= value, if you are not using systemd yet (despite initial problems I recommend it).
    The nomodeset is to avoid a black screen problem with the radeon video module.
    My boot files are under EFI/arch353/ on the first partition on my mac. The files there are
    refind_linux.conf
    vmlinuz-linux
    initramfs-linux.img
    initramfs-linux-fallback.img
    To keep this up to date when the kernel changes I mount the EFI partition (do this before the new kernel is installed, otherwise you might lose the ability to mount)
    mount /dev/sda1 /mnt/uefi
    make a new folder arch354 (say)
    and copy over the new vmlinuz, initramfs files, together with a copy of the original refind_linux.conf
    When one version isn't needed just delete its folder.
    refind seems to find anything that might be bootable.
    Good luck.

Maybe you are looking for

  • Simulation of smart card

    Hi ppl, I'm a student working on a project of simulation of smart card. It involes no hardware at all so the physical layer transmission is ignored. I'm gonna implement the smart card operation using two programmes "card.c" and "reader.c" in the same

  • Process Multiple Files in Photoshop Elements 4.0.

    Please Help, I have a lot to learn about digital photos and when I retire I will have time. However, I have 4000+ digital photos at 900.0 plus KB (approximate 42.66x32 72ppi) each. Now I discover they take up lots of room (my backup is huge) and need

  • Freehand & Windows 7

    Does completely work on Windows 7 or are there compatibility issues? Can't create PDF's via the print dialog and cannot export as PDF or EPS. Need to know for certain if these features no longer work with Windows 7 or if something went awry on my ins

  • HGrid line detail is returning empty rows

    Hi All, I am working with HGrid component. I have followed OAF Developer Guide information as follows. 1. Created 2 VOs like PoHeaderVO, POLineVO 2. Created VL with HEADER_ID as source attribute and dest attribute 3. Added a HGrid component 4. Added

  • Two materials with the same EAN

    We use standard and promotional material code with the same EAN. The issue we should solve is that EDI recognises the material based on the EAN code. In the Order message I need material_1 during promotional period and material_2 when the promotion f