MBP suddenly extremely slow, checks return fine - anything else?

Hi there,
The issue:  MBP had been working fine but all of a sudden it is frustratingly slow to the point it is near unusable.  This literally happened overnight - it was fine, then I woke up to use the laptop and these issues occured. 95% of requests (clicking on something) are followed by a few sections of nothing, then the spinning pinwheel for anywhere from 5-30 seconds, this also happens when scrolling or opening web pages or writing things in word or on the web.  I have just timed my boot up at 3.23mins and I have nothing that opens on boot up. 
Spec:  I am using an MBP mid 2012 model, 2.5Ghz Intel Core i5 processor, 4GB 1600MHz DDR3 memory running OS X Lion 10.7.5.  The 500GB hard drive has 323.13GB free space and 2.69GB free memory.
So far: I have removed any external additions, unplugged anything that was plugged in, disabled my firewall and turned off WI-FI - this didn't help.  I have checked the CPU usage and the computer is having issues even when running at 95% idle.  I just did the AHT which reported no issues and checked the HD in disk utility - it gave me both the brand, model, size of the HD which as far as I know means theres no hard drive issue (correct me if I am wrong).  I also just finished backing up all my files on time machine which took about 2 days.
I know there have been similar threads which is where I got most of my troubleshooting noted above from.  I am aware that it would also seem logical to take the laptop to get checked out at the apple store, however I am an international student at college in quite a remote area - the nearest apple store is at least 90 minutes away and I am unable to drive cars in the US.  We do have a computer store on campus who have technicians however they charge regardless of if they can help - I am wondering if there is anything else I can do myself to fix the issues, or at least determine what might be causing them, before taking the laptop in to be seen as a last resort.
Any help at all would be greatly appreicated.
Thanks.
P.s, apologies for the length of this, I have tried to be as in-depth as possible to avoid any time wasted asking simple questions etc.

If you don't already have a current backup, back up all data before doing anything else. This procedure is a diagnostic  test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem. The backup is necessary on general principle, not because of anything suggested in this comment. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
Below are instructions to run a UNIX shell script, a type of program. It does nothing but produce human-readable data about the state of your computer. However, you need to be cautious about running any program at the behest of a stranger on a public message board. If you question the safety of the procedure suggested here — which you should — search this site for other discussions in which it’s been followed without any report of ill effects. If you can't satisfy yourself that these instructions are safe, don't follow them.
Here's a summary of what you need to do: Copy a line of text from this web page into the window of another application. Wait about a minute. Then paste some other text, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only run the test in safe mode, proceed anyway.
If you have more than one user, and the affected user is not an administrator, then please run the script twice: once while logged in as the affected user, and once as an administrator. The results may be different. The administrator is the user that is created automatically on a new computer when you start it for the first time. If you can't log in as an administrator, just run the script as the affected user. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking  anywhere in the line. The whole line will highlight, though you may not see all of it in your browser, and you can then copy it.
Launch the built-in Terminal application in any of the following ways:
☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign ($) or a percent sign (%). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign.
Triple-click anywhere in the line of text below on this page to select it:
clear; shopt -s extglob; Fb='%s\n\t(%s)\n'; Fm='\n%s:\n\n%s\n'; Fs='\n%s: %s\n'; PB="/usr/libexec/PlistBuddy -c Print"; Pm () { [[ "$o" ]] && o=$(sed 's/^/   /' <<< "$o") && printf "$Fm" "$1" "$o"; }; Pc () { o=$(egrep -v '^[[:blank:]]*($|#)' "$2"); Pm "$1"; }; Pp () { o=$($PB "$2" | awk -F'= ' \/$3'/{print $2}'); Pm "$1"; }; Ps () { o="${o##+( )}"; [[ "$o" -ne 0 ]] && printf "$Fs" "$1" "$o"; }; a=$(id | grep -w '80(admin)'); r=1; [[ "$a" ]] && { sudo true; r=$?; }; { [[ "$a" ]] || echo $'No admin access\n'; [[ "$a" && "$r" -ne 0 ]] && echo $'No root access\n'; system_profiler SPSoftwareDataType | sed '8!d;s/^ *//'; o=$(system_profiler SPDiagnosticsDataType | sed '5,6!d'); fgrep -q P <<< "$o" && o=; Pm "POST"; o=$(nvram boot-args | awk '{$1=""; print}'); Ps "boot-args"; o=$(df -m / | awk 'NR==2 {print $4}'); [[ $o -lt 5120 ]] && Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/Pageo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( $(sar -u 1 10 | sed '$!d') ); [[ ${s[4]} -lt 90 ]] && o=$(printf 'User %s%%\t\tSystem %s%%' ${s[1]} ${s[3]}) || o=; Pm "Total CPU usage" && o=$(ps acrx -o comm,ruid,%cpu | sed '2!d'); Pm "Max %CPU by process (name, UID, %)"; o=$(kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1); Pm "Loaded extrinsic kernel extensions"; o=$(launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'); Pm "Loaded extrinsic user agents"; o=$(launchctl getenv DYLD_INSERT_LIBRARIES); Pm "Inserted libraries"; for f in crontab fstab launchd.conf sysctl.conf; do Pc $f /etc/$f; done; Pc "hosts" <(sed '1,10d' /etc/hosts); Pc "User crontab" <(crontab -l); Pc "User launchd" ~/.launchd; o=$(find {,/u*/lo*}/e*/periodic -type f -mtime -10d); Pm "Modified periodic scripts"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed 's/\..*$//;s/-[1-9]$//'; o=$(find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l); Ps "Restricted user files"; cd; o=$(find -L /S*/L*/E* {/,}L*/{A*d,Compon,Ex,In,Keyb,Mail/Bu,P*P,Qu,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB\ :CFBundleIdentifier "$d/Info.plist") || ID="No bundle ID"; egrep -qv "^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|\.hpio|JMicron|microsoft\.MDI|print|SoftRAID" <<< $ID && printf "$Fb" "${d%/Contents}" "$ID"; done); Pm "Extrinsic loadable bundles"; o=$(find /u*/{,*/}lib -type f -exec sh -c 'file -b "$1" | grep -qw shared && ! codesign -v "$1"' {} {} \; -print); Pm "Unsigned shared libraries"; o=$(system_profiler SPFontsDataType | egrep "Valid: N|Duplicate: Y" | wc -l); Ps "Font problems"; for d in {/,}L*/{La,Priv,Sta}*; do o=$(ls -A "$d" | egrep -v '\.DS_Store|^com\.apple'); Pm "$d"; done; o=$(ls /L*/L*/Dia*/*.panic | wc -l); Ps "Panics"; o=$(ls /L*/L*/Dia*/*.c* | tail); Pm "System crash logs"; o=$(ls L*/L*/Dia* | tail); Pm "User crash logs"; [[ "$r" -eq 0 ]] && { o=$(sudo profiles -P); Pm "Profiles"; o=$(sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'); Pm "Loaded extrinsic daemons"; o=$(sudo defaults read com.apple.loginwindow LoginHook); Pm "Login hook"; Pc "Root crontab" <(sudo crontab -l);}; o=$(syslog -F bsd -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|n Cause: -|NVDA\(|pagin|timed? ?o' | tail -n25 | awk '/:/{$4=""; $5=""; print}'); Pm "Kernel messages"; } 2> /dev/null | pbcopy; exit
Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the script will run anyway, but it will produce less information. In most cases, the difference is not important, so don't worry about it.
The script may take up to a few minutes to run, depending on how many files you have and the speed of the computer. Wait for the line "[Process completed]" to appear in the Terminal window.
You can then quit Terminal. The output of the script will have been copied to the Clipboard automatically. All you have to do is paste into a reply to this message by pressing command-V again. If any personal information, such as your name or email address, appears in the output, anonymize it before posting. Usually that won't be necessary. Please don't copy anything from the Terminal window.
When you post the output, you might see in your browser the message, "You have included content in your post that is not permitted." That's because the forum software falsely identifies something in the post as a violation of the terms of use. If that happens, please post the output on Pastebin, then post a link here to the page you created.
Note: This is a public forum, and others may offer you advice based on the output of the script. They speak only for themselves and I don't necessarily agree with their views.
Copyright © 2014 Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of Apple Support Communities ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

Similar Messages

  • My iMac with Comcast is suddenly extremely slow

    Suddenly my imac with comcast internet with apple airport is extremly slow.
    This sort of came out of the blue.
    I have called Comcast and they said everything on their end seems to check out fine.
    Going a bit nuts here. Any ideas as to why this is happening?
    Anything I should test?
    Doug

    Nothing seems to have changed at all Allen.
    Still taking *forever* to download images, pages, etc.
    Here is the new report:
    Hardware Information:
              iMac (24-inch, Early 2008)
              iMac - model: iMac8,1
              1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 8800 GS - VRAM: 512 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:56:41
    Disk Information:
              ST3500418AS disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 499.25 GB (415.73 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Iomega External HD 1 TB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        Media (disk1s2) /Volumes/Media: 999.86 GB (626.31 GB free)
              Hewlett-Packard HP Color LaserJet CP1518ni
              Apple Inc. Built-in iSight
              Apple, Inc. Keyboard Hub
                        Mitsumi Electric Apple Optical USB Mouse
                        Apple Inc. Apple Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.logmein.driver.LogMeInSoundDriver          (1.0.3 - SDK 10.5)
              net.telestream.driver.TelestreamAudio          (1.0.5 - SDK 10.6)
    Startup Items:
              ColdFusion10: Path: /Library/StartupItems/ColdFusion10
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.barebones.authd.plist 3rd-Party support link
              [System] com.barebones.textwrangler.plist 3rd-Party support link
              [System] com.google.keystone.daemon.plist 3rd-Party support link
              [System] com.logmein.logmeinblanker.plist 3rd-Party support link
              [System] com.logmein.logmeinserver.plist 3rd-Party support link
              [System] com.logmein.raupdate.plist 3rd-Party support link
              [System] com.macpaw.CleanMyMac2.Agent.plist 3rd-Party support link
    Launch Agents:
              [System] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [System] com.amazon.sendtokindle.launcher.plist 3rd-Party support link
              [System] com.flipvideo.FlipShare.AutoRun.plist 3rd-Party support link
              [System] com.google.keystone.agent.plist 3rd-Party support link
              [System] com.logmein.logmeingui.plist 3rd-Party support link
              [System] com.logmein.logmeinguiagent.plist 3rd-Party support link
              [System] com.logmein.logmeinguiagentatlogin.plist 3rd-Party support link
              [System] com.wacom.pentablet.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.macpaw.CleanMyMac.helperTool.plist 3rd-Party support link
              [not loaded] com.macpaw.CleanMyMac.volumeWatcher.plist 3rd-Party support link
              [not loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist 3rd-Party support link
              [not loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist 3rd-Party support link
              [not loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist 3rd-Party support link
              [not loaded] ws.agile.1PasswordAgent.plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              EvernoteHelper
              Skype
              Dropbox
              BitTorrent
              Google Drive
              AdobeResourceSynchronizer
              EvernoteHelper
              BambooCore
    Internet Plug-ins:
              o1dbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
              WacomNetscape: Version: 1.1.1-1 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 2.4.4.2 3rd-Party support link
              WacomSafari: Version: 1.1.1-1 3rd-Party support link
              AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 3rd-Party support link
              FlashPlayer-10.6: Version: 13.0.0.201 - SDK 10.6 3rd-Party support link
              AdobePDFViewerNPAPI: Version: 11.0.04 - SDK 10.6 3rd-Party support link
              LogMeIn: Version: 1.0.935 - SDK 10.7 3rd-Party support link
              Flash Player: Version: 13.0.0.201 - SDK 10.6 3rd-Party support link
              LogMeInSafari32: Version: 1.0.935 - SDK 10.7 3rd-Party support link
              googletalkbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
              iPhotoPhotocast: Version: 7.0
              AdobePDFViewer: Version: 11.0.04 - SDK 10.6 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 3rd-Party support link
    Safari Extensions:
              Searchme: Version: 1.3
              1Password: Version: 3.9.20
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              WebEx64: Version: 1.0 - SDK 10.5 3rd-Party support link
              WebEx: Version: 1.0 3rd-Party support link
              CitrixOnlineWebDeploymentPlugin: Version: 1.0.94 3rd-Party support link
              Picasa: Version: 1.0 3rd-Party support link
              RealPlayer Plugin: Version: (null) 3rd-Party support link
    3rd Party Preference Panes:
              3ivx MPEG-4  3rd-Party support link
              PenTablet  3rd-Party support link
              DC30 Xact Driver Panel  3rd-Party support link
              Flash Player  3rd-Party support link
              Flip4Mac WMV  3rd-Party support link
              Growl  3rd-Party support link
              Pastebot Sync  3rd-Party support link
              Perian  3rd-Party support link
              TextExpander  3rd-Party support link
    Old Applications:
              Transmit:          Version: 4.2 - SDK 10.5 3rd-Party support link
              Corel Painter Lite:          Version: 1.0.821 - SDK 10.5 3rd-Party support link
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              /Users/[redacted]/Library/Application Support/WebEx Folder/1224
                        convertpdf:          Version: 1.2 - SDK 10.5 3rd-Party support link
                        Cisco WebEx Meeting Center:          Version: 1207.04.2732.10 - SDK 10.5 3rd-Party support link
                        asannotation2:          Version: 8.25.31.0 - SDK 10.5 3rd-Party support link
                        atmsupload:          Version: 4.14.29.0 - SDK 10.5 3rd-Party support link
    Time Machine:
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 464.96 GB Disk used: 77.79 GB
              Destinations:
                        Media [Local] (Last used)
                        Total size: 931.19 GB
                        Total number of backups: 173
                        Oldest backup: 2010-10-10 13:20:12 +0000
                        Last backup: 2014-04-22 16:27:56 +0000
                        Size of backup disk: Adequate
                                  Backup size 931.19 GB > (Disk used 77.79 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   5%          WindowServer
                   1%          EtreCheck
                   1%          Google Chrome
                   1%          Activity Monitor
                   1%          launchservicesd
    Top Processes by Memory:
              156 MB          com.apple.IconServicesAgent
              143 MB          mds_stores
              119 MB          WindowServer
              102 MB          Adobe Photoshop Elements
              102 MB          Skype
    Virtual Memory Information:
              1.24 GB          Free RAM
              1.56 GB          Active RAM
              678 MB          Inactive RAM
              557 MB          Wired RAM
              579 MB          Page-ins
              0 B          Page-outs

  • MBP is Extremely Slow and iTunes breaks while playing...

    My MacBook Pro has become extremely slow. My songs on iTunes break periodically for about 5 seconds. Its becoming very annoying. I get this rainbow circle cursor each time i click anything. I have tried very solution on this forum and still haven't gotten a solution yet.
    This is my EtreCheck result
    EtreCheck version: 1.9.12 (48)
    Report generated August 2, 2014 at 10:26:58 AM GMT+1
    Hardware Information:
      MacBook Pro (13-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.4 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information:
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software:
      OS X 10.9.4 (13E28) - Uptime: 8 days 0:53:19
    Disk Information:
      TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 499.25 GB (444.53 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      OPTIARC DVD RW AD-5970H 
    USB Information:
      Apple Inc. iPhone
      Apple Computer, Inc. IR Receiver
      Apple Inc. FaceTime HD Camera (Built-in)
      Huawei Technologies HUAWEI Mobile
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information:
      Apple Inc. thunderbolt_bus
    Gatekeeper:
      Mac App Store and identified developers
    Kernel Extensions:
      [loaded] com.huawei.driver.HuaweiDataCardACMData (4.26.00) Support
      [loaded] com.huawei.driver.HuaweiDataCardDriver (4.25.01) Support
      [loaded] com.huawei.driver.HuaweiDataCardECMControl (1.28.00) Support
      [loaded] com.huawei.driver.HuaweiDataCardECMData (1.33.00) Support
    Startup Items:
      HWNetMgr: Path: /Library/StartupItems/HWNetMgr
      HWPortDetect: Path: /Library/StartupItems/HWPortDetect
      StartOuc: Path: /Library/StartupItems/StartOuc
    Launch Daemons:
      [loaded] com.adobe.fpsaud.plist Support
    User Login Items:
      iTunesHelper
      Messages
    Internet Plug-ins:
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
      Default Browser: Version: 537 - SDK 10.9
    Audio Plug-ins:
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
      Flash Player  Support
    Time Machine:
      Time Machine not configured!
    Top Processes by CPU:
          12% com.apple.WebKit.Networking
          5% WindowServer
          4% mobilepartner
          2% fontd
          1% configd
    Top Processes by Memory:
      90 MB iTunes
      70 MB Finder
      61 MB Safari
      53 MB WindowServer
      37 MB Mail
    Virtual Memory Information:
      422 MB Free RAM
      996 MB Active RAM
      529 MB Inactive RAM
      1.11 GB Wired RAM
      5.17 GB Page-ins
      1.35 GB Page-outs
    I would be happy if i can find a solution.

    8/13/14 3:50:43.000 PM kernel[0]: sleep
    8/13/14 3:50:43.000 PM kernel[0]: Wake reason: EC.LidOpen (User)
    8/13/14 7:05:38.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/13/14 7:05:38.000 PM kernel[0]: Previous Sleep Cause: 5
    8/13/14 7:05:38.000 PM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    8/13/14 7:05:38.000 PM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/13/14 7:05:38.000 PM kernel[0]: TBT W (1): 0 [x]
    8/13/14 7:05:38.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 7:05:38.346 PM WindowServer[90]: CGXDisplayDidWakeNotification [362515812328876]: posting kCGSDisplayDidWake
    8/13/14 7:05:38.346 PM WindowServer[90]: handle_will_sleep_auth_and_shield_windows: Reordering authw 0x7fb86c698900(2004) (lock state: 3)
    8/13/14 7:05:38.347 PM WindowServer[90]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/13/14 7:05:49.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 00:18:25:00:a3:60 Auth request tx failed
    8/13/14 7:05:52.000 PM kernel[0]: directed SSID scan fail
    8/13/14 7:05:57.168 PM AddressBookSourceSync[59155]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://temmyfaloye%[email protected]/2009436707/principal///temmyfaloye%[email protected]/2009436707/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7ff0c1c6cda0 {NSUnderlyingError=0x7ff0c1d51f70 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://temmyfaloye%[email protected]/2009436707/principal///temmyfaloye%[email protected]/2009436707/principal/, NSErrorFailingURLKey=https://temmyfaloye%[email protected]/2009436707/principal///temmyfaloye%[email protected]/2009436707/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    8/13/14 7:05:57.168 PM AddressBookSourceSync[59155]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://temmyfaloye%[email protected]/carddav/v1/principals/temmyfaloye%40g mail.com///temmyfaloye%[email protected]/carddav/v1/principals/temmyfaloye%40gmail.com/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7ff0c1fc0d20 {NSUnderlyingError=0x7ff0c1d0edf0 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://temmyfaloye%[email protected]/carddav/v1/principals/temmyfaloye%40g mail.com///temmyfaloye%[email protected]/carddav/v1/principals/temmyfaloye%40gmail.com/, NSErrorFailingURLKey=https://temmyfaloye%[email protected]/carddav/v1/principals/temmyfaloye%40g mail.com///temmyfaloye%[email protected]/carddav/v1/principals/temmyfaloye%40gmail.com/, NSLocalizedDescription=The Internet connection appears to be offline.}
    8/13/14 7:06:08.377 PM WindowServer[90]: device_generate_desktop_screenshot: authw 0x7fb86c698900(2000), shield 0x7fb86c6ede10(2001)
    8/13/14 7:06:08.382 PM WindowServer[90]: device_generate_lock_screen_screenshot: authw 0x7fb86c698900(2000), shield 0x7fb86c6ede10(2001)
    8/13/14 7:06:15.180 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 59257 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:06:25.138 PM loginwindow[41]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/13/14 7:06:30.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 7:06:33.859 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 59387 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:06:55.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 7:07:02.548 PM SubmitDiagInfo[59416]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/13/14 7:07:02.548 PM SubmitDiagInfo[59416]: Failed to submit crash report: file:///Users/Admin/Library/Logs/DiagnosticReports/LiveUpd_2014-08-12-235856_Te mmys-MacBook-Pro.crash
    8/13/14 7:07:18.990 PM com.apple.CrashReporter.ACRRDaemonPlugin[167]: Submission failed with the launch daemon: (null)
    8/13/14 7:07:43.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 7:09:11.712 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 59554 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:10:15.471 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 59687 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:12:00.784 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 59819 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:13:47.440 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 59953 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:16:11.425 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 60089 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:16:48.659 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 60236 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:17:22.331 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 60571 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 7:17:48.000 PM kernel[0]: PM notification timeout (pid 293, Messages)
    8/13/14 7:18:18.000 PM kernel[0]: PM notification timeout (pid 293, Messages)
    8/13/14 7:18:21.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    8/13/14 7:18:21.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 7:18:23.000 PM kernel[0]: hibernate image path: /var/vm/sleepimage
    8/13/14 7:18:23.000 PM kernel[0]: efi pagecount 43
    8/13/14 7:18:23.000 PM kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff807646b000, 0xffffff8076494000
    8/13/14 7:18:23.000 PM kernel[0]: hibernate_page_list_setall time: 107 ms
    8/13/14 7:18:23.000 PM kernel[0]: pages 984871, wire 235411, act 218625, inact 108, cleaned 0 spec 8, zf 193518, throt 0, compr 200813, xpmapped 40000
    8/13/14 7:18:23.000 PM kernel[0]: could discard act 79499 inact 41525 purgeable 2246 spec 12998 cleaned 120
    8/13/14 7:18:23.000 PM kernel[0]: WARNING: hibernate_page_list_setall skipped 4395579 xpmapped pages
    8/13/14 7:18:23.000 PM kernel[0]: hibernate_page_list_setall preflight pageCount 848483 est comp 54 setfile 2023751680 min 2147483648
    8/13/14 7:18:23.000 PM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    8/13/14 7:18:23.000 PM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/13/14 7:18:30.000 PM kernel[0]: [0x156d0b0000, 0x1000]
    8/13/14 7:18:30.000 PM kernel[0]: [0x17c54c7000, 0x19000000]
    8/13/14 7:18:30.000 PM kernel[0]: [0x181c8fa000, 0x19000000]
    8/13/14 7:18:30.000 PM kernel[0]: [0x183f586000, 0x19000000]
    8/13/14 7:18:30.000 PM kernel[0]: [0x186485b000, 0x19000000]
    8/13/14 7:18:30.000 PM kernel[0]: [0x189cc24000, 0x19000000]
    8/13/14 7:18:30.000 PM kernel[0]: [0x18b8d13000, 0x2fff000]
    8/13/14 7:18:30.000 PM kernel[0]: [0x0, 0x0]
    8/13/14 7:18:30.000 PM kernel[0]: kern_open_file_for_direct_io(0) took 6218 ms
    8/13/14 7:18:30.000 PM kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0x0, maxio 2000000 ssd 0
    8/13/14 7:18:30.000 PM kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    8/13/14 7:18:30.000 PM kernel[0]: hibernate_alloc_pages act 295817, inact 235512, anon 199576, throt 0, spec 13007, wire 256940, wireinit 97555
    8/13/14 7:18:30.000 PM kernel[0]: hibernate_setup(0) took 0 ms
    8/13/14 7:18:30.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 7:19:12.000 PM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff807646b000, 0xffffff8076494000
    8/13/14 7:19:12.000 PM kernel[0]: hibernate_page_list_setall time: 136 ms
    8/13/14 7:19:12.000 PM kernel[0]: pages 979877, wire 234585, act 214474, inact 108, cleaned 1 spec 11, zf 193534, throt 0, compr 200813, xpmapped 40000
    8/13/14 7:19:12.000 PM kernel[0]: could discard act 79497 inact 41493 purgeable 2246 spec 12996 cleaned 119
    8/13/14 7:19:12.000 PM kernel[0]: WARNING: hibernate_page_list_setall skipped 4431540 xpmapped pages
    8/13/14 7:19:12.000 PM kernel[0]: hibernate_page_list_setall found pageCount 843526
    8/13/14 7:19:12.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/13/14 7:19:12.000 PM kernel[0]: IOHibernatePollerOpen(0)
    8/13/14 7:19:12.000 PM kernel[0]: encryptStart 14060
    8/13/14 7:19:12.000 PM kernel[0]: bitmap_size 0x1f5a0, previewSize 0x43c1d0, writing 842158 pages @ 0x46f7d0
    8/13/14 7:19:12.000 PM kernel[0]: encryptEnd 10aa4400
    8/13/14 7:19:12.000 PM kernel[0]: image1Size 0x16006000, encryptStart1 0x14060, End1 0x10aa4400
    8/13/14 7:19:12.000 PM kernel[0]: encryptStart 16006000
    8/13/14 7:19:12.000 PM kernel[0]: encryptEnd 7217f600
    8/13/14 7:19:12.000 PM kernel[0]: PMStats: Hibernate write took 33092 ms
    8/13/14 7:19:12.000 PM kernel[0]: all time: 33092 ms, comp bytes: 3449847808 time: 3263 ms 1008 Mb/s, crypt bytes: 1824561568 time: 3349 ms 519 Mb/s,
    8/13/14 7:19:12.000 PM kernel[0]: image 1914175488 (89%), uncompressed 3449847808 (842248), compressed 1904108192 (55%), sum1 a3c402ac, sum2 8f8511e5
    8/13/14 7:19:12.000 PM kernel[0]: zeroPageCount 72343, wiredPagesEncrypted 175904, wiredPagesClear 57403, dirtyPagesEncrypted 608941
    8/13/14 7:19:12.000 PM kernel[0]: hibernate_write_image done(0)
    8/13/14 7:19:12.000 PM kernel[0]: sleep
    8/13/14 7:19:12.000 PM kernel[0]: Wake reason: EHC1
    8/13/14 8:19:44.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/13/14 8:19:44.000 PM kernel[0]: Previous Sleep Cause: 5
    8/13/14 8:19:44.000 PM kernel[0]: The USB device HubDevice (Port 1 of Hub at 0xfd000000) may have caused a wake by issuing a remote wakeup (2)
    8/13/14 8:19:44.000 PM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 2 milliseconds
    8/13/14 8:19:44.082 PM loginwindow[41]: magsafeStateChanged state changed old 2 new 1
    8/13/14 8:19:44.000 PM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/13/14 8:19:44.000 PM kernel[0]: TBT W (1): 0 [x]
    8/13/14 8:19:44.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:19:45.000 PM kernel[0]: full wake (reason 1) 1087 ms
    8/13/14 8:19:45.382 PM WindowServer[90]: CGXDisplayDidWakeNotification [363331683444151]: posting kCGSDisplayDidWake
    8/13/14 8:19:45.382 PM WindowServer[90]: handle_will_sleep_auth_and_shield_windows: Reordering authw 0x7fb86c698900(2000) (lock state: 3)
    8/13/14 8:19:45.383 PM WindowServer[90]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/13/14 8:19:47.739 PM loginwindow[41]: ERROR | -[LWBuiltInScreenLockAuthLion askForPasswordBuiltIn:] | Attempted to add an observer when already observing
    8/13/14 8:19:49.779 PM iTunes[291]: Entered:_AMMuxedVersion2DeviceConnected, mux-device:105
    8/13/14 8:19:49.783 PM iTunes[291]: tid:1fc2f - unable to query device capabilities
    8/13/14 8:19:51.467 PM launchservicesd[54]: Application App:"Image Capture" asn:0x0-25c25c pid:25342 refs=6 @ 0x7ffb11e556b0 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x1001 pid=41 "loginwindow"")), so denying. : LASSession.cp #1481 SetFrontApplication() q=LSSession 100004/0x186a4 queue
    8/13/14 8:19:51.468 PM WindowServer[90]: [cps/setfront] Failed setting the front application to Image Capture, psn 0x0-0x25c25c, securitySessionID=0x186a4, err=-13066
    8/13/14 8:19:52.872 PM xpcproxy[60703]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    8/13/14 8:19:53.111 PM syncdefaultsd[60702]: *** -[IADomainCache init]: IA domains cache couldn't be read.
    8/13/14 8:19:53.112 PM syncdefaultsd[60702]: -[IAPluginManager allAListPlugins] [546] -- *** warning: we're on the slow path.
    8/13/14 8:19:53.164 PM com.apple.iCloudHelper[60703]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.4;13E28> <com.apple.AOSKit/176>";
        "X-Mme-Country" = US;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+1";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fd27bc1d940 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    8/13/14 8:19:53.284 PM com.apple.iCloudHelper[60703]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.4;13E28> <com.apple.AOSKit/176>";
        "X-Mme-Country" = US;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+1";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fd27bd1ade0 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    8/13/14 8:19:53.285 PM com.apple.iCloudHelper[60703]: AOSKit ERROR: Setup request failed, appleID=2009436707, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fd27bd186c0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    8/13/14 8:20:17.758 PM WindowServer[90]: device_generate_desktop_screenshot: authw 0x7fb86c698900(2000), shield 0x7fb86c6ede10(2001)
    8/13/14 8:20:17.761 PM WindowServer[90]: device_generate_lock_screen_screenshot: authw 0x7fb86c698900(2000), shield 0x7fb86c6ede10(2001)
    8/13/14 8:20:22.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:20:32.861 PM iTunes[291]: Entered:_AMMuxedDeviceDisconnected, mux-device:105
    8/13/14 8:20:32.862 PM iTunes[291]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:105
    8/13/14 8:20:32.863 PM iTunes[291]: tid:1e307 - BootedOS mode device disconnected
    8/13/14 8:20:44.145 PM loginwindow[41]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/13/14 8:20:47.727 PM loginwindow[41]: magsafeStateChanged state changed old 1 new 2
    8/13/14 8:20:52.416 PM WindowServer[90]: CGXDisplayDidWakeNotification [363398717712144]: posting kCGSDisplayDidWake
    8/13/14 8:20:52.417 PM WindowServer[90]: handle_will_sleep_auth_and_shield_windows: Deferring.
    8/13/14 8:20:53.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:20:54.577 PM WindowServer[90]: CGError post_notification(const CGSNotificationType, void *const, const size_t, const bool, const CGSRealTimeDelta, const int, const CGSConnectionID *const, const pid_t): Timed out 1.000 second wait for reply from "Etisalat Nigeria" for synchronous notification type 102 (kCGSDisplayWillSleep) (CID 0x11137, PID 2376)
    8/13/14 8:20:54.578 PM WindowServer[90]: CGError post_notification(const CGSNotificationType, void *const, const size_t, const bool, const CGSRealTimeDelta, const int, const CGSConnectionID *const, const pid_t): Timed out 1.000 second wait for reply from "Messages" for synchronous notification type 102 (kCGSDisplayWillSleep) (CID 0xb80b, PID 293)
    8/13/14 8:20:54.578 PM WindowServer[90]: CGError post_notification(const CGSNotificationType, void *const, const size_t, const bool, const CGSRealTimeDelta, const int, const CGSConnectionID *const, const pid_t): Timed out 1.000 second wait for reply from "Notification Center" for synchronous notification type 102 (kCGSDisplayWillSleep) (CID 0xf403, PID 308)
    8/13/14 8:20:54.579 PM WindowServer[90]: device_generate_desktop_screenshot: authw 0x7fb86c698900(2000), shield 0x7fb86c6ede10(2001)
    8/13/14 8:20:54.583 PM WindowServer[90]: device_generate_lock_screen_screenshot: authw 0x7fb86c698900(2000), shield 0x7fb86c6ede10(2001)
    8/13/14 8:20:57.023 PM loginwindow[41]: ERROR | -[LWBuiltInScreenLockAuthLion askForPasswordBuiltIn:] | Attempted to add an observer when already observing
    8/13/14 8:21:09.494 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 61006 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 8:21:10.540 PM SubmitDiagInfo[60710]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/13/14 8:21:10.541 PM SubmitDiagInfo[60710]: Failed to submit crash report: file:///Users/Admin/Library/Logs/DiagnosticReports/LiveUpd_2014-08-12-235856_Te mmys-MacBook-Pro.crash
    8/13/14 8:21:18.707 PM com.apple.CrashReporter.ACRRDaemonPlugin[167]: Submission failed with the launch daemon: (null)
    8/13/14 8:21:19.393 PM loginwindow[41]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/13/14 8:21:23.000 PM kernel[0]: PM notification timeout (pid 293, Messages)
    8/13/14 8:21:40.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:21:51.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    8/13/14 8:21:56.554 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 61164 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 8:21:56.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:21:58.000 PM kernel[0]: hibernate image path: /var/vm/sleepimage
    8/13/14 8:21:58.000 PM kernel[0]: efi pagecount 43
    8/13/14 8:21:58.000 PM kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff807646b000, 0xffffff8076494000
    8/13/14 8:21:58.000 PM kernel[0]: hibernate_page_list_setall time: 106 ms
    8/13/14 8:21:58.000 PM kernel[0]: pages 992892, wire 236082, act 221214, inact 119, cleaned 0 spec 11, zf 197432, throt 0, compr 200813, xpmapped 40000
    8/13/14 8:21:58.000 PM kernel[0]: could discard act 79686 inact 41770 purgeable 2312 spec 13333 cleaned 120
    8/13/14 8:21:58.000 PM kernel[0]: WARNING: hibernate_page_list_setall skipped 4431540 xpmapped pages
    8/13/14 8:21:58.000 PM kernel[0]: hibernate_page_list_setall preflight pageCount 855671 est comp 55 setfile 2055208960 min 2147483648
    8/13/14 8:21:58.000 PM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    8/13/14 8:21:58.000 PM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/13/14 8:22:05.000 PM kernel[0]: [0x156d0b0000, 0x1000]
    8/13/14 8:22:05.000 PM kernel[0]: [0x17c54c7000, 0x19000000]
    8/13/14 8:22:05.000 PM kernel[0]: [0x181c8fa000, 0x19000000]
    8/13/14 8:22:05.000 PM kernel[0]: [0x183f586000, 0x19000000]
    8/13/14 8:22:05.000 PM kernel[0]: [0x186485b000, 0x19000000]
    8/13/14 8:22:05.000 PM kernel[0]: [0x189cc24000, 0x19000000]
    8/13/14 8:22:05.000 PM kernel[0]: [0x18b8d13000, 0x2fff000]
    8/13/14 8:22:05.000 PM kernel[0]: [0x0, 0x0]
    8/13/14 8:22:05.000 PM kernel[0]: kern_open_file_for_direct_io(0) took 6516 ms
    8/13/14 8:22:05.000 PM kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0x0, maxio 2000000 ssd 0
    8/13/14 8:22:05.000 PM kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    8/13/14 8:22:05.000 PM kernel[0]: hibernate_alloc_pages act 302640, inact 240341, anon 204030, throt 0, spec 12541, wire 258130, wireinit 97555
    8/13/14 8:22:05.000 PM kernel[0]: hibernate_setup(0) took 0 ms
    8/13/14 8:22:05.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:22:50.000 PM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff807646b000, 0xffffff8076494000
    8/13/14 8:22:50.000 PM kernel[0]: hibernate_page_list_setall time: 143 ms
    8/13/14 8:22:50.000 PM kernel[0]: pages 992781, wire 235775, act 222286, inact 1436, cleaned 0 spec 2316, zf 198091, throt 0, compr 200813, xpmapped 40000
    8/13/14 8:22:50.000 PM kernel[0]: could discard act 78712 inact 40438 purgeable 2312 spec 10482 cleaned 120
    8/13/14 8:22:50.000 PM kernel[0]: WARNING: hibernate_page_list_setall skipped 4466586 xpmapped pages
    8/13/14 8:22:50.000 PM kernel[0]: hibernate_page_list_setall found pageCount 860717
    8/13/14 8:22:50.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/13/14 8:22:50.000 PM kernel[0]: IOHibernatePollerOpen(0)
    8/13/14 8:22:50.000 PM kernel[0]: encryptStart 14060
    8/13/14 8:22:50.000 PM kernel[0]: bitmap_size 0x1f5a0, previewSize 0x43d1e0, writing 859348 pages @ 0x4707e0
    8/13/14 8:22:50.000 PM kernel[0]: encryptEnd 10a71e00
    8/13/14 8:22:50.000 PM kernel[0]: image1Size 0x16008000, encryptStart1 0x14060, End1 0x10a71e00
    8/13/14 8:22:50.000 PM kernel[0]: encryptStart 16008000
    8/13/14 8:22:50.000 PM kernel[0]: encryptEnd 74b09e00
    8/13/14 8:22:50.000 PM kernel[0]: PMStats: Hibernate write took 35593 ms
    8/13/14 8:22:50.000 PM kernel[0]: all time: 35593 ms, comp bytes: 3520258048 time: 3346 ms 1003 Mb/s, crypt bytes: 1867905952 time: 3428 ms 519 Mb/s,
    8/13/14 8:22:50.000 PM kernel[0]: image 1957732352 (91%), uncompressed 3520258048 (859438), compressed 1947639216 (55%), sum1 1fd05a12, sum2 af021fd2
    8/13/14 8:22:50.000 PM kernel[0]: zeroPageCount 72621, wiredPagesEncrypted 177088, wiredPagesClear 57408, dirtyPagesEncrypted 624942
    8/13/14 8:22:50.000 PM kernel[0]: hibernate_write_image done(0)
    8/13/14 8:22:50.000 PM kernel[0]: sleep
    8/13/14 8:22:50.000 PM kernel[0]: Wake reason: EC.LidOpen EHC2 (User)
    8/13/14 8:24:06.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/13/14 8:24:06.000 PM kernel[0]: Previous Sleep Cause: 5
    8/13/14 8:24:06.000 PM kernel[0]: The USB device HubDevice (Port 1 of Hub at 0xfa000000) may have caused a wake by issuing a remote wakeup (2)
    8/13/14 8:24:06.000 PM kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    8/13/14 8:24:06.000 PM kernel[0]: The USB device Apple Internal Keyboard / Trackpad (Port 2 of Hub at 0xfa100000) may have caused a wake by issuing a remote wakeup (3)
    8/13/14 8:24:06.000 PM kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    8/13/14 8:24:06.000 PM kernel[0]: TBT W (1): 0 [x]
    8/13/14 8:24:06.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:24:11.079 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 61346 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 8:24:44.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:25:19.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:25:25.445 PM SubmitDiagInfo[61417]: CFReadStreamCopyError() returned: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    8/13/14 8:25:25.445 PM SubmitDiagInfo[61417]: Failed to submit crash report: file:///Users/Admin/Library/Logs/DiagnosticReports/LiveUpd_2014-08-12-235856_Te mmys-MacBook-Pro.crash
    8/13/14 8:25:51.162 PM com.apple.CrashReporter.ACRRDaemonPlugin[167]: Submission failed with the launch daemon: (null)
    8/13/14 8:25:52.143 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 61557 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 8:26:06.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa400 ****
    8/13/14 8:26:06.300 PM loginwindow[41]: ERROR | -[LWBuiltInScreenLockAuthLion askForPasswordBuiltIn:] | Attempted to add an observer when already observing
    8/13/14 8:26:06.401 PM loginwindow[41]: resume called when there was already a timer
    8/13/14 8:26:06.580 PM WindowServer[90]: CGXDisplayDidWakeNotification [363637646294033]: posting kCGSDisplayDidWake
    8/13/14 8:26:06.582 PM WindowServer[90]: handle_will_sleep_auth_and_shield_windows: Reordering authw 0x7fb86c698900(2004) (lock state: 3)
    8/13/14 8:26:06.582 PM WindowServer[90]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/13/14 8:26:28.189 PM com.apple.launchd[1]: (com.adobe.fpsaud[61589]) Exited with code: 210
    8/13/14 8:27:03.644 PM loginwindow[41]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    8/13/14 8:27:03.913 PM universalAccessAuthWarn[2435]: AccessibilityAPI: pid 2376, is not allowed to access the accessibility API. Path: /Applications/Etisalat Nigeria.app/Contents/MacOS/mobilepartner (Leaf request from pid 61694 Path: /usr/local/hw_mp_userdata/Etisalat_Nigeria/OnlineUpdate/LiveUpd.app/Contents/Ma cOS/LiveUpd)
    8/13/14 8:27:04.712 PM WindowServer[90]: CGXGetConnectionProperty: Invalid connection 100615
    8/13/14 8:27:04.713 PM WindowServer[90]: CGXGetConnectionProperty: Invalid connection 100615
    8/13/14 8:27:04.713 PM WindowServer[90]: CGXGetConnectionProperty: Invalid connection 100615
    8/13/14 8:27:04.713 PM WindowServer[90]: CGXGetConnectionProperty: Invalid connection 100615
    8/13/14 8:27:04.713 PM WindowServer[90]: CGXGetConnectionProperty: Invalid connection 100615
    8/13/14 8:27:04.995 PM WindowServer[90]: CGXSetWindowListSystemAlpha: Invalid window 5536 (index 0/1)
    8/13/14 8:27:04.996 PM Dock[296]: CGSOrderWindowListWithOperation
    8/13/14 8:27:04.996 PM Dock[296]: CGSOrderWindowList
    8/13/14 8:27:05.366 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.368 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.370 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.372 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.413 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.415 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.417 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.419 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.421 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.423 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.425 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.427 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.429 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.431 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1443bce0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.433 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.435 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.436 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.438 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.512 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.514 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.515 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.517 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.519 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.522 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.524 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.526 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.528 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.530 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.532 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.535 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.537 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.540 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.544 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.547 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.550 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.552 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.554 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.556 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.558 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.560 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.562 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.564 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x15b77e60. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.567 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.568 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.570 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.572 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.630 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.632 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.634 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.636 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.638 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.640 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.643 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.645 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.647 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.652 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.655 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.658 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.660 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.662 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.664 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.666 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.668 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.670 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.672 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.674 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.676 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.677 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x16f16990. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.679 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.681 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.683 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.685 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.732 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.735 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.737 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.741 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.743 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.746 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.750 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.752 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.755 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.
    8/13/14 8:27:05.758 PM Microsoft Word[7156]: CGBitmapContextGetData: invalid context 0x1559bdf0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a c

  • Adobe premiere cs6 suddenly EXTREMELY slow and CPU intensive

    Hi everyone,
    I'm editing candon 5d mk III footage (h.264 files) on my late 2011 MacBook pro. Here are the specs..
    240 gig SanDisk SSD harddrive (190 gigs free)
    500 Gig (250 gigs free)
    8 gigs ram
    2.4 ghz i5 processor
    Intel HD graphics 3000 graphics card
    I'm a wedding videographer and I am currently closing my last edits of the season. I have edited 20+ 45 minute videos on Adobe Premiere CS6 and have had absolutely no issues at all. I enjoy working on premiere so much that I've been trying to get my videographer friends to give a shot and simplify their workflows.
    Upon starting my second to last edit (same process as the other 18 videos I've done this season, organizing the footage within it's respective folder, loading it into premiere with the couples' choice in music and opening 4-5 new sequences based on the events of the day) I noticed that I was having a lot of trouble importing folders into my media bin. I had to import all of the footage unorganized because loading the folders "Preperation, Ceremony, Photos, Reception" with the footage within them would cause premiere to freeze and become unrepsonsive. So, finding no solution I added all the footage in no particular fashion. Just one large unorganized group. Then, while organizing the files into bins, I noticed even the smallest move would take several minutes to complete. Because I was working directly off of my hard drive I figured these kinds of delays would eventually catch up to me, so I moved all of my files to my HDD and decided to work on them there. The project itself continued to be extremely slow and started crashing regularly (especially when applying audio effects). After a few hours, I stopped being able to play 1080p video at all. It would jam and stutter so often it become unuseable. 720p video was the next to go along with my ability to render anything in less than 30 minutes - 1 hour. At last attempt to use premiere I was getting an "Unable to compile movie - Unknown Error" message when trying to render alpha channel things (lower third titles and things of the nature), my ability to change the resolution of the playback had disappeared (Going from full, 1/2 and 1/4 did nothing, it just remained at full quality) and finally doing anything in premiere caused it to use 300% of my CPU (based off of my Activity Monitors metering).
    Does anybody have any clue as to what could be happening to my machine/program? I have a yearly subscription to adobe's creative cloud service if that helps. Oh and I've tried moving my media cache's from my HDD to my SDD with little or no results. Don't know if that helps.
    Thank you to anyone who helps in advance. What I believe to be clean installs aren't doing anything so I'm hoping somebody can give me a hand.

    Sounds to me like specific media is dragging the Mac to a halt. (300%, really Apple? Isn't that like saying that my car can go up to 90mph, but last night I drove it at 300% speed, 270mph)
    Some things to trouble shoot:
    Do you have any assets in the project that are loaded directly from strange devices, like a SD card or CD audio? Any dynamic link media that may be problematic?
    Is there anything that makes this footage different than footage from successful projects?
    Can you work successfully with an old project?
    Can you successfully start a new project using different or less media?
    Is the 500 GB drive internal or external?
    One time I was sent out at from work to troubleshoot a system that would freeze up like yours. The guy was an idiot and rude client that demanded that someone from our facility help him fix his own project. He said that he had been troubleshooting for a day, and then had convinced his organization's IT guy that he needed a way over spec new pc to run Premiere.
    His system was fine. Within 3 minutes of checking media in his project, I saw that top track of the problem sequence had a video clip that was set to a speed of .01%, and he had the clip stretched for 24hours in the sequence. His project was supposed to be a 2 minute PSA. All his issues went away after removing the idiotic Day Long slow motion clip. He complained to my boss because I had laughed at him.
    I relate that story to illustrate that it could be a weird thing with you media or fx, just as well as a hardware or software issue.
    Good Luck

  • Retina display MBP has extremely slow wifi... why?

    Here's the scenario for my wifi issues with my mbp retina display. I have a regular 20Mb/s down Time Warner connection that I've been using for 2 years. My roommates' computers as well as my older 2010 MBP never had slow connectivity issues. The things I'm experiencing on my MBP now are:
    - extremely slow speeds where even Google.com fails to load at times, streaming videos buffer every 15 seconds, I can't play diablo 3 anymore because it keeps giving me a time-out message (lol), my instant messenger times out so I have to reconnect.
    I tried to diagnose my issue but going to any speedtest shows that my connection has a download speed of 20Mb/s which makes sense and probably has nothing to do with the slow/dc issue.
    As of now, the only temporary remedy is to disconnect my wifi and reconnect (every 10-15 minutes), and I'm pretty sure no one would be content with this fix.
    Is there any other diagnosis tool that I can use here to see what's going on? Anyone else have this issue?
    (I've updated my software to the latest updates).
    Thanks.
    (... wow even as I submit this post, my connection timed out. Luckily this forum saves my last version of the post so whew)

    I'm also having the same issue. The applecare folks acted like they've never heard about it (seriously?) and had me do some stupid things like deleting all the other networks out of the list but the one I was using (she actually tried to tell me that the computer would be "confused" by 5 computers in my known network list).
    I just took it to the genius bar, and they ran diagnostics on it, and it's working just fine. In their store, using their network, I was getting 12 mbps. At my mom's house (who doesn't pay for the fastest speeds), I was getting 9 mbps. Here at my house, where every other computer (including my 2007 macbook) is getting 20 mbps, I am getting LESS THAN ONE.
    My shiny new computer is completely unusable. It has nothing to do with bluetooth. It has something to do with an incompatibility with the new router my husband bought two days ago (Linksys E1200). Before that, I think it was okay. I am going to have him switch back to the old router and see if that solves anything.
    But SERIOUSLY, Apple? I'm about to send it back, too. I am VERY disappointed. Oh, and when the wireless radio is going nuts, my battery life suffers tremendously. I am getting nowhere near 7 hours. More like 2. And that's with bluetooth turned off, and the screen dimmed.
    Oh, and an addition, I am running Mountain Lion. My computer just arrived last Monday. I've already installed all system updates. I even had them re-install Mountain Lion at the Apple Store. I think my little Betsy is going to have to be replaced. :-(

  • USB connection suddenly extremely slow

    As I ususally have manny film, series on my external hard drive connected to my Airport Extreeme, I suddenly got a big supprise when the speed suddenly got extremely slow. Not possible to use it for anything. The internet connection is however perfect.
    As it has allways functioned perfectly for me I don´t know what to do. It was about that time I uppdated the Java pack resently submitted by Apple. But I can´t see why this should have aything to do with this.
    Has anyone had any simmilar problems, and what is the remedy. I am all blank....

    Keep in mind that the very first device you connect will determine the default speed for the entire USB bus.  So, if you boot up the MBP, log in, and plug in a USB2 device, then the bus will never operate faster than USB2.  You would then need to reboot the computer, and first connect the USB3 device to ensure the bus steps up to USB3 speeds for USB3 devices.
    Also, make sure you are using a USB3 compatible cable with any USB3 devices to get max. transfer speeds.
    see http://support.apple.com/kb/HT5172

  • Sudden EXTREME slowness, crashing

    I was using my Macbook Pro today for just regular stuff, playing some music, when suddenly it slowed down to a really ridiculous speed. I double-clicked on a song in iTunes, it went to the pinwheel and took 15 seconds before the song played. I figured I would restart, so I did and now the computer is literally slower than I could have imagined.
    At first reboot it sat at the Apple logo loading screen for a long time, to the point where I turned it off and let it sit for a moment, then turned it back on. For the next five or so off / on cycles it displayed a blank light-blue screen and nothing else, not responding to any kind of input. Holding down the button to get to the boot menu to choose between Windows and Mac didn't work.
    Finally I left it for quite a long time and it managed to boot up to the login screen after about 30 minutes of loading. I managed to type in my password (which took awhile, it went to pinwheel for about 10 seconds before recognizing keyboard inputs). Another 10 - 15 minutes before it displayed the desktop and dock, then another 5 minutes before it displayed the top menu.
    It continued to run extremely slow, and over the course of the next hour I managed to open up Disk Utility and Activity Monitor. Activity Monitor shows random tasks as "Not Responding", as does Force Quit. Different tasks at different times show up red, including SystemUI, iTunes, and Disk Utility itself.
    I attempted to verify the disk, it worked for a moment, displayed a few errors and then stopped with the message "Underlying task failed", or something to that effect. I tried to Verify Disk permissions and it threw a long list back at me before freezing. Over the next 20 minutes I managed to force quit Disk Utility, and now my computer is apparently entirely frozen.
    The Windows drive also didn't appear on the desktop, and under Disk Utility my windows partition showed up greyed out and d03 or something like that.
    I'm going to try to restart with the install disk and run Disk Repair off of it and see if it will work, but I was hoping someone out there had an idea of what's gone wrong with my MBP before I just wipe the whole thing clean and start over...if I can.
    It's a Macbook Pro, one of the first-iteration Macbook Pros that came out a few years ago.
    Thanks a bunch.

    Thanks for the quick reply. I tried restarting with the install disk, but it failed to repair with the same error. I'm going to have to send it in now anyway because the install disk is now stuck in there. Hopefully (with my luck) it won't spontaneously explode before I can get it to an Apple Store to have them send it back, I guess.
    Thanks.

  • Mail in Safari is extremely slow, it's fine in Firefox. What happened?

    Aside from a problem viewing some video (i guess I'm missing a driver or something), Mail in Safari has been extremely slow. I go in with Firefox and everything is fine. What happened?

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Test.

  • Lightroom 4 suddenly extremely slow after download free trial of Lr5

    Hi I have Lightroom 4 and last night I downloaded Lightroom 5 with a free trial for 30 days, but I couldn't work on that because was very slow, so I uninsalled Lr5,  but now I can't work in my Lr4, it is extremely slow and it was perfect before. I have a MacBook Pro OS x Lion 10.75, 2.8 Ghz Intel Core i7, storage of 591GB free out of 749 and I have all my photos in an external drive "my passport" with 737 GB free out of 999 GB. Could you please help me??? I am very upset and desperate, I have been trying to work for 6 hours already, something that will take me only 30 minutes, and I can't even finish it. Please help me!! Thank you.  

    Get rid of Trusteer. It doesn’t work well under Mac OS.
    Trusteer Rapport Uninstall
    Activity Monitor - Mavericks  also Yosemite
    Activity Monitor in Mavericks has significant changes
    Performance Guide
    Why is my computer slow
    Why your Mac runs slower than it should
    Slow Mac After Mavericks
    Things you can do to resolve slowdowns  see post by Kappy

  • Computer suddenly extremely slow. Now grey screen.

    Macbook Pro, OS X 10.6.8, purchased late 2009
    Almost overnight, the computer became extremely slow when running apps. I tried multiple solutions -- verifying, repairing, etc. Yet as of now, its refusing to boot. Is there a way of restoring the system through time machine on an external HD on Mountain Lion? Does anyone strongly suspect (as I do) that this is the last gasp for the hard drive and a new one is in order? Or is the situation perhaps even more critical given the age of the machine?

    It booted just now after many attempts, but is still extremely slow and unresponsive.
    Once again, please: any help with the matter would be immensely appreciated. Would putting in a new hard drive solve the issue? I read somewhere that moving your computer when it's running can cause the drive to get corrupted. And in fact, that is more-or-less when my problems began.
    Or should i try restoring the computer first through the OS X DVD?

  • Macbook Pro 10.7 - Suddenly extremely slow and freezes

    Hi, I've had my Macbook for about a year now and never had any problems up until now. All of a sudden today I turned on my Macbook Pro (running 10.7.1) and it took about a minute and 20 seconds to boot up. Once the desktop background picture shows up, the dock will come up about 5 seconds later, then the top bar 5 seconds later, then all of the icons on my desktop about 5 seconds later. If I click on ANYTHING the spinning beachball will come up and then changes back to the mouse icon in about a minute. I can't open any applications in the dock or open any folders, nothing happens and then the beachball comes back. I have tried booting in safe mode and that seems to work okay, but still a little slower than normal. Checked the activity monitor and nothing major seems to be going on. Reset PRAM, nothing changed. Checked disk utility and everything was fine. If anyone has any idea what might be wrong, please help me out here. I appreciate it, and thank you!

    This seems like a very common issue! I purchased the OS X Lion the very next day after its release.. used it for a few days on my Macbook Pro.. I also updated all my applications (adobe, office, ilife etc) to make it run smoothly and compatible on the Lion.. but after a month or so, my machine became like the first macintosh Mr. Jobs made.. VERYYY SLOOWW!!!!! it would take 5-7 minutes to boot up, and the dock wud also take time!! The beach ball occupied my screen so much time, that I even forgot how the normal cursor looked like!
    I decided to upgraded my RAM to 8GB, but same problem! I had like thousands of mails and didnt even find any solution to downgrade back to leopard!
    I wasted almost a week to re-install snow leopard and all my applications!! and luckily google apps saved me with all my mails! Since then I have been ignoring every single update! I am happy with snow leopard!!
    LION IS VERYY BUGGY! I wasted my $30 odd bucks!!! I often search for freezing beach ball lion!!! and seems there is no solution till now... NEVER GOING TO UPGRADE!!!

  • Suddenly extremely slow Time Machine backups on Time Capsule

    My Time Machine backups on Time Capsule have been pretty good in the last few months. In the last week or so I am seeing painfully slow backups. It's not the preparing or the finishing phase, it's the backup itself. Data transfer for other apps is fine. The backup transfers about 50 Kb per second. In more than 3 hours it backed up about 600 Mb. Here's what I get from the Console:
    11/26/08 4:22:07 PM /System/Library/CoreServices/backupd[1281] No pre-backup thinning needed: 1.28 GB requested (including padding), 730.31 GB available
    11/26/08 5:50:47 PM /System/Library/CoreServices/backupd[1281] Bulk setting Spotlight attributes failed.
    11/26/08 6:12:40 PM /System/Library/CoreServices/backupd[1281] Bulk setting Spotlight attributes failed.
    11/26/08 6:51:37 PM /System/Library/CoreServices/backupd[1281] Bulk setting Spotlight attributes failed.
    11/26/08 7:05:44 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:05:46 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:05:46 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:07:05 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:07:05 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:09:06 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:09:13 PM /System/Library/CoreServices/backupd[1281] Error: (-39) SrcErr:YES Copying (null) to (null)
    11/26/08 7:09:14 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:09:14 PM /System/Library/CoreServices/backupd[1281] Unable to rebuild path cache for source item. Partial source path:
    11/26/08 7:12:15 PM /System/Library/CoreServices/backupd[1281] Bulk setting Spotlight attributes failed.
    Any clue? What happened? (I did an Airport-related upgrade recently)
    My set up is a Time Capsule and an Airport Extreme.

    Well, this link has a video describing a downgrade:
    http://www.mefeedia.com/entry/airport-extreme-and-time-capsule-firmware-downgrad ing/11537477/
    It has been mentioned in apple discussions here as well, but with no other information than that it has helped some people.
    Message was edited by: Karl Ivar Dahl

  • Internet suddenly extremely slow on windows 7 partition.

    Hello all,
    Here is my situation: I am connected to the internet via ethernet, Im on a current generation iMac, and Im running windows 7 through bootcamp. About an hour ago, I logged in on my windows partition to find that my internet connection was running unnaturally slow. I tested its speed via an online speed test to find that my ping was an unexpected 479ms, where as, when I tested it on my mac partition, it was a mere 25m. The most peculiar thing about this issue is that im earlier this today (two hours earlier) my connection was perfectly fine.
    The other piece of information I have is that on my windows partition, my connection will spontaniously die about 10-30 minutes after launch very freuquently. To restore my connection, about 70% of the time I can simply unplug and replug in the ethernet cable, but if that doesnt work, I have to pull a full restart. I've only noticed this on my windows partition, though I generally game on windows also, so its possible its just my cable, and I dont notice it while on my mac partition.
    Thanks for your time.
    -Will

    UPDATE: I just checked and my connection speed has been miraculously restored to a ping of 30ms. Though if anyone has any ideas as to why this is happening, Id like to hear them in case this happens again.

  • MBP Running extremely slow

    I have had my MBP for about 2 years, and it started to run really slow this fall.  If someone could give me some tips or look at my EtreCheck, I'd appreciate the education so I can troubleshoot better in the future.
    Problem description:
    Macbook Pro mid-2012 is running really slow.
    EtreCheck version: 2.1.5 (108)
    Report generated December 27, 2014 at 2:49:35 PM CST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,1
      1 2.6 GHz Intel Core i7 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000
      NVIDIA GeForce GT 650M - VRAM: 1024 MB
      Color LCD 1344 x 840
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 17:8:39
    Disk Information: ℹ️
      APPLE HDD HTS547575A9E384 disk0 : (750.16 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 748.93 GB (394.86 GB free)
      Core Storage: disk0s2 749.30 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/sysctl.conf - Exists
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/AVG AntiVirus.app
      [loaded] com.avg.Antivirus.OnAccess.kext (2015.0 - SDK 10.8) [Support]
      /Library/Application Support/VirtualBox
      [loaded] org.virtualbox.kext.VBoxDrv (4.3.14) [Support]
      [loaded] org.virtualbox.kext.VBoxNetAdp (4.3.14) [Support]
      [loaded] org.virtualbox.kext.VBoxNetFlt (4.3.14) [Support]
      [loaded] org.virtualbox.kext.VBoxUSB (4.3.14) [Support]
      /Library/Extensions
      [not loaded] foo.tun (1.0) [Support]
    Problem System Launch Agents: ℹ️
      [failed] com.apple.askpermissiond.plist
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [running] com.avg.Antivirus.gui.plist [Support]
      [loaded] com.coupons.coupond.plist [Support]
      [running] com.kodak.BonjourAgent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [running] com.quest.QuestAgent.plist [Support]
      [running] com.robohippo.HippoConnectAgent.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.absolute.rpcgeo.plist [Support]
      [running] com.absolute.rpcnet.plist [Support]
      [loaded] com.adobe.fpsaud.plist [Support]
      [invalid?] com.adobe.SwitchBoard.plist [Support]
      [running] com.avg.Antivirus.infosd.plist [Support]
      [running] com.avg.Antivirus.services.plist [Support]
      [loaded] com.cyberghostsrl.CyberghostPrivilegedHelper.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [loaded] com.oracle.java.JavaUpdateHelper.plist [Support]
      [not loaded] com.robohippo.HippoConnectDaemon.plist [Support]
      [not loaded] org.virtualbox.startup.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.adobe.ARM.[...].plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [loaded] com.kodak.KODAK AiO Firmware Updater.plist [Support]
      [loaded] com.kodak.KODAK AiO Software Updater.plist [Support]
      [running] com.pia.pia_manager.plist [Support]
      [running] com.spotify.webhelper.plist [Support]
      [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist [Support]
      [not loaded] org.virtualbox.vboxwebsrv.plist [Support]
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Dropbox Application (/Applications/Dropbox.app)
      Canon IJ Network Scanner Selector EX ApplicationHidden (/Applications/Canon Utilities/IJ Network Scanner Selector EX/Canon IJ Network Scanner Selector EX.app)
    Internet Plug-ins: ℹ️
      Default Browser: Version: 600 - SDK 10.10
      SlingPlayer: Version: Unknown - SDK 10.8 [Support]
      AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      SharePointBrowserPlugin: Version: 14.3.7 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
      CouponPrinter-FireFox_v2: Version: 5.0.5 - SDK 10.6 [Support]
      EPPEX Plugin: Version: 4.1.0.0 [Support]
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    User internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 7.1 [Support]
    Safari Extensions: ℹ️
      AdBlock [Installed]
      iTube Studio [Installed]
      Turn Off the Lights [Installed]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Java  [Support]
    Time Machine: ℹ️
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 748.93 GB Disk used: 354.07 GB
      Destinations:
      My Passport [Local]
      Total size: 0 B
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
      Backup size 0 B < (Disk used 354.07 GB X 3)
    Top Processes by CPU: ℹ️
          9% iMovie
          8% CVMCompiler
          6% WindowServer
          4% ProTranscoderTool_sb
          2% parentalcontrolsd
    Top Processes by Memory: ℹ️
      601 MB Safari
      558 MB iMovie
      387 MB Image Capture Extension
      335 MB ocspd
      198 MB firefox
    Virtual Memory Information: ℹ️
      155 MB Free RAM
      3.71 GB Active RAM
      3.61 GB Inactive RAM
      1.09 GB Wired RAM
      17.49 GB Page-ins
      53 MB Page-outs
    Diagnostics Information: ℹ️
      Dec 27, 2014, 04:03:38 AM /Library/Logs/DiagnosticReports/QuickTime Player_2014-12-27-040338_[redacted].hang
      Dec 27, 2014, 03:55:29 AM /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2014-12-27-035529_[reda cted].crash
      Dec 27, 2014, 03:54:59 AM /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2014-12-27-035459_[reda cted].crash
      Dec 27, 2014, 03:29:29 AM /Library/Logs/DiagnosticReports/firefox_2014-12-27-032929_[redacted].hang
      Dec 27, 2014, 03:28:04 AM /Users/[redacted]/Library/Logs/DiagnosticReports/plugin-container_2014-12-27-03 2804_[redacted].crash
      Dec 27, 2014, 03:20:37 AM /Library/Logs/DiagnosticReports/firefox_2014-12-27-032037_[redacted].hang
      Dec 26, 2014, 09:45:57 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Finder_2014-12-26-214557_[reda cted].crash
      Dec 26, 2014, 09:45:57 PM /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2014-12-26-214557_[reda cted].crash
      Dec 26, 2014, 09:41:31 PM Self test - passed
      Dec 26, 2014, 04:02:02 AM /Users/[redacted]/Library/Logs/DiagnosticReports/CNSSelectorAgent_2014-12-26-04 0202_[redacted].crash

    Hello there Stevenafranco,
    If your Yosemite operating system is still running slower than expected, I would recommend performing a Safe Boot, then restart the computer and test it out for a bit first:
    OS X: What is Safe Boot, Safe Mode?
    ollow these steps to start up into Safe Mode.
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup sound, press and hold the Shift key. The Shift key should be pressed as soon as possible after startup, but not before the startup sound.
    Release the Shift key when you see the Apple logo appear on the screen.
    After the Apple logo appears, it may take longer than usual to reach the login screen. This is because your computer is performing a directory check as part of Safe Mode.
    To leave Safe Mode, restart your computer without pressing any keys during startup.
    If the issue persists, I would next recommend resetting your SMC, and this article will help you do that:
    Intel-based Macs: Resetting the System Management Controller (SMC)
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Suddenly extremely slow

    Hi all.
    Suddenly my Mac become very slow. Please help, Its been playing up for a while since I install adobe and then updates came through. I tried some free virus scan (one downloaded from apple store) but it is even worse then ever. I cannot even back anything up. some things i can't open and it would take hours.
    its Macbook Pro. OX 10.7.5. Lion. bought it August 2011.

    Your problem is excessive swapping of data between physical memory and virtual memory. You're not out of storage space.
    That can happen for two reasons:
    You have a long-running process with a memory leak (i.e., a bug), or
    You don't have enough memory installed for your usage pattern.
    Tracking down a memory leak can be difficult, and it may come down to a process of elimination. In Activity Monitor, select All Processes from the menu in the toolbar, if not already selected. Click the heading of the  Real Mem column in the process table twice to sort the table with the highest value at the top. If you don't see that column, select
    View ▹ Columns ▹ Real Memory
    from the menu bar.
    If one process (excluding "kernel_task") is using much more memory than all the others, that could be an indication of a leak. A better indication would be a process that continually grabs more and more memory over time without ever releasing it.
    If you don't have an obvious memory leak, your options are to install more memory (if possible) or to run fewer programs simultaneously.
    The next suggestion is only for users familiar with the shell. For a more precise, but potentially misleading, test, run the following command: 
    sudo leaks -nocontext -nostacks process | grep total
    where process is the name of a process you suspect of leaking memory. Almost every process will leak some memory; the question is how much, and especially how much the leak increases with time. I can’t be more specific. See the leaks(1) man page and the Apple developer documentation for details:
    Memory Usage Performance Guidelines: About the Virtual Memory System

Maybe you are looking for