[solved] Mount/unmount extremely slow (relatively)

When I first installed my system, mounting and unmounting took a relatively unnoticeable amount of time.  Now, mounting a single volume takes about a minute or more per volume, even for tmpfs volumes.  I don't seem to see any other performance problems with my system other than this.
The change happened rather suddenly after I shredded a partition on my drive with one run of bytes (the overall size was about 100 GiB, but I've written several times that onto my drive).  If it makes any difference, the partition was the one that's right to the left of my root partition, but I doubt that anything flowed over.  The disk seems to be operating fine, and when I mount from live CDs, it takes the normal time.
Has anyone ever experienced this kind of problem before?  Do you know what I can do to fix it without reinstalling my system?  I tried reinstalling both the linux and util-linux packages, but that didn't seem to help.
EDIT: Problem's been solved.  To fix:
- Downgrade to util-linux 2.20-2.
- Save everything that you're working on.
- Run the following:
# echo 1 > /proc/sys/kernel/sysrq
# rm -rf /etc/mtab*
- Hold Alt + SysRq and then type out REISUB to reboot.
Last edited by RetroX (2011-10-08 19:09:26)

I'm not sure I'm knowledgeable enough to help too much, but you might like to have a look at the strace command to debug this. It lets you see what calls a program makes to the kernel. You can compare its output on your arch system to what your live CD gives you.
Mounting an ext2 disk on my machine produces this summary (the -c option).  I got fairly varied output each time I ran the command, but hopefully yours is more consistent.
$ strace -c mount /dev/sdb2 /mnt/Backup/
% time seconds usecs/call calls errors syscall
100.00 0.000018 1 18 mmap2
0.00 0.000000 0 101 read
0.00 0.000000 0 4 write
0.00 0.000000 0 20 6 open
0.00 0.000000 0 14 close
0.00 0.000000 0 1 execve
0.00 0.000000 0 3 time
0.00 0.000000 0 1 1 mount
0.00 0.000000 0 1 1 access
0.00 0.000000 0 3 brk
0.00 0.000000 0 2 1 ioctl
0.00 0.000000 0 1 umask
0.00 0.000000 0 11 10 readlink
0.00 0.000000 0 5 munmap
0.00 0.000000 0 1 uname
0.00 0.000000 0 7 mprotect
0.00 0.000000 0 91 _llseek
0.00 0.000000 0 2 prctl
0.00 0.000000 0 2 rt_sigprocmask
0.00 0.000000 0 5 3 stat64
0.00 0.000000 0 2 lstat64
0.00 0.000000 0 11 fstat64
0.00 0.000000 0 3 getuid32
0.00 0.000000 0 2 getgid32
0.00 0.000000 0 3 geteuid32
0.00 0.000000 0 2 getegid32
0.00 0.000000 0 1 set_thread_area
0.00 0.000000 0 1 fadvise64_64
0.00 0.000000 0 1 fstatat64
100.00 0.000018 319 22 total
The summary is probably more interesting initially, but the full dump may be useful later (replace -c with -C for the the full dump combined with the summary).
Edit:
Another similar program you might like to look at is ltrace, which shows library calls (this article put me onto it).
$ ltrace -c mount /dev/sdb2 /mnt/Backup
% time seconds usecs/call calls function
48.11 0.046996 46996 1 blkid_do_safeprobe
22.59 0.022073 49 445 strlen
15.04 0.014694 28 507 strncmp
3.45 0.003375 3375 1 mount
2.37 0.002319 2319 1 blkid_probe_set_device
2.10 0.002048 2048 1 mnt_update_table
1.21 0.001181 1181 1 blkid_free_probe
1.01 0.000989 26 37 __strdup
0.39 0.000383 383 1 mnt_update_set_fs
0.39 0.000382 76 5 __xstat64
0.37 0.000358 358 1 setlocale
0.29 0.000287 26 11 free
0.28 0.000278 139 2 open64
0.25 0.000247 123 2 close
0.20 0.000198 49 4 readlink
0.19 0.000181 25 7 __errno_location
0.14 0.000136 136 1 blkid_evaluate_spec
0.11 0.000109 27 4 strchr
0.11 0.000108 27 4 strtok
0.11 0.000104 26 4 sigdelset
0.10 0.000097 48 2 sigprocmask
0.09 0.000085 28 3 __snprintf_chk
0.08 0.000080 26 3 strrchr
0.07 0.000065 65 1 access
0.06 0.000060 30 2 sigfillset
0.06 0.000054 54 1 __lxstat64
0.05 0.000051 51 1 getuid
0.05 0.000050 50 1 mnt_fs_set_options
0.05 0.000049 49 1 umask
0.05 0.000047 47 1 geteuid
0.05 0.000047 47 1 blkid_new_probe
0.04 0.000040 40 1 blkid_probe_lookup_value
0.04 0.000039 39 1 blkid_probe_set_superblocks_flags
0.04 0.000037 37 1 blkid_probe_enable_superblocks
0.04 0.000036 36 1 mnt_new_fs
0.04 0.000035 35 1 getopt_long
0.03 0.000034 34 1 mnt_init_debug
0.03 0.000034 34 1 mnt_fs_set_source
0.03 0.000033 33 1 bindtextdomain
0.03 0.000032 32 1 mnt_fs_set_fstype
0.03 0.000032 32 1 mnt_free_update
0.03 0.000031 31 1 mnt_new_update
0.03 0.000031 31 1 textdomain
0.03 0.000030 30 1 malloc
0.03 0.000030 30 1 __cxa_atexit
0.03 0.000029 29 1 mnt_free_fs
0.03 0.000028 28 1 mnt_fs_set_target
0.03 0.000028 28 1 mnt_update_get_mflags
100.00 0.097690 1074 total
Last edited by splondike (2011-10-06 12:21:07)

Similar Messages

  • [SOLVED] KSP Running Extremely Slow

    So I can't really pinpoint the problem but Kerbal Space Program is running very slow.  I have turned all the graphics settings down in the game as low as possible, but with resonably sized rockets and space stations the game is pretty much unplayable.  I have an AMD A10-5800K APU and 6GB RAM.  My last computer had an AMD Phenom II and it ran the same simulations just fine (on Ubuntu).  I was wondering if there was some setting I am missing or something slowing down my CPU because from what I have been reading online, others are playing just fine with the AMD A10.  I can provide more system info on request but didn't really know where to start let alone what info is needed.  Any suggestions at all will be appreciated.  Thank you.
    Last edited by whahn1983 (2013-08-20 06:01:38)

    7660 is a lot more slower than 6970.. and its using only ddr3 also.
    but i dont think it should be the reason why its extremly slow
    my bet  is that this hardware isnt well supported with the opensource drivers yet.
    if you have the possibility to try those (buggy) fglrx drivers and see the results then.
    and report back.

  • Numbers 09 (Rel. 2.1(436)) extremely slow under Lion

    I just gave Numbers a try with a relatively low complex mortgage calculation - 13 columns, 200 rows - simple formulas (if ... then ... else, difference in dates, simple multiplications).
    Numbers is extremely slow - whenever something is changed in the tables, Activity Monitor shows 100% CPU usage and the SBOD appears - it's nearly not possible to work. Restart of my MacBook Pro or Numbers allone has not made anything better. Has anybody made the same observations, i submitted feedback to Apple, but i have the feeling, that nobody is reading it (3 years ago i submitted the wish for goal seek for Numbers or some sort of Automator support)
    The dilemma is:
    Many of my coworkers now have iPad and iPhone and could use Numbers (i know there are some Excel Simulations for iPad and iPhone around, but these are not so nice to use) - therefore i want to provide the previos Excel Sheets as Numbers documents - but with this performance it's impossible to use Numbers.

    "200 rows of formulas in a Numbers document might be considered to be large ..." - that's complete nonsense - in the beginning of my "Apple History" i had a Mac IIsi, on this machine there was a spreadsheet software running, it's name was Ragtime - i did exact the same calculations which i now want to redo with Numbers - the IIsi with 8 MB of RAM was crunching trough these calculations a lot faster than my Macbook Pro - and there were not only 200 rows to calculate - (to be exact it were 300 + (4 x 25) rows - calculation 300 months + 4 quarters per year).
    Apple builds very nice hardware (most of the time), Apple designs very nice software (also most of the time) - but sometimes Apple Software is truly unusable if one decides just to get one step ahead the absolute-zero-level-hobby-user.
    Of course i know the phrase "horses for courses" and everybody will scratch his head "why does this guy absolutely want to use Numbers for this task and not the old Excel?" - i can tell you that: Because Excel has very bad layout options - in Numbers i can produce very nice layouts, free movable tables, integrated pages which sum up more sub-tables ... - yes, thats also possible with Word an Excel but not in this intuitive way Apple has come up.
    BUT - since Numbers is (and keeps) so dramatically slow it's barely unusable - it makes me sad, that i will never see Numbers being used in a business environment.
    PS: please excuse my rough English, i'm from Austria.

  • Apple TV wifi connexion gets extremely slow in 1 day. Reboot solves it...

    Hi,
    I have an ATV 3. The setup is simple, no jailbreak. Connected on an impressively fast wifi N connexion. Logged in my iTunes account, with Home Sharing with my MacMini, always on. ATV set up to never go into sleep mode. Airfoil on my MacMini and streaming the sound of ATV into Airfoil by Airplay (tried to deactivate it and my issue described below is still here).
    Now, when I start my ATV and stream an iTunes TV show I bought (not through HomeSharing), it's a perfect experience, the playback starts in 1 sec, 1080p, wow.
    The next day, I do the same thing, start streaming a show on iTunes (not through HomeSharing), and this time, it says the show will start in 33 minutes!!! I reboot my ATV and it's blazing fast again.
    I've had this observation maybe 10 times, tried different things, including the 'never go to sleep ATV setting' thing...
    ATV is great but if I have to unplug and replug it every time, it's a real pain!
    Any idea? Someone already experienced such things? (fast connexion at first, then extremely slow the next day until unplug/replug solves it)
    Thanks a lot
    Cédric

    Hi,
    I have an ATV 3. The setup is simple, no jailbreak. Connected on an impressively fast wifi N connexion. Logged in my iTunes account, with Home Sharing with my MacMini, always on. ATV set up to never go into sleep mode. Airfoil on my MacMini and streaming the sound of ATV into Airfoil by Airplay (tried to deactivate it and my issue described below is still here).
    Now, when I start my ATV and stream an iTunes TV show I bought (not through HomeSharing), it's a perfect experience, the playback starts in 1 sec, 1080p, wow.
    The next day, I do the same thing, start streaming a show on iTunes (not through HomeSharing), and this time, it says the show will start in 33 minutes!!! I reboot my ATV and it's blazing fast again.
    I've had this observation maybe 10 times, tried different things, including the 'never go to sleep ATV setting' thing...
    ATV is great but if I have to unplug and replug it every time, it's a real pain!
    Any idea? Someone already experienced such things? (fast connexion at first, then extremely slow the next day until unplug/replug solves it)
    Thanks a lot
    Cédric

  • [solved] Opera,firefox and wget extremely slow (dial-up style)

    Hi there,
    this is the first time i've tried Arch Linux (64bit), so bare with me please if i've got something stupidly wrong.
    The Problem: Both Opera and Firefox are both extremly slow when opening websites. It "feels" like some kind of DNS problem, because the initial time before anything loads is quite long, but after that it goes quite quickly (though still a bit sluggish).
    But here's the catch: Ping and loading websites in links work both perfectly fast.
    For example accessing google.com in firefox: 40 seconds until page is loaded. In links about 1 second.
    Wget seems to suffer from the same problem:
    wget google.com
    --2008-12-22 03:29:23-- http://google.com/
    Resolving google.com...
    It just takes a lot of time.
    Can anyone help me with this?
    Last edited by Deathcrow (2008-12-22 12:48:26)

    Ok, i had a hunch:
    http://wiki.archlinux.org/index.php/IPv … the_Module
    Adding the line to modprobe.conf solved the Opera and Firefox issues.
    The behaviour of wget stays the same. Its still very very slow.
    Programs that seem to be affected:
    -wget
    - ssh
    - openntpd
    Edit: Alright, the remaining issues were real network issues on my side. They are fixed now.
    Last edited by Deathcrow (2008-12-22 12:49:03)

  • My macbook pro (late 2011) is extreme slow, freezing, crashing and lagging too often.

    I am new to the forum, I hope this is the good topic to post my problem.
    I have a late 2011 Macbook Pro, and it is getting slower and slower. The performance was bad with Mavericks as well, but now, with Yosemite installed, it is much more worse. I have never reinstalled my system (only upgraded the osx), so it is an almost 3 years old setup. In that time I have installed a lot of applications, and also deleted a lot. About a year ago I upgraded the RAM, but didn't help too much. Now with Yosemite my startup time is more than 5 minutes, and sometimes the startup freezes (and I have to push the power button long to retry). Safari with 5-10 tabs is extreme slow, and lagging when I switch tabs or open new ones. To launch a new app, for example skype, i have to wait 1-2 minutes. Everything is slow. Sometimes my finder crashes, and works only if I restart the macbook. Another example: if I open the downloads folder in Finder, I have the spinning loading icon for about 20-30 seconds, and just after this time can I see the content of the folder.
    My console is full of errors, I get new records in every single seconds. I repaired the disk permissions, deleted safari cache, history, etc. but nothing helped.
    Many people here attached an "etrecheck" record for their threads, I downloaded the app, and made one scan, you can see my results here, I hope someone with more technical skills can help me!
    Thank you in advance!
    (and sorry for my english - it is not my mother language)
    EtreCheck version: 2.1.2 (105)
    Report generated 2014. december 11. 12:59:29 CET
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.4 GHz Intel Core i5 CPU: 2-core
      10 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1280 x 800
      SyncMaster 1680 x 1050 @ 60 Hz
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:55:58
    Disk Information: ℹ️
      TOSHIBA MK5065GSXF disk0 : (500,11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 498.88 GB (130.97 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Computer, Inc. IR Receiver
      Apple Inc. FaceTime HD Camera (Built-in)
      StoreJet Transcend StoreJet Transcend 2 TB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted> : 210 MB
      Transcend 2TB (disk2s2) /Volumes/Transcend 2TB : 2.00 TB (1.91 TB free)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/hosts - Count: 67
    Gatekeeper: ℹ️
      Anywhere
    Kernel Extensions: ℹ️
      /Applications/KeyRemap4MacBook.app
      [loaded] org.pqrs.driver.KeyRemap4MacBook (9.3.0 - SDK 10.9) [Support]
      /Applications/PMHMac.app
      [not loaded] com.sony.driver.dsccamFirmwareUpdaterType00 (1 - SDK 10.5) [Support]
      /Applications/Parallels Desktop.app
      [not loaded] com.parallels.kext.hidhook (8.0 18494.886912) [Support]
      [not loaded] com.parallels.kext.hypervisor (8.0 18494.886912) [Support]
      [not loaded] com.parallels.kext.netbridge (8.0 18494.886912) [Support]
      [not loaded] com.parallels.kext.usbconnect (8.0 18494.886912) [Support]
      [not loaded] com.parallels.kext.vnic (8.0 18494.886912) [Support]
      /Applications/Toast 11 Titanium/Spin Doctor.app
      [not loaded] com.hzsystems.terminus.driver (4) [Support]
      /Applications/Toast 11 Titanium/Toast Titanium.app
      [not loaded] com.roxio.BluRaySupport (1.1.6) [Support]
      /Library/Extensions
      [not loaded] com.sony.driver.dsccamDeviceInfo00 (1 - SDK 10.7) [Support]
      /Library/StartupItems/DoubleCommand
      [not loaded] com.baltaks.driver.DoubleCommand (1.7 - SDK 10.8) [Support]
      /System/Library/Extensions
      [loaded] org.dungeon.driver.SATSMARTDriver (0.8 - SDK 10.6) [Support]
      /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
      [not loaded] com.roxio.TDIXController (2.0) [Support]
    Startup Items: ℹ️
      DoubleCommand: Path: /Library/StartupItems/DoubleCommand
      Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [failed] com.adobe.CS4ServiceManager.plist [Support] [Details]
      [failed] com.adobe.CS5ServiceManager.plist [Support] [Details]
      [running] com.bjango.istatmenusagent.plist [Support]
      [running] com.bjango.istatmenusnotifications.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [running] com.sony.SonyAutoLauncher.agent.plist [Support]
      [loaded] org.pqrs.KeyRemap4MacBook.server.plist [Support]
      [failed] XR_3045NI_Startup_Fax.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [invalid?] com.adobe.SwitchBoard.plist [Support]
      [running] com.bjango.istatmenusdaemon.plist [Support]
      [loaded] com.bombich.ccc.plist [Support]
      [loaded] com.cocoatech.pathfinder.SMFHelper6.plist [Support]
      [loaded] com.google.keystone.daemon.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]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [invalid?] com.citrixonline.GoToMeeting.G2MUpdate.plist [Support]
      [running] com.spotify.webhelper.plist [Support]
      [running] homebrew.mxcl.mysql.plist [Support]
    User Login Items: ℹ️
      Flux Alkalmazás (/Applications/Flux.app)
      iTunesHelper AlkalmazásHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      GrowlHelperApp Alkalmazás (/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app)
      EvernoteHelper Alkalmazás (/Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app)
      Caffeine Alkalmazás (/Applications/Caffeine.app)
      Google Drive Alkalmazás (/Applications/Google Drive.app)
      Dropbox Alkalmazás (/Applications/Dropbox.app)
      DVDAuthorizeHelper Alkalmazás (/Users/[redacted]/Library/Application Support/Helper/DVDAuthorizeHelper.app)
      RescueTime UNKNOWNHidden (missing value)
      Alfred 2 UNKNOWN (missing value)
      SpeechSynthesisServer Alkalmazás (/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app)
      Skype Alkalmazás (/Applications/Skype.app)
      uTorrent Alkalmazás (/Applications/uTorrent.app)
      Xmarks for Safari Alkalmazás (/Applications/Xmarks for Safari.app)
    Internet Plug-ins: ℹ️
      nplastpass: Version: 2.0.11 [Support]
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 2.4.4.2 [Support]
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 15.0.0.246 - SDK 10.6 [Support]
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Support]
      Flash Player: Version: 15.0.0.246 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.235
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      NP_2020Player_IKEA: Version: 5.0.94.0 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 [Support]
      GarminGpsControl: Version: 4.0.4.0 Release - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.0.0 [Support]
      ViewRightWebPlayer: Version: 3.5.0.0 [Support]
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
    User internet Plug-ins: ℹ️
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Support]
      Google Earth Web Plug-in: Version: 7.1 [Support]
    Safari Extensions: ℹ️
      ResponsiveResize
      Save to Pocket
      Awesome Screenshot
      LastPass
      feedly
    3rd Party Preference Panes: ℹ️
      Double Command  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      Growl  [Support]
      Java  [Support]
      MacFUSE (Tuxera)  [Support]
      Perian  [Support]
      Xmarks for Safari  [Support]
    Time Machine: ℹ️
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 498.88 GB Disk used: 367.91 GB
      Destinations:
      Transcend 2TB [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 367.91 GB X 3)
    Top Processes by CPU: ℹ️
          21% WindowServer
          12% Console
          8% parentalcontrolsd
          6% backupd
          6% Activity Monitor
    Top Processes by Memory: ℹ️
      462 MB mysqld
      290 MB mds_stores
      290 MB Safari
      204 MB Finder
      183 MB WindowServer
    Virtual Memory Information: ℹ️
      2.20 GB Free RAM
      6.06 GB Active RAM
      809 MB Inactive RAM
      1.66 GB Wired RAM
      1.87 GB Page-ins
      0 B Page-outs
    Diagnostics Information: ℹ️
      Dec 11, 2014, 09:38:41 AM iMovie_2014-12-11-093841_[redacted]s-MacBook.hang
      Dec 11, 2014, 12:04:08 PM Self test - passed

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. 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 test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. 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 the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB ' com.adobe.AAM.Updater-1.0 com.adobe.AAM.Updater-1.0 com.adobe.AdobeCreativeCloud com.adobe.CS4ServiceManager com.adobe.CS5ServiceManager com.adobe.fpsaud com.adobe.SwitchBoard com.adobe.SwitchBoard com.apple.aelwriter com.apple.AirPortBaseStationAgent com.apple.FolderActions.enabled com.apple.installer.osmessagetracing com.apple.mrt.uiagent com.apple.ReportCrash.Self com.apple.rpmuxd com.apple.SafariNotificationAgent com.apple.usbmuxd com.citrixonline.GoToMeeting.G2MUpdate com.google.keystone.agent com.google.keystone.daemon com.microsoft.office.licensing.helper com.oracle.java.Helper-Tool com.oracle.java.JavaUpdateHelper com.oracle.java.JavaUpdateHelper org.macosforge.xquartz.privileged_startx org.macosforge.xquartz.privileged_startx org.macosforge.xquartz.startx ' ' 879294308 4071182229 461455494 3627668074 1083382502 1274181950 1855907737 2758863019 1848501757 464843899 3694147963 1233118628 2456546649 2806998573 2778718105 2636415542 842973933 2051385900 3301885676 891055588 998894468 695903914 1443423563 4136085286 523110921 2883943871 3873345487 ' 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/faceb/s/(at\.)[^.]+/\1NAME/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: (E[^m]|[^EO])|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<10) print "com.apple.";} ' ' { sub(/ :/,"");print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:.+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { split("'"${p[41]}"'",b);split("'"${p[42]}"'",c);for(i in b) print b[i]".plist\t"c[i];if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"cksum "F|getline C;split(C, A);C="checksum "A[1];"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text(, with v.+)?$|(Bo|PO).+ sh.+ text ex|XM)/) F=F" ("T", "C")";else F=F" ("C")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9|"sort|uniq";} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */   /;' ' s/^.+ |\(.+\)$//g;p ' '/\.(appex|pluginkit)\/Contents\/Info\.plist$/p' ' /2/{print "WARN"};/4/{print "CRITICAL"};' ' /EVHF|MACR|^s/d;s/^.+: //p;' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps crontab iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl smcDiagnose sysctl\ -n defaults\ read stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' pluginkit scutil dtrace profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$(RefProc): \$Message' -k Sender Req 'fsev|kern|launchd' -k RefProc Rne 'Aq|WebK' -k Message Rne 'Goog|ksadm|probe|Roame|SMC:|smcD|sserti|suhel| VALI|ver-r|xpma' -k Message Req 'abn|bad |Beac|caug|corru|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|NVDA\(|pagin|pci pa|proc: t|Roamed|rror|SL|TCON|Throttli|tim(ed? ?|ing )o|WARN' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '/S*/*/Ca*/*xpc* >&- ||echo No' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,Ex}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,In{p,ter},iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" -m 'L*/{Con*/*/Data/L*/,}Pref* -type f -size 0c -name *.plist.???????|wc -l' kern.memorystatus_vm_pressure_level '3>&1 >&- 2>&3' " -F '\$Time \$Message' -k Sender kernel -k Message CSeq 'n Cause: -' " );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents XPC\ cache Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors App\ extensions Lockfiles Memory\ pressure SMC Shutdowns );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};A'$((7+i))'() { v=` eval sudo "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};';done;A9(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "${s[63]}"<<<"$v"`&&C1 1 $1;};for i in 1 2 7 8;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;B1&&D73 19 53 67 55;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 54 12 56;D23 5 14 12 14;D22 6 36 13 15;D22 20 52 66 54;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D82 35 49 61 51;D82 11 17 17 20;for i in 0 1;do D82 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A8 18 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;B3 4 0 65;A3 14 6 32 0;B4 0 16 11;A1 26 50 64;B7 16;C3 52;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D73 21 0 32 19;D73 10 42 32 40;D82 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 20 32 25;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 21 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D83 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 10 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 21 48 49 49;B3 4 22 57;A1 21 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D12 4 51 32 53;D23 22 9 37 7;A9;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. 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.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. 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 test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Macbook Pro 2011 extremely slow wondering if hard drive failure

    Hello, I want to start off by saying I'm not a huge computer guru, so that is why I'm coming here first. My Macbook Pro worked very well for a year, and then it has slowed down drastically. I've always been a windows user so mac is kind of foreign to me, but I'm trying to learn.
    Some problems I've encountered are 1. Extremely slow running whether internet related, or just an application. I have checked the activity monitor and nothing is hogging up my memory. 2. Spinning wait cursor (rainbow circle) when I try to do ANYTHING. It takes minutes to start computer once it makes it to home screen. The circle just spins for a few minutes. Even just web surfing it's there. 3. Battery drains from 100% to less than 20% in 30 minutes, which again is annoying. 4. When battery drains the fan turns on and seems to drain battery even faster. 5. I get a lot of random errors forcing shut down of programs. I have ignored this problem for two years by not using my laptop or using it very minimally, but I am going to be needing a laptop again for school and not just my iPad and phone so I was planning on taking my macbook to genius bar, but wanted to check here first since Apple is an hour away. Plus I want to be able to use the piece of equipment that I spent a decent chunk of change on. I used time machine to back up everything today. I know its not a space issue as I have 300+ free GB on hard drive. I have tried to read through similar posts, but its overwhelming so I came here to post my own question.
    I ran disc utility and there were some errors, which were able to be corrected after a couple tries. Computer still slow though when trying to do anything and running rainbow circle.
    In recovery mode I reinstalled OSX
    I was finally able to install updates after completing the above that were not able to be installed before.
    I ran etre check, this is the report that came up:
    Problem description:
    Extremely slow computer, possible hard drive failure
    EtreCheck version: 2.0.11 (98)
    Report generated November 3, 2014 9:25:29 PM EST
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.4 GHz Intel Core i5 CPU: 2-core
      4 GB RAM
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      Mac OS X 10.7.5 (11G63) - Uptime: 0:6:50
    Disk Information: ℹ️
      Hitachi HTS547550A9E384 disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      disk0s1 (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (357.49 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5970H 
    USB Information: ℹ️
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple, Inc. MacBook Pro
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.0) Support
      /Users/[redacted]/Downloads/LCC Installer.app
      [not loaded] com.Logitech.Control Center.HID Driver (3.5.1 - SDK 10.0) Support
    Startup Items: ℹ️
      HP IO: Path: /Library/StartupItems/HP IO
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.coreservices.appleid.authentication.plist
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [running] com.Logitech.Control Center.Daemon.plist Support
      [invalid?] com.luthresearch.savvyconnectmenu.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [invalid?] com.luthresearch.scservice.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [failed] com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Dropbox Application (/Applications/Dropbox.app)
      SavvyConnect UNKNOWN (missing value)
      Google Chrome Application (/Applications/Google Chrome.app)
      HP Scheduler Application (/Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app)
    Internet Plug-ins: ℹ️
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.189
      QuickTime Plugin: Version: 7.7.1
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Growl  Support
      Java  Support
      Logitech Control Center  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          11% Safari
          3% WindowServer
          0% fontd
          0% Google Chrome
          0% ps
    Top Processes by Memory: ℹ️
      245 MB WebProcess
      206 MB System Preferences
      168 MB Safari
      99 MB mds
      82 MB Google Chrome
    Virtual Memory Information: ℹ️
      1.37 GB Free RAM
      1.57 GB Active RAM
      318 MB Inactive RAM
      1.03 GB Wired RAM
      436 MB Page-ins
      0 B Page-outs
    Basically I'm wondering if anything sticks out in this report. I was thinking it could be a possible hard drive failure. I know my computer has been dropped on the floor at least a few times. Thoughts are appreciated. Thank you for your patience.

    Eab, I feel your pain! I am replying simply to share my similar ongoing experience with my early 2011 17 inch MacBook Pro, running Mavericks with seeming ample hard drive space, [applications requiring less than 100GB, about 200GB data (total drive space of 500GB)] & 4GB RAM. (Disclaimer: I am not a wise or computer-savvy mac guru - simply a fellow traveler who has had a very similar set of problems - apps taking forever to load, rapid battery depletion & super overheated MacBook.  While I am a Genius Bar groupie, getting to the Apple store is, for me, akin to an antarctic polar expedition (i.e. problematic). Having spent endless hours struggling with a similar issue, I offer you a synopsis of my struggle/experience.
    STEPS TO DATE:
    1.Installed several memory utility programs (Daisy Disk &  MacCleanse) system
    maintenance program to regularly and thoroughly empty application caches (Adobe apps & internet browsers being tremendous hogs), identify and remove language elements and other redundant space hogs, etc.   Result: Small, but real improvement when I forced myself to perform a "scan and delete" session every second major computer run (typically about 6-8 hours in length). However, this did nothing to help the problems regularly detected when I run the Disk Utility which almost invariably demonstrates disk permissions that need to be repaired and, with increasing frequency, has demonstrated actual disk errors that require restarting and walking through a disk repair protocol. I did bring it to the Genius Bar where they kindly reinstalled Mavericks which they could do in about an hour versus the several hours that doing this at home requires.  This did identify that my RAM was, on fact, a limitation on the speed at which I could run certain apps.
    2. My next move was to install an additional 4GB of RAM. I bought the new RAM on eBay for about $90 because, with 3 kids equipped with MacBooks & iPhones, I simply couldn't afford the official Apple RAM. I even installed it myself, with the help of a YouTube video. Result: Giant improvement in speed (starting up or switching apps. If I had realized how simple it turned out to be, I would have done it well over a year ago. Some minor improvement in the overheating problem, but persistent problems with disk permissions continually requiring repair and periodic disk repairs (using Disk Utility) required.
    PLANNED FINAL INTERVENTION:
    3. I am purchasing and installing a solid state drive (ssd) and simply chucking the original hard drive, after considerable discussion with my savvier mac friends. It has become clear to me that, sadly, every hard drive has a finite life affected by a variety of factors. I am, in fact, hard on my equipment - running multiple graphic apps simultaneously, transferring massive GBs of data between my laptop, time capsule and an array of hard drives. I will let you know how it goes, but can share that the decision to get a solid state drive followed many conversations with multiple Mac guru-types (in the hope of saving you similar painful tribulations). The cost varies according to the size of the drive, but $400-$500 would buy a reasonable starting size. I am waiting for Black Friday sales, myself. Amazon (where I will likely purchase the ssd) is already offering a number of pre-Black Friday deals.  While I don't really feel like putting out that amount of cash, I reassure myself that a new drive will almost certainly solve the disk errors (with a solid state one offering more durability) & will help me prolong the life of my MacBook Pro by a couple of years hopefully. It beats buying a new Apple MacBook only three and a half years after investing close to $3k for this one!
    I am certain that more experienced forum users could point you to software that could help defragment your drive or may be able to offer other solutions. I've simply had enough of struggling with burning thighs and head-banging behavior triggered by slow performance. I hope this is helpful to you in some small way.  The war is not yet over, but I'm feeling good about the battle plan!

  • Macbook Pro Extremely Slow All Of A Sudden, Wiped Completely and Problem Persists

    My 2012 Macbook Pro has slowed down to nearly a crawl in just about everything I try to do, espescially with anything that utilizes the internet.  Activity Moniter initially revealed the issue to be the Kernal_Task proccess using too much memory as well as com.apple.finder. Also, Spotlight was indexing constantly until I disabled my disk from being accesed by it within the privacy tab of Spotlight Preference. The spinning beach ball of death has appeared more times in the past few days then I have ever seen in the entire year I've had my Macbook Pro.
    I literally tried everything that I could find. I've done everything from resetting the Pram and the other thing (I forgot the name but when you hold down four keys at once during start up). I've tried killing proccesses, rebooting my mac several times, closing out programs, deleting all applications, just about eveything you can think of. Safari, Google Chrome, and Firefox were all extremely slow. Attemping to verify disk permissions or repair failed because of the sheer amount of time it was taking. I let the computer sit for an entire day and it seemed to make little to no progress in repairing the disk. I even booted the computer in Safe Mode and it was stil performing poorly.
    The issue is NOT Hard Drive space on my Macbook. I know this because it was working perfectly fine and then all of sudden started behaving like this. All of these issues ultimately led to me doing something many others wouldn't, WIPING MY ENTIRE MAC AND RESTORING FROM FACTORY SETTINGS.
    The issue STILL persists although not as severe. Internet browing is bearable but nowhere near perfomring as it should. Even simple task such as opening up a new tab or switching tabs results in a spinning beach ball for about 5-10 seconds. Opening an application such as Pages or Twitter results in a spinning beach ball for 5-10 seconds before working slowly. Simply right clicking results in spinning beach ball.
    I have no idea what the issue could be at this point. I am now about to attempt to verify the disk again to see if it fixes any issues but a year old Apple product should NOT be behaving like this.
    Any advice is appreciated!
    My Specs:
      Model Name:          MacBook Pro
      Processor Name:          Intel Core i5
      Processor Speed:          2.5 GHz
      Memory:          4 GB

    Melophage,
    I've been scouring the community for help, and hoping you might be able and willing to look at my etrecheck results and share any wisdom and feedback, problem causers you see! I updated to OS Mavericks through apple updates without really realizing I was installinga  whole new system. I have been experiencing the lag issues that many others have, and have a Kernel_Task for which the CPU skyrockets at random and consistently slows things down. I've run disk repair in recovery mode, repaired permission, PRAM, a few 'basics', but have not really had success in addressing the issue (I guess because I don't really understand the issue!)
    Thanks in advance for any time and suggestions!!
    Hardware Information:
              MacBook Pro (13-inch, Mid 2010)
              MacBook Pro - model: MacBookPro7,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 320M - VRAM: 256 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 16:40:46
    Disk Information:
              Hitachi HTS545032B9SA02 disk0 : (320.07 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 319.21 GB (200.7 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
    Startup Items:
              HP IO: Path: /Library/StartupItems/HP IO
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist 3rd-Party support link
              [loaded] com.adobe.SwitchBoard.plist 3rd-Party support link
              [loaded] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [loaded] com.oracle.java.Helper-Tool.plist 3rd-Party support link
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [loaded] com.adobe.CS5ServiceManager.plist 3rd-Party support link
              [loaded] com.oracle.java.Java-Updater.plist 3rd-Party support link
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [loaded] com.google.keystone.agent.plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              WDQuickView
              HPEventHandler
              HP Scheduler
    Internet Plug-ins:
              MacCouponPrinter3: Version: (null)
              Google Earth Web Plug-in: Version: 6.1 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 2.1.2.72 3rd-Party support link
              RealPlayer Plugin: Version: (null) 3rd-Party support link
              Silverlight: Version: 4.0.60129.0 3rd-Party support link
              FlashPlayer-10.6: Version: 12.0.0.38 - SDK 10.6 3rd-Party support link
              DivXBrowserPlugin: Version: 1.1 3rd-Party support link
              Flash Player: Version: 12.0.0.38 - SDK 10.6 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              SharePointBrowserPlugin: Version: 14.3.8 - SDK 10.6 3rd-Party support link
              AdobePDFViewer: Version: 9.5.5 3rd-Party support link
              ContentUploaderPlugin: Version: 1.0 3rd-Party support link
              JavaAppletPlugin: Version: Java 7 Update 51 3rd-Party support link
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    User Internet Plug-ins:
              Move_Media_Player: Version: npmnqmp 07076003 3rd-Party support link
              fbplugin_1_0_3: Version: (null) 3rd-Party support link
    3rd Party Preference Panes:
              DivX  3rd-Party support link
              Flash Player  3rd-Party support link
              Flip4Mac WMV  3rd-Party support link
              Growl  3rd-Party support link
              Java  3rd-Party support link
              Perian  3rd-Party support link
    Bad Fonts:
              None
    Old Applications:
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4 3rd-Party support link
              Solver:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Database Utility:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Office Reminders:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
              Microsoft Language Register:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              /Applications/iWork '09
    Time Machine:
              Skip System Files: NO
              Mobile backups: ON
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 297.29 GB Disk used: 110.38 GB
              Destinations:
                        My Passport [Local] (Last used)
                        Total size: 464.98 GB
                        Total number of backups: 39
                        Oldest backup: 2010-02-01 20:31:56 +0000
                        Last backup: 2014-01-02 04:25:58 +0000
                        Size of backup disk: Adequate
                                  Backup size 464.98 GB > (Disk used 110.38 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   4%          WindowServer
                   3%          EtreCheck
                   1%          Activity Monitor
                   0%          sysmond
                   0%          configd
    Top Processes by Memory:
              152 MB          com.apple.IconServicesAgent
              131 MB          softwareupdated
              115 MB          Finder
              111 MB          Google Chrome
              61 MB          mds_stores
    Virtual Memory Information:
              42 MB          Free RAM
              1.65 GB          Active RAM
              1.63 GB          Inactive RAM
              440 MB          Wired RAM
              822 MB          Page-ins
              0 B          Page-outs

  • Mavericks extremely slow on MacBook Pro Mid-2010

    Hi all,
    Since i installed Mavericks its been impossible to work on my Mac. I've already done a clean install and no signs of improve.
    I use Eclipse IDE to work, and its extremly slow now. Even can have some video playing on Youtube without some cuts when working.
    What should i do? Downgrade to ML? Sell this laptop? Buy new RAM?
    I've attached below the EtreCheck.... i don't know if theres something on my OS that may be causing this.
    PS: ....and the OS already indexed all the files.
    Big thanks for any help given.
    Hardware Information:
              MacBook Pro (13-inch, Mid 2010)
              MacBook Pro - model: MacBookPro7,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 320M - VRAM: 256 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 22:23:30
    Disk Information:
              Hitachi HTS545025B9SA02 disk0 : (250,06 GB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) /: 249,2 GB (211,39 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Microsoft Microsoft® Nano Transceiver v2.0
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
    Launch Agents:
    User Launch Agents:
              [loaded] com.google.keystone.agent.plist
    User Login Items:
              iTunesHelper
              Dropbox
              uTorrent
    3rd Party Preference Panes:
              Flash Player
    Internet Plug-ins::
              FlashPlayer-10.6: Version: 11.9.900.152 - SDK 10.6
              Flash Player: Version: 11.9.900.152 - SDK 10.6 Outdated! Update
              QuickTime Plugin: Version: 7.7.3
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
              Default Browser: Version: 537 - SDK 10.9
    Bad Fonts:
              None
    Old applications:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   3%          mds
                   3%          STS
                   2%          EtreCheck
                   1%          WindowServer
                   0%          DashboardClient
    Top Processes by Memory:
              479 MB          STS
              123 MB          softwareupdated
              106 MB          Safari
              86 MB          Finder
              61 MB          Skype
    Virtual Memory Statistics:
              91 MB          Free RAM
              1.23 GB          Active RAM
              1.14 GB          Inactive RAM
              502 MB          Wired RAM
              5.31 GB          Page-ins
              1.18 GB          Page-outs
    Best,
    Paulo Seixas    

    First, back up all data immediately unless you already have a current backup. If you can't back up, stop here. Do not take any of the steps below.
    Step 1
    This diagnostic procedure will query the log for messages that may indicate a system issue. It changes nothing, and therefore will not, in itself, solve your problem.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|pagin|timed? ?o' | tail | awk '/:/{$4=""; print}' | open -ef
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the 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.
    Paste into the Terminal window (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. Normally the command will produce no output, and the window will be empty. If the TextEdit window (not the Terminal window) has anything in it, stop here and post it — the text, please, not a screenshot. The title of the TextEdit window doesn't matter, and you don't need to post that.
    Step 2
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Reset the System Management Controller.
    Run Software Update. If there's a firmware update, install it.
    If you're booting from an aftermarket SSD, see whether there's a firmware update for it.
    If you have a portable computer, check the cycle count of the battery. It may be due for replacement.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane. See whether there's any change.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    If you have a MacBook Pro with dual graphics, disable automatic graphics switching in the Energy Saverpreference pane for better performance at the cost of shorter battery life.
    Step 3
    When you notice the problem, launch the Activity Monitor 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 Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the View menu or the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for User, System, and Idle at the bottom of the window.
    Select the Memory tab. What value is shown in the bottom part of the window for Swap used?
    Next, select the Disk tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in andWrites out.)
    Step 4
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard by pressing the key combinationcommand-C. Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Wifi is extremely SLOW

    I'm not sure what's going on. My wifi is extremely slow. I know it's not the network, I have a PC hooked up via ethernet and it runs fast/normal. I also have a NAS on it, and the drives are mounted, sometimes. Often, it'll fail to make a connection to them. Again, the NAS shows up fine on the PC. I'm not sure why my macbook pro has such slow wifi; my previous mac ran fine and I haven't tinkered with anything in the network.

    Quote from: Rostan;108703
    I have two routers both work fine. Only thing that has issues is the GS60 and GS70
    Updating firmware can solve/improve the compatibility issue.
    Quote from: Rostan;108706
    This guy is in the process of trouble shooting an issue with the Drivers and has not found a solution so there is nothing useful from this.
    Changing wifi connection to 802.11a/5GHz band can improve the download speed. I'd give that a try.
    The last issue he has is that his home router doesn't support 802.11a.

  • Update to Mavericks 10.9.5 made my MacBook Pro extremely slow!

    Update to 10.9.5 made my MacBook Pro (2011) extremely slow. I upgraded on the 30th Sep and since then it's getting worse and worse. Today was totally impossible to work with it.
    It freezes in Safari or iTunes, several Apps crash, Numbers stops responding all the time, loses wifi, loses connectivity with printer/scanner, overheats, puts memory into pressure and drains battery. I have run Disk Utility, repaired permissions but nothing works. I have already backed up my stuff to an external drive.
    How do I fix all this?? I'm getting desperate. Thanks.

    Hi Linc,
    Thanks for your input!
    In fact, the major problem happened around 04:00pm yesterday, the 14th. It has been getting worse since the update on the 30th.
    I tried as much as possible to be selective but in 2 hrs a lot happened. Most of code repetitions were deleted.
    10/14/14 16:13:57.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:13:57.678 com.apple.launchd[1]: (com.apple.WebKit.Networking.2982A5E8-7D75-43ED-B831-EB1F937F72D1[3103]) Exited with code: 1
    10/14/14 16:14:15.058 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.060 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 127983
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.067 com.apple.launchd.peruser.501[188]: (com.apple.Finder[3064]) Exited: Terminated: 15
    10/14/14 16:14:15.079 com.apple.launchd[1]: (com.apple.MailServiceAgent[483]) Exited: Killed: 9
    10/14/14 16:14:15.079 com.apple.launchd.peruser.501[188]: (com.apple.AirPlayUIAgent[502]) Exited: Killed: 9
    10/14/14 16:14:15.082 com.apple.launchd.peruser.501[188]: (com.apple.rcd[1581]) Exited: Killed: 9
    10/14/14 16:14:15.082 com.apple.launchd.peruser.501[188]: (com.apple.EscrowSecurityAlert[390]) Exited: Killed: 9
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.936 com.apple.launchd.peruser.501[188]: (com.apple.noticeboard.agent[2045]) Exited: Killed: 9
    10/14/14 16:14:15.938 com.apple.launchd[1]: (com.apple.ShareKitHelper[263]) Exited: Killed: 9
    10/14/14 16:14:15.939 com.apple.launchd[1]: (com.apple.internetaccounts[271]) Exited: Killed: 9
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.950 com.apple.launchd.peruser.501[188]: (com.apple.iTunesHelper.35760[259]) Exited with code: 1
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:15.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:16.451 loginwindow[42]: ERROR | -[ApplicationManager(AppleEventHandling) sendQuitEventToApp:withDelay:] | sendQuitEventToApp (XBMCHelper): AESendMessage returned error -1712
    10/14/14 16:14:16.454 com.apple.launchd.peruser.501[188]: ([0x0-0x21021].com.apple.AppleSpell[344]) Exited: Killed: 9
    10/14/14 16:14:16.505 XBMCHelper[248]: XBMCHelper 0.7 exiting...
    10/14/14 16:14:16.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:18.601 sessionlogoutd[3137]: sessionlogoutd Launched
    10/14/14 16:14:18.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:18.763 loginwindow[42]: ERROR | -[Application setAppContext:] | Unable to get PID for context [0,1110287]
    10/14/14 16:14:18.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:18.834 sessionlogoutd[3137]: DEAD_PROCESS: 42 console
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.349 loginwindow[42]: ERROR | -[Application hardKill:] | Application hardKill returned -600
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.429 airportd[65]: _doAutoJoin: Already associated to “MEO-594CCD”. Bailing on auto-join.
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.455 loginwindow[42]: ERROR | -[Application hardKill:] | Application hardKill returned -600
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.491 fseventsd[50]: disk logger: failed to open output file /Volumes/My Passport/.fseventsd/00000000036d7068 (Resource busy). mount point /Volumes/My Passport/.fseventsd
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:19.497 fseventsd[50]: disk logger: failed to open output file /Volumes/My Passport/.fseventsd/00000000036d7068 (Resource busy). mount point /Volumes/My Passport/.fseventsd
    10/14/14 16:14:19.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.518 shutdown[3138]: reboot by _securityagent:
    10/14/14 16:14:21.000 kernel[0]: Kext loading now disabled.
    10/14/14 16:14:21.000 kernel[0]: Kext unloading now disabled.
    10/14/14 16:14:21.000 kernel[0]: Kext autounloading now disabled.
    10/14/14 16:14:21.518 shutdown[3138]: SHUTDOWN_TIME: 1413299661 518084
    10/14/14 16:14:21.000 kernel[0]: Kernel requests now disabled.
    10/14/14 16:14:21.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.000 kernel[0]: disk2s2: operation was aborted.
    10/14/14 16:14:21.000 kernel[0]: nspace-handler-set-snapshot-time: 0
    10/14/14 16:14:21.000 kernel[0]: nspace-handler-set-snapshot-time: 0
    10/14/14 16:14:21.603 mtmfs[2153]: filesystem unmount attempted from stopFS
    10/14/14 16:14:21.603 com.apple.mtmd[2152]: Set snapshot time: reset (current time: 2014-10-14 16:14:21 +0100)
    10/14/14 16:14:21.604 com.apple.mtmd[2152]: Set snapshot time: reset (current time: 2014-10-14 16:14:21 +0100)
    10/14/14 16:15:11.000 bootlog[0]: BOOT_TIME 1413299711 0
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    10/14/14 16:15:51.000 kernel[0]: Longterm timer threshold: 1000 ms
    10/14/14 16:15:51.000 kernel[0]: PMAP: PCID enabled
    10/14/14 16:15:51.000 kernel[0]: Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    10/14/14 16:15:51.000 kernel[0]: vm_page_bootstrap: 857213 free pages and 183171 wired pages
    10/14/14 16:15:51.000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    10/14/14 16:15:51.000 kernel[0]: zone leak detection enabled
    10/14/14 16:15:51.000 kernel[0]: "vm_compressor_mode" is 4
    10/14/14 16:15:51.000 kernel[0]: standard timeslicing quantum is 10000 us
    10/14/14 16:15:51.000 kernel[0]: standard background quantum is 2500 us
    10/14/14 16:15:51.000 kernel[0]: mig_table_max_displ = 74
    10/14/14 16:15:51.000 kernel[0]: TSC Deadline Timer supported and enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    10/14/14 16:15:51.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    10/14/14 16:15:51.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    10/14/14 16:15:51.000 kernel[0]: calling mpo_policy_init for Sandbox
    10/14/14 16:15:51.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    10/14/14 16:15:51.000 kernel[0]: calling mpo_policy_init for Quarantine
    10/14/14 16:15:51.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    10/14/14 16:15:51.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    10/14/14 16:15:51.000 kernel[0]: The Regents of the University of California. All rights reserved.
    10/14/14 16:15:51.000 kernel[0]: MAC Framework successfully initialized
    10/14/14 16:15:51.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    10/14/14 16:15:51.000 kernel[0]: AppleKeyStore starting (BUILT: Aug 17 2014 20:21:39)
    10/14/14 16:15:51.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    10/14/14 16:15:51.000 kernel[0]: ACPI: sleep states S3 S4 S5
    10/14/14 16:15:51.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0057
    10/14/14 16:15:51.000 kernel[0]: AppleIntelCPUPowerManagement: (built 20:17:40 Aug 17 2014) initialization complete
    10/14/14 16:15:51.000 kernel[0]: pci (build 20:04:33 Aug 17 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    10/14/14 16:15:51.000 kernel[0]: [ PCI configuration begin ]
    10/14/14 16:15:51.000 kernel[0]: console relocated to 0xf80000000
    10/14/14 16:15:51.000 kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    10/14/14 16:15:51.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 3c0754fffeaba2c4; max speed s800.
    10/14/14 16:15:51.000 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    10/14/14 16:15:51.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    10/14/14 16:15:51.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    10/14/14 16:15:51.000 kernel[0]: rooting via boot-uuid from /chosen: DE393F17-8716-3157-869F-9A061232D651
    10/14/14 16:15:51.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    10/14/14 16:15:51.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    10/14/14 16:15:51.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    10/14/14 16:15:51.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD HTS547575A9E384 Media/IOGUIDPartitionScheme/Macintosh HD@2
    10/14/14 16:15:51.000 kernel[0]: BSD root: disk0s2, major 1, minor 3
    10/14/14 16:15:51.000 kernel[0]: BTCOEXIST off
    10/14/14 16:15:51.000 kernel[0]: BRCM tunables:
    10/14/14 16:15:51.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    10/14/14 16:15:51.000 kernel[0]: USBMSC Identifier (non-unique): 57583331453733434C454434 0x1058 0x810 0x1042, 2
    10/14/14 16:15:51.000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    10/14/14 16:15:51.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    10/14/14 16:15:51.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
    10/14/14 16:15:51.000 kernel[0]: Waiting for DSMOS...
    10/14/14 16:15:51.000 kernel[0]: VM Swap Subsystem is ON
    10/14/14 16:15:13.584 com.apple.launchd[1]: *** launchd[1] has started up. ***
    10/14/14 16:15:13.584 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    10/14/14 16:15:36.707 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[69]) Exited with code: 2
    10/14/14 16:15:36.707 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:46.708 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[71]) Exited with code: 2
    10/14/14 16:15:46.708 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:36.705 com.apple.SecurityServer[15]: Session 100000 created
    10/14/14 16:15:46.862 hidd[51]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    10/14/14 16:15:51.639 hidd[51]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    10/14/14 16:15:51.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    10/14/14 16:15:51.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    10/14/14 16:15:53.233 com.apple.launchd[1]: (PenCommService[70]) getpwnam("_pencomm") failed
    10/14/14 16:15:53.234 com.apple.launchd[1]: (PenCommService[70]) Exited with code: 3
    10/14/14 16:15:53.238 com.apple.launchd[1]: (PenCommService[82]) getpwnam("_pencomm") failed
    10/14/14 16:15:53.238 com.apple.launchd[1]: (PenCommService[82]) Exited with code: 3
    10/14/14 16:15:53.238 com.apple.launchd[1]: (PenCommService) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:53.239 com.apple.usbmuxd[24]: usbmuxd-344 on Jul 29 2014 at 13:52:57, running 64 bit
    10/14/14 16:15:54.564 kdc[48]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    10/14/14 16:15:54.566 com.apple.launchd[1]: (com.apple.Kerberos.kdc[48]) Exited with code: 1
    10/14/14 16:15:54.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    10/14/14 16:15:54.579 kdc[87]: label: default
    10/14/14 16:15:54.579 kdc[87]: dbname: od:/Local/Default
    10/14/14 16:15:54.579 kdc[87]: mkey_file: /var/db/krb5kdc/m-key
    10/14/14 16:15:54.579 kdc[87]: acl_file: /var/db/krb5kdc/kadmind.acl
    10/14/14 16:15:55.000 kernel[0]: IOBluetoothUSBDFU::probe
    10/14/14 16:15:55.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    10/14/14 16:15:55.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x6000 ****
    10/14/14 16:15:55.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x6000 ****
    10/14/14 16:15:55.000 kernel[0]: init
    10/14/14 16:15:55.000 kernel[0]: probe
    10/14/14 16:15:55.000 kernel[0]: start
    10/14/14 16:15:55.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x6000
    10/14/14 16:15:55.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    10/14/14 16:15:55.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    10/14/14 16:15:55.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    10/14/14 16:15:55.000 kernel[0]: Previous Shutdown Cause: 5
    10/14/14 16:15:55.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    10/14/14 16:15:55.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    10/14/14 16:15:55.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x7f80 -- 0x9800 -- 0x6000 ****
    10/14/14 16:15:55.000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    10/14/14 16:15:55.000 kernel[0]: DSMOS has arrived
    10/14/14 16:15:56.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.710 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[92]) Exited with code: 2
    10/14/14 16:15:56.710 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 10 seconds
    10/14/14 16:15:56.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:56.718 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:58.069 configd[17]: setting hostname to "Anabelas-MacBook-Pro.local"
    10/14/14 16:15:58.076 configd[17]: network changed.
    10/14/14 16:15:58.931 mds[40]: (Normal) FMW: FMW 0 0
    10/14/14 16:15:59.079 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:15:59.203 com.apple.SecurityServer[15]: Entering service
    10/14/14 16:15:59.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:59.214 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:59.254 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:15:59.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:59.436 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:59.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:15:59.568 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:15:59.572 awacsd[64]: Starting awacsd connectivity_executables-97.1 (Jul 27 2014 17:02:42)
    10/14/14 16:15:59.956 digest-service[72]: label: default
    10/14/14 16:15:59.957 digest-service[72]: dbname: od:/Local/Default
    10/14/14 16:15:59.957 digest-service[72]: mkey_file: /var/db/krb5kdc/m-key
    10/14/14 16:15:59.957 digest-service[72]: acl_file: /var/db/krb5kdc/kadmind.acl
    10/14/14 16:15:59.963 digest-service[72]: digest-request: uid=0
    10/14/14 16:15:59.964 awacsd[64]: InnerStore CopyAllZones: no info in Dynamic Store
    10/14/14 16:15:59.965 loginwindow[44]: Login Window Application Started
    10/14/14 16:16:00.084 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    10/14/14 16:16:00.104 mDNSResponder[41]: mDNSResponder mDNSResponder-522.92.1 (Jul 27 2014 17:31:49) starting OSXVers 13
    10/14/14 16:16:00.121 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:16:00.000 kernel[0]: disk1: operation was aborted.
    10/14/14 16:16:00.123 diskarbitrationd[18]: unable to probe /dev/disk1 (status code 0xFFFFFFFC).
    10/14/14 16:16:00.142 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    10/14/14 16:16:00.150 digest-service[72]: digest-request: netr probe 0
    10/14/14 16:16:00.151 digest-service[72]: digest-request: init request
    10/14/14 16:16:00.154 systemkeychain[100]: done file: /var/run/systemkeychaincheck.done
    10/14/14 16:16:00.221 digest-service[72]: digest-request: init return domain: BUILTIN server: ANABELAS-MACBOOK-PRO indomain was: <NULL>
    10/14/14 16:16:00.233 configd[17]: network changed: DNS*
    10/14/14 16:16:00.236 configd[17]: network changed: DNS*
    10/14/14 16:16:00.303 mDNSResponder[41]: D2D_IPC: Loaded
    10/14/14 16:16:00.303 mDNSResponder[41]: D2DInitialize succeeded
    10/14/14 16:16:00.313 mDNSResponder[41]:   4: Listening for incoming Unix Domain Socket client requests
    10/14/14 16:16:00.314 mDNSResponder[41]: Adding registration domain 184018389.members.btmm.icloud.com.
    10/14/14 16:16:00.454 networkd[125]: networkd.125 built Aug 24 2013 22:08:46
    10/14/14 16:16:00.000 kernel[0]: createVirtIf(): ifRole = 1
    10/14/14 16:16:00.000 kernel[0]: in func createVirtualInterface ifRole = 1
    10/14/14 16:16:00.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    10/14/14 16:16:00.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    10/14/14 16:16:00.000 kernel[0]: Created virtif 0xffffff802c8c3800 p2p0
    10/14/14 16:16:00.502 airportd[68]: airportdProcessDLILEvent: en1 attached (up)
    10/14/14 16:16:00.512 kdc[87]: KDC started
    10/14/14 16:16:00.901 apsd[66]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/14/14 16:16:00.902 com.apple.InternetSharing[49]: *** no interface for service
    10/14/14 16:16:00.917 WindowServer[121]: Server is starting up
    10/14/14 16:16:00.930 mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/14/14 16:16:00.978 awacsd[64]: Configuring lazy AWACS client: 184018389.p02.members.btmm.icloud.com.
    10/14/14 16:16:00.979 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA3006760 Anabelas-MacBook-Pro.local. (Addr) that's already in the list
    10/14/14 16:16:00.979 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA3006BF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    10/14/14 16:16:00.980 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA3008360 Anabelas-MacBook-Pro.local. (AAAA) that's already in the list
    10/14/14 16:16:00.980 mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDFA30087F0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    10/14/14 16:16:01.453 awacsd[64]: KV HTTP 0
    10/14/14 16:16:01.470 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 6 seconds
    10/14/14 16:16:01.470 com.apple.launchd[1]: (PenCommService) Throttling respawn: Will start in 2 seconds
    10/14/14 16:16:01.477 UserEventAgent[11]: assertion failed: 13F34: com.apple.telemetry + 17682 [AE0C3032-1747-317E-9871-E26B5B6B0120]: 0xffffffffe0000001
    10/14/14 16:16:01.562 locationd[46]: NBB-Could not get UDID for stable refill timing, falling back on random
    10/14/14 16:16:01.664 sandboxd[129]: ([68]) airportd(68) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.C8BD24C7-7A56-5 907-A309-FBC2A4802EC1.plist
    10/14/14 16:16:01.000 kernel[0]: en1: 802.11d country code set to 'PT'.
    10/14/14 16:16:01.000 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    10/14/14 16:16:01.000 kernel[0]: fGPUIdleIntervalMS = 0
    10/14/14 16:16:01.000 kernel[0]: en5: promiscuous mode enable succeeded
    10/14/14 16:16:01.905 com.apple.InternetSharing[49]: *** no interface for service
    10/14/14 16:16:02.000 kernel[0]: MacAuthEvent en1   Auth result for: 58:98:35:59:4c:cd  MAC AUTH succeeded
    10/14/14 16:16:02.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    10/14/14 16:16:02.000 kernel[0]: AirPort: Link Up on en1
    10/14/14 16:16:02.000 kernel[0]: en1: BSSID changed to 58:98:35:59:4c:cd
    10/14/14 16:16:02.000 kernel[0]: AirPort: RSN handshake complete on en1
    10/14/14 16:16:02.328 WindowServer[121]: Session 256 retained (2 references)
    10/14/14 16:16:02.328 WindowServer[121]: Session 256 released (1 references)
    10/14/14 16:16:02.347 locationd[46]: Location icon should now be in state 'Inactive'
    10/14/14 16:16:02.350 WindowServer[121]: Session 256 retained (2 references)
    10/14/14 16:16:02.529 WindowServer[121]: init_page_flip: page flip mode is on
    10/14/14 16:16:02.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    10/14/14 16:16:03.466 WindowServer[121]: Found 13 modes for display 0x00000000 [13, 0]
    10/14/14 16:16:03.476 com.apple.launchd[1]: (PenCommService[142]) getpwnam("_pencomm") failed
    10/14/14 16:16:03.477 com.apple.launchd[1]: (PenCommService[142]) Job failed to exec(3). Setting up event to tell us when to try again: 3: No such process
    10/14/14 16:16:03.477 com.apple.launchd[1]: (PenCommService[142]) Job failed to exec(3) for weird reason: 3
    10/14/14 16:16:03.482 WindowServer[121]: Found 21 modes for display 0x00000000 [21, 0]
    10/14/14 16:16:03.494 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.504 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.506 WindowServer[121]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    10/14/14 16:16:03.506 WindowServer[121]: mux_initialize: Mode is safe
    10/14/14 16:16:03.508 WindowServer[121]: Found 13 modes for display 0x00000000 [13, 0]
    10/14/14 16:16:03.513 WindowServer[121]: Found 21 modes for display 0x00000000 [21, 0]
    10/14/14 16:16:03.527 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.527 WindowServer[121]: Found 1 modes for display 0x00000000 [1, 0]
    10/14/14 16:16:03.565 WindowServer[121]: WSMachineUsesNewStyleMirroring: false
    10/14/14 16:16:03.567 WindowServer[121]: MPServiceForDisplayDevice: Invalid device alias (0)
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x04273140: GL mask 0x1; bounds (0, 0)[1920 x 1080], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc5, S/N 0, Unit 0, Rotation 0
    UUID 0x150089674ff1f763df4753684d4f1602
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.568 WindowServer[121]: Display 0x3c0a4e01: GL mask 0x2; bounds (-1920, 0)[1920 x 1080], 21 modes available
    Active, on-line, enabled, Vendor 22f0, Model 2938, S/N 0, Unit 1, Rotation 0
    UUID 0x2b3642fed8b8a5d7fb302084f612feb1
    10/14/14 16:16:03.569 WindowServer[121]: WSSetWindowTransform: Singular matrix
    10/14/14 16:16:03.569 WindowServer[121]: WSSetWindowTransform: Singular matrix
    10/14/14 16:16:03.570 WindowServer[121]: Display 0x04273140: Unit 0: Mode 1920 x 1080, CGSThirtytwoBitColor, Resolution 1, ioModeID 0x8000500b, ioModeDepth 0x0, IOReturn 0x0
    10/14/14 16:16:03.572 WindowServer[121]: Display 0x3c0a4e01: Unit 1: Mode 1920 x 1080, CGSThirtytwoBitColor, Resolution 1, ioModeID 0x80005000, ioModeDepth 0x0, IOReturn 0x0
    10/14/14 16:16:03.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    10/14/14 16:16:03.598 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 4 seconds
    10/14/14 16:16:03.598 WindowServer[121]: hw_mirror_device_if_possible: driver picks 0x3c0a4e01 as primary
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x3c0a4e01: GL mask 0x2; bounds (0, 0)[1920 x 1080], 21 modes available
    Master in mirror set; Main, Active, on-line, enabled, Vendor 22f0, Model 2938, S/N 0, Unit 1, Rotation 0
    UUID 0x2b3642fed8b8a5d7fb302084f612feb1
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x04273140: GL mask 0x1; bounds (0, 0)[1920 x 1080], 13 modes available
    Hardware mirror of 0x3c0a4e01; on-line, enabled, built-in, boot, Vendor 610, Model 9cc5, S/N 0, Unit 0, Rotation 0
    UUID 0x150089674ff1f763df4753684d4f1602
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x003f0040: GL mask 0x10; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x003f003f: GL mask 0x8; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.601 mds[40]: (Normal) Volume: volume:0x7fb4d1022000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    10/14/14 16:16:03.601 WindowServer[121]: Display 0x003f003e: GL mask 0x4; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    10/14/14 16:16:03.602 WindowServer[121]: CGXPerformInitialDisplayConfiguration
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x3c0a4e01: Unit 1; Vendor 0x22f0 Model 0x2938 S/N 0 Dimensions 18.74 x 10.55; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x04273140: Unit 0; Vendor 0x610 Model 0x9cc5 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    10/14/14 16:16:03.602 WindowServer[121]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    10/14/14 16:16:03.622 WindowServer[121]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x00004917, unit 0, caps QEX|MIPMAP, vram 451 MB
    10/14/14 16:16:03.622 WindowServer[121]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    10/14/14 16:16:03.622 WindowServer[121]: GLCompositor enabled for tile size [256 x 256]
    10/14/14 16:16:03.622 WindowServer[121]: CGXGLInitMipMap: mip map mode is on
    10/14/14 16:16:03.630 loginwindow[44]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    10/14/14 16:16:03.715 fseventsd[52]: Logging disabled completely for device:1: /Volumes/Recovery HD
    10/14/14 16:16:04.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    10/14/14 16:16:05.572 WindowServer[121]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/14/14 16:16:05.577 WindowServer[121]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/14/14 16:16:05.678 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd) Throttling respawn: Will start in 2 seconds
    10/14/14 16:16:05.678 mtmfs[38]: mount succeeded for /Volumes/MobileBackups
    10/14/14 16:16:05.681 mds[40]: (Normal) Volume: volume:0x7fb4d1039800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    10/14/14 16:16:05.681 mds[40]: (Normal) Volume: volume:0x7fb4d1039800 ********** Created snapshot backup index
    10/14/14 16:16:05.950 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:05.952 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:05.986 launchctl[153]: com.apple.findmymacmessenger: Already loaded
    10/14/14 16:16:06.006 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.007 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.030 com.apple.SecurityServer[15]: Session 100004 created
    10/14/14 16:16:06.049 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.051 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.064 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.065 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.077 WindowServer[121]: Display 0x3c0a4e01: Unit 1; ColorProfile { 2, "HP 2211"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/14/14 16:16:06.079 WindowServer[121]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    10/14/14 16:16:06.079 loginwindow[44]: Setting the initial value of the magsave brightness level 1
    10/14/14 16:16:06.133 loginwindow[44]: Login Window Started Security Agent
    10/14/14 16:16:06.151 airportd[68]: _doAutoJoin: Already associated to “MEO-594CCD”. Bailing on auto-join.
    10/14/14 16:16:06.196 UserEventAgent[155]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    10/14/14 16:16:06.248 SecurityAgent[161]: This is the first run
    10/14/14 16:16:06.248 SecurityAgent[161]: MacBuddy was run = 0
    10/14/14 16:16:06.270 WindowServer[121]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc51a611b10) - enabling OpenGL
    10/14/14 16:16:06.457 awacsd[64]: KV HTTP 0
    10/14/14 16:16:06.679 parentalcontrolsd[169]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    10/14/14 16:16:06.000 kernel[0]: nspace-handler-set-snapshot-time: 1413299768
    10/14/14 16:16:06.771 com.apple.mtmd[39]: Set snapshot time: 2014-10-14 16:16:08 +0100 (current time: 2014-10-14 16:16:06 +0100)
    10/14/14 16:16:07.680 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[172]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    10/14/14 16:16:07.681 com.apple.launchd[1]: (de.novamedia.launch2net.nmnetmgrd[172]) Job failed to exec(3) for weird reason: 2
    10/14/14 16:16:07.787 SecurityAgent[161]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0 : LaunchApplicationClient.cp #990 LaunchApplicationWithSpawnViaLaunchD() q=NSOperationQueue Serial Queue
    10/14/14 16:16:07.787 SecurityAgent[161]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0
    10/14/14 16:16:11.173 digest-service[72]: digest-request: uid=0
    10/14/14 16:16:11.173 digest-service[72]: digest-request: init request
    10/14/14 16:16:11.178 digest-service[72]: digest-request: init return domain: ANABELAS-MBP server: ANABELAS-MACBOOK-PRO indomain was: <NULL>
    10/14/14 16:16:11.208 digest-service[72]: digest-request: uid=0
    10/14/14 16:16:11.208 digest-service[72]: digest-request: init request
    10/14/14 16:16:11.213 digest-service[72]: digest-request: init return domain: MACBOOKPRO-67A4 server: ANABELAS-MACBOOK-PRO indomain was: <NULL>
    10/14/14 16:16:14.160 configd[17]: network changed: DNS* Proxy
    10/14/14 16:16:14.162 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'MEO-594CCD' making interface primary (protected network)
    10/14/14 16:16:14.163 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    10/14/14 16:16:14.165 com.apple.InternetSharing[49]: InternetSharing: com.apple.InternetSharing.broadcast-0 has been started
    10/14/14 16:16:14.166 com.apple.InternetSharing[49]: BCAST is ready [en1, mtu=1500, 0 DNSv6 server(s)]
    10/14/14 16:16:14.166 com.apple.InternetSharing[49]: added addr=192.168.2.1 mask=255.255.255.0 on fw0
    10/14/14 16:16:14.167 UserEventAgent[11]: Captive: en1: Probing 'MEO-594CCD'
    10/14/14 16:16:14.168 com.apple.InternetSharing[49]: InternetSharing: com.apple.InternetSharing.broadcast-1 has been started
    10/14/14 16:16:14.170 configd[17]: network changed: v4(en1!:192.168.1.70) DNS+ Proxy+ SMB
    10/14/14 16:16:14.184 com.apple.InternetSharing[49]: com.apple.InternetSharing.broadcast-0 started: [DHCP subnet=192.168.2/24 on fw0 mtu=1500 <---> en1 mtu=1500] max-mss=1460
    10/14/14 16:16:14.184 com.apple.InternetSharing[49]:   dns: 192.168.2.1
    10/14/14 16:16:14.184 com.apple.InternetSharing[49]: started dns proxy
    10/14/14 16:16:14.185 com.apple.InternetSharing[49]: dns proxy successfully enabled
    10/14/14 16:16:14.192 com.apple.InternetSharing[49]: started "natpmpd"
    10/14/14 16:16:14.000 kernel[0]: en0: promiscuous mode enable succeeded
    10/14/14 16:16:14.192 com.apple.InternetSharing[49]: BCAST is ready [en1, mtu=1500, 0 DNSv6 server(s)]
    10/14/14 16:16:14.193 com.apple.InternetSharing[49]: added addr=192.168.3.1 mask=255.255.255.0 on bridge100
    10/14/14 16:16:14.199 com.apple.I

  • I upgraded macbook to Yosemite, and now its become unbearable and extremely slow

    Problem description:
    I upgraded macbook to Yosemite, and now its become unbearable and extremely slow, I’ve deleted multiple files, and it is still extremely slow, I’ve also repaired disk permissions but it did little to nothing
    EtreCheck version: 2.0.8 (95)
    Report generated October 31, 2014 at 4:57:08 PM EDT
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:25:44
    Disk Information: ℹ️
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) /  [Startup]: 318.84 GB (148.50 GB free)
      Encrypted AES-XTS UnlockedConverting
      Core Storage: disk0s2 319.21 GB Online
      MATSHITADVD-R   UJ-898
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/hosts - Count: 51
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Symantec/Protector
      [not loaded] com.symantec.kext.protector.panther (1.0f5) Support
      [not loaded] com.symantec.kext.protector.tigerplus (1.0f5) Support
      /Library/Extensions
      [not loaded] xxx.qnation.PeerGuardian (1.1.9) Support
      /Library/Sophos Anti-Virus/InterCheck.app
      [not loaded] com.sophos.kext.sav (8.0.4 - SDK 10.5) Support
      /Library/StartupItems/SymAutoProtect
      [not loaded] com.Symantec.kext.SAVAPComm (11.0.6) Support
      /System/Library/Extensions
      [not loaded] com.wacom.kext.pentablet (5.2.5) Support
    Startup Items: ℹ️
      NortonMissedTasks: Path: /Library/StartupItems/NortonMissedTasks
      SMC: Path: /Library/StartupItems/SMC
      SymAutoProtect: Path: /Library/StartupItems/SymAutoProtect
      SymProtector: Path: /Library/StartupItems/SymProtector
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.symantec.quickmenu.application.plist Support
      [running] com.wacom.pentablet.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [running] com.sophos.autoupdate.plist Support
      [failed] com.sophos.intercheck.plist Support
      [running] com.sophos.notification.plist Support
      [failed] xxx.qnation.PeerGuardian.kextload.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [invalid?] com.adobe.ARM.[...].plist Support
      [loaded] com.facebook.videochat.[redacted].plist Support
      [loaded] com.spotify.webhelper.plist Support
    User Login Items: ℹ️
      None
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 10.1.12 Support
      AdobePDFViewer: Version: 10.1.12 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.189
      QuickTime Plugin: Version: 7.7.3
      WacomNetscape: Version: 1.1.1-1 Support
      WacomSafari: Version: 1.1.1-1 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
    Safari Extensions: ℹ️
      DuckDuckGo
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          6% WindowServer
          2% kextd
          0% AppleSpell
          0% launchd
          0% ocspd
    Top Processes by Memory: ℹ️
      228 MB com.apple.WebKit.WebContent
      137 MB Safari
      103 MB Messages
      69 MB Spotlight
      64 MB CalendarAgent
    Virtual Memory Information: ℹ️
      96 MB Free RAM
      1.46 GB Active RAM
      1.35 GB Inactive RAM
      1.00 GB Wired RAM
      2.12 GB Page-ins
      9 MB Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. 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 test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. 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 the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB ' com.adobe.AAM.Updater-1.0 com.adobe.CS4ServiceManager com.adobe.CS5ServiceManager com.adobe.fpsaud com.adobe.SwitchBoard com.apple.AirPortBaseStationAgent com.apple.installer.osmessagetracing com.apple.SafariNotificationAgent com.apple.usbmuxd com.apple.xprotectupdater com.google.keystone.agent com.google.keystone.daemon com.microsoft.office.licensing.helper com.oracle.java.Helper-Tool com.oracle.java.JavaUpdateHelper ' ' 879294308 3627668074 1083382502 1274181950 1855907737 464843899 1233118628 2636415542 842973933 4019080058 3301885676 891055588 998894468 695903914 1443423563 ' 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/faceb/s/(at\.)[^.]+/\1NAME/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { split("'"${p[41]}"'",b);for(i in b) print b[i];if(n<10) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { split("'"${p[41]}"'",b);for(i in b) print b[i]".plist";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { split("'"${p[41]}"'",b);split("'"${p[42]}"'",c);for(i in b) print b[i]".plist\t"c[i];if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"cksum "F|getline C;split(C, A);C="checksum "A[1];"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text(, with v.+)?$|(Bo|PO).+ sh.+ text ex|XM)/) F=F" ("T", "C")";else F=F" ("C")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */   /;' ' /:/d;/\./p;' '/\.appex\/Contents\/Info\.plist$/p' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|corru|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:|suhel| VALI|ver-r|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '/S*/*/Ca*/*xpc* >&- ||echo No' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,Ex}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,In{p,ter},iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" 'L*/P*/com.ap*.p*.ext*.*.*t -exec '"${c1[14]}"' :displayOrder" {} \;' );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents XPC\ cache Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors appexes );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "${s[63]}"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;B3 4 0 65;A3 14 6 32 0;B4 0 16 11;A1 4 50 64;B7 16;C3 52;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 20 32 25;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. 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.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. 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 test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Machine running extremely slow

    I am noticing my machine is running extremely slow. Even with out any Apps open my system memory is only at around 30% so not sure where the band width hog is? Looking at the activity monitor there are allot of things going on / most of which I do not know what they are.
    I just ran an EtreCheck - does anyone here know of a way I can stream line my system to run faster and not chock so much?
    Thanks
    > j
    EtreCheck Report:
    EtreCheck version: 1.9.15 (52)
    Report generated September 27, 2014 at 12:04:09 PM EDT
    Hardware Information: ?
        MacBook Pro (17-inch, Mid 2009) (Verified)
        MacBook Pro - model: MacBookPro5,2
        1 2.8 GHz Intel Core 2 Duo CPU: 2 cores
        8 GB RAM
    Video Information: ?
        NVIDIA GeForce 9400M - VRAM: 256 MB
            Color LCD 1920 x 1200
            AL2016W 1680 x 1050 @ 60 Hz
        NVIDIA GeForce 9600M GT - VRAM: 512 MB
    System Software: ?
        OS X 10.9.5 (13F34) - Uptime: 0 days 0:52:17
    Disk Information: ?
        Hitachi HTS545050B9SA02 disk0 : (500.11 GB)
        S.M.A.R.T. Status: Verified
            EFI (disk0s1) <not mounted>: 209.7 MB
            Macintosh HD (disk0s2) / [Startup]: 499.25 GB (93.33 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        MATSHITADVD-R   UJ-868 
    USB Information: ?
        Apple Inc. Built-in iSight
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        LGE Nexus 5
        Apple, Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Firewire Information: ?
        Seagate GoFlex Desk Mac 800mbit - 800mbit max
            S.M.A.R.T. Status: Verified
            EFI (disk2s1) <not mounted>: 209.7 MB
            Backup Disk 2 (SuperDuper) (disk2s2) /Volumes/Backup Disk 2 (SuperDuper): 2 TB (1.62 TB free)
        Seagate GoFlex Desk Mac 800mbit - 800mbit max
            S.M.A.R.T. Status: Verified
            EFI (disk1s1) <not mounted>: 209.7 MB
            Backup Disk 1 (Time Machine) (disk1s2) /Volumes/Backup Disk 1 (Time Machine): 2 TB (1.47 TB free)
    Configuration files: ?
        /etc/sysctl.conf - Exists
    Gatekeeper: ?
        Mac App Store and identified developers
    Kernel Extensions: ?
        [loaded]    com.seagate.driver.PowSecDriverCore (5.1.1) Support
        [not loaded]    com.seagate.driver.PowSecLeafDriver_10_4 (5.1.1) Support
        [loaded]    com.seagate.driver.PowSecLeafDriver_10_5 (5.1.1) Support
        [not loaded]    com.seagate.driver.SeagateDriveIcons (5.1.1) Support
    Startup Items: ?
        ColdFusion8: Path: /Library/StartupItems/ColdFusion8
        ColdFusion9: Path: /Library/StartupItems/ColdFusion9
        IPSecuritasDaemon: Path: /Library/StartupItems/IPSecuritasDaemon
        MySQLCOM: Path: /Library/StartupItems/MySQLCOM
    Launch Daemons: ?
        [loaded]    com.adobe.fpsaud.plist Support
        [loaded]    com.adobe.SwitchBoard.plist Support
        [invalid]    com.oracle.java.Helper-Tool.plist
        [failed]    com.vmware.launchd.vmware.plist Support
    Launch Agents: ?
        [not loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [running]    com.adobe.AdobeCreativeCloud.plist Support
        [loaded]    com.adobe.CS4ServiceManager.plist Support
        [loaded]    com.adobe.CS5ServiceManager.plist Support
        [running]    com.brother.LOGINserver.plist Support
        [invalid]    com.oracle.java.Java-Updater.plist
        [running]    com.seagate.SeagateStorageGauge.plist Support
    User Launch Agents: ?
        [not loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [not loaded]    com.adobe.ARM.[...].plist Support
        [not loaded]    com.akamai.client.plist Support
        [not loaded]    [email protected]
        [not loaded]    com.google.keystone.agent.plist Support
        [not loaded]    com.shirtpocket.backupbytime.plist Support
    User Login Items: ?
        FontAgent Activator
        Dropbox
    Internet Plug-ins: ?
        LogMeInSafari64: Version: 1.0.496 Support
        Google Earth Web Plug-in: Version: 6.0 Support
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 2.2.1.11  Support
        RealPlayer Plugin: Version: Unknown
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
        FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
        AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
        LogMeIn: Version: 1.0.496 Support
        Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
        AmazonMP3DownloaderPlugin: Version: Unknown
        iPhotoPhotocast: Version: 7.0
        LogMeInSafari32: Version: 1.0.496 Support
        AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
        QuickTime Plugin: Version: 7.7.3
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
        JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    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
        FAPPreferences  Support
        MultiBrowser  Support
        MySQL  Support
    Time Machine: ?
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 464.96 GB Disk used: 378.04 GB
        Destinations:
            Backup Disk 1 (Time Machine) [Local] (Last used)
            Total size: 2 TB
            Total number of backups: 82
            Oldest backup: 2013-10-31 21:32:48 +0000
            Last backup: 2014-09-21 19:05:03 +0000
            Size of backup disk: Excellent
                Backup size 2 TB > (Disk size 464.96 GB X 3)
        Time Machine details may not be accurate.
        All volumes being backed up may not be listed.
    Top Processes by CPU: ?
            13%    mtmfs
             8%    firefox
             5%    WindowServer
             3%    backupd
             3%    Creative Cloud
    Top Processes by Memory: ?
        526 MB    mds_stores
        434 MB    firefox
        254 MB    com.apple.IconServicesAgent
        156 MB    plugin-container
        98 MB    WindowServer
    Virtual Memory Information: ?
        3.80 GB    Free RAM
        2.70 GB    Active RAM
        444 MB    Inactive RAM
        836 MB    Wired RAM
        624 MB    Page-ins
        0 B    Page-outs

    I don't read "etrecheck" reports.
    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. 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 test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. 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 the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" '/S*/*/Ca*/*xpc* >&- ||echo No' );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors XPC\ cache );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 50 32 52;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. 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.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. 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 test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Everything Extremely Slow

    Since I've owned the iPhone from last March, I have dutifully upgraded it every time, followed Apple's troubleshooting instructions, fully restored it over a dozen times and yet have been plagued by seemingly endless problems. I don't think this is anything new for most iPhone users I have read on these discussions and personally know.
    However, one problem which has been there since the beginning and seems not to go away no matter what I do is extremely slow load times when switching between applications and typing e-mail mail, SMS & contact info. A typical example is pulling up the contact window and having to wait several seconds as I continually poke into the search box waiting for a cursor so I can start typing. Then when I start to type, often one letter will enter and everything will freeze for several seconds until i can continue typing. Then when typing an e-mail, this behavior will often show up randomly as if the iPhone is struggling to keep up with my relatively slow single-finger-hunt-and-poke input method.
    Frankly the two things, slow app switching and sluggish response and staggered input problems, have me at wits end. After dozens of restores since I bought it, I am wondering if this is a universal problem or if I should start pressing Apple to replace it.
    Anyone else experiencing these problems? I know at least one other use that has not only had these problems since his original 16GB iPhone and they have continued to plague him on his 3G iphone which he purchased in part hoping the general interface speed would improve, yet it has not – in fact he claims it has gotten slower. This leads me to believe it is Apple's use of an underpowered ARM processor and the iPhone is simply incapable of running at real-time speeds. But this is just one user.
    Anyone with these problems able to solve them?

    Hey, I have had these problems as well. It started about a week or two after I got my iPhone. But I got fed up with it recently and went to the Apple store. They restored it completely and it has worked perfectly ever since. Maybe you just have to restore it completely. Have you tried just completely wiping everything and not installing the backed up version that iTunes stores? Try and start fresh and see how that works.

  • Help Mac extremely slow

    Hi,
    My Macbook Pro is extremely slow to the point of being nearly unusable. It is at it's worst when i am connected to the internet. Could I pleae have some advise, i have used many hints and tips from the forums but nothing seems to be working
    I have included  an etrecheck log.
    EtreCheck version: 2.1.8 (121)
    Report generated 24 February 2015 10:09:54 PM AEDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Mid 2010) (Technical Specifications)
        MacBook Pro - model: MacBookPro7,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Replace Soon - Cycle count 1420
    Video Information: ℹ️
        NVIDIA GeForce 320M - VRAM: 256 MB
            Color LCD 1280 x 800
            spdisplays_display_connector
    System Software: ℹ️
        Mac OS X 10.6.8 (10K549) - Time since boot: 1:11:32
    Disk Information: ℹ️
        Hitachi HTS545032B9SA02 disk0 : (298.09 GB)
            - (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 319.73 GB (262.04 GB free)
        HL-DT-ST DVDRW  GS23N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple Inc. Apple Internal Keyboard / Trackpad
    Configuration files: ℹ️
        /etc/hosts - Count: 15
    Kernel Extensions: ℹ️
            /Library/Application Support/WDSmartWare
        [not loaded]    com.wdc.driver.1394HP (1.0.7) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.6) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.Huawei.driver.HuaweiDataCardDriver (4.0.6) [Click for support]
        [loaded]    com.Perfect.Driver.SystemAudioRecorder (1.0.0 - SDK 10.6) [Click for support]
        [loaded]    com.parallels.kext.prl_hid_hook (7.0 14922.693916) [Click for support]
        [loaded]    com.parallels.kext.prl_hypervisor (7.0 14922.693916) [Click for support]
        [loaded]    com.parallels.kext.prl_netbridge (7.0 14922.693916) [Click for support]
        [loaded]    com.parallels.kext.prl_usb_connect (7.0 14922.693916) [Click for support]
        [loaded]    com.parallels.kext.prl_vnic (7.0 14922.693916) [Click for support]
    Problem System Launch Agents: ℹ️
        [failed]    com.paragon-software.NTFS.SparkleUpdate.plist [Click for support] [Click for details]
        [failed]    com.paragon.NTFS.notify.plist [Click for support] [Click for details]
    Problem System Launch Daemons: ℹ️
        [not loaded]    org.samba.winbindd.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Check version
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.6.6
        DivXBrowserPlugin: Version: 2.2 [Click for support]
        SharePointBrowserPlugin: Version: 14.1.0 [Click for support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        DirectorShockwave: Version: 11.6.4r634 [Click for support]
        iPhotoPhotocast: Version: 7.0
    User internet Plug-ins: ℹ️
        Picasa: Version: 1.0 - SDK 10.6 [Click for support]
    Safari Extensions: ℹ️
        DivX Plus Web Player HTML5 <video>
    Audio Plug-ins: ℹ️
        iSightAudio: Version: 7.6.6
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Growl  [Click for support]
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ℹ️
            20%    Safari
             1%    WebProcess
             0%    WindowServer
             0%    configd
             0%    fontd
    Top Processes by Memory: ℹ️
        253 MB    WebProcess
        146 MB    Safari
        82 MB    mds
        82 MB    Finder
        64 MB    WindowServer
    Virtual Memory Information: ℹ️
        2.06 GB    Free RAM
        909 MB    Active RAM
        556 MB    Inactive RAM
        503 MB    Wired RAM
        637 MB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 24, 2015, 08:54:48 PM    Self test - passed

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    The test works on OS X 10.7 ("Lion") and later. I don't recommend running it on older versions of OS X. It will do no harm, but it won't do much good either.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of it have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message. See, for example, this discussion.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. Try to test under conditions that reproduce the problem, as far as possible. For example, if the computer is sometimes, but not always, slow, run the test during a slowdown.
    You may have started up in "safe" 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 test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. 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 the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(1269 ' 0.5 0.25 10 1000 15 5120 1000 25000 1 1 0 100 ' 51 25600 4 10 25 5120 102400 1000 25 1 350 40 500 300 85 25 20480 262144 20 2000 524288 604800 5 1024 );k=({Soft,Hard}ware Memory Diagnostics Power FireWire Thunderbolt USB Bluetooth SerialATA Extensions Applications Frameworks PrefPane Fonts Displays PCI UniversalAccess InstallHistory ConfigurationProfile AirPort 'com\.apple\.' -\\t N\\/A 'AES|atr|udit|msa|dnse|ax|ensh|fami|FileS|fing|ft[pw]|gedC|kdu|etS|is\.|alk|ODSA|otp|htt|pace|pcas|ps-lp|rexe|rlo|rsh|smb|snm|teln|upd-[aw]|uuc|vix|webf' OSBundle{Require,AllowUserLoa}d 'Mb/s:Mb/s:ms/s:KiB/s:%:total:MB:total:per sec' 'Net in:Net out:I/O wait time:I/O requests:CPU usage:Open files:Memory:Mach ports:File opens:Forks:Failed forks:System errors' 'tsA|[ST]M[HL]' PlistBuddy{,' 2>&1'}' -c Print' 'Info\.plist' CFBundleIdentifier );f=('\n%s'{': ','\n\n'}'%s\n' '\nRAM details\n%s\n' %s{' ','\n'{"${k[22]}",}}'%s\n' '%.1f GiB: %s\n' '\n    ...and %s more line(s)\n' '\nContents of %s\n    '"${k[22]}"'mod date: %s\n    '"${k[22]}"'checksum: %s\n%s\n' );c=(879294308 4071182229 461455494 3627668074 1083382502 1274181950 1855907737 2758863019 1848501757 464843899 2636415542 3694147963 1233118628 2456546649 2806998573 2778718105 842973933 1383871077 2051385900 3301885676 891055588 998894468 695903914 1443423563 4136085286 3374894509 1051159591 892310726 1707497389 523110921 2883943871 3873345487 );s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/faceb/s/(at\.)[^.]+/\1NAME/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[4]} ' s/:$//;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: (E[^m]|[^EO])|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[9]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;q;} ' ' BEGIN { FS="\f";if(system("A1 42 83 114")) d="^'"${k[21]}"'launch(d\.peruser\.[0-9]+|ctl\.(Aqua|Background|System))$";} { if($2~/[1-9]/) { $2="status: "$2;printf("'"${f[4]}"'",$1,$2);} else if(!d||$1!~d) print $1;} ' ' $1>1{$NF=$NF" x"$1} /\*/{if(!f)f="\n\t* Code injection"} {$1=""} 1;END{print f} ' ' NR==2&&$4<='${p[7]}'{print $4} ' ' BEGIN{FS=":"} ($1~"wir"&&$2>'${p[22]}') {printf("wired %.1f\n",$2/2^18)} ($1~/P.+ts/&&$2>'${p[19]}') {printf("paged %.1f\n",$2/2^18)} ' '/YLD/s/=/ /p' ' { q=$1;$1="";u=$NF;$NF="";gsub(/ +$/,"");print q"\f"$0"\f"u;} ' ' /^ {6}[^ ]/d;s/:$//;/([^ey]|[^n]e):/d;/e: Y/d;s/: Y.+//g;H;${ g;s/ \n (\n)/\1/g;s/\n +(M[^ ]+)[ -~]+/ (\1)/;s/\n$//;/( {8}[^ ].*){2,}/p;} ' 's:^:/:p;' ' !/, .+:/{print};END{if(NR<'{${p[12]},${p[13]}}')printf("^'"${k[21]}"'.+")} ' '|uniq' ' 1;END { print "/L.+/Scr.+/Templ.+\.app$";print "/L.+/Pri.+\.plugin$";if(NR<'{${p[14]},${p[21]}}') print "^/[Sp].+|'${k[21]}'";} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:.+//p;' '&&echo On' '/\.(bundle|component|framework|kext|mdimporter|plugin|qlgenerator|saver|wdgt)$/p' '/\.dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".","");print $0"$";} END { split("'"${c[*]}"'",c);for(i in c) print "\t"c[i]"$";} ' ' /^\/(Ap|Dev|Inc|Prev)/d;/((iTu|ok).+dle|\.(component|mailbundle|mdimporter|plugin|qlgenerator|saver|wdgt))$/p;' ' BEGIN{ FS="= "} $2 { gsub(/[()"]/,"",$2);print $2;} ' ' /^\//!d;s/^.{5}//;s/ [^/]+\//: \//p;' '>&-||echo No' '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[2]}'{$2=$2-1;print}' ' BEGIN { M1='${p[16]}';M2='${p[18]}';M3='${p[8]}';M4='${p[3]}';} !/^A/{next};/%/ { getline;if($5<M1) o["CPU"]="CPU: user "$2"%, system "$4"%";next;} $2~/^disk/&&$4>M2 { o[$2]=$2": "$3" ops/s, "$4" blocks/s";next;} $2~/^(en[0-9]|bridg)/ { if(o[$2]) { e=$3+$4+$5+$6;if(e) o[$2]=o[$2]"; errors "e"/s";next;};if($4>M3||$6>M4) o[$2]=$2": in "int($4/1024)", out "int($6/1024)" (KiB/s)";} END { for(i in o) print o[i];} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/)||(/v6:/&&$2!~/A/) ' ' BEGIN{FS=": "} /^ {10}O/ {exit} /^ {0,12}[^ ]/ {next} $1~"Ne"&&$2!~/^In/{print} $1~"Si" { split($2,a," ");if(a[1]-a[4]<'${p[5]}') print;};$1~"T"&&$2<'${p[20]}'{print};$1~"Se"&&$2!~"2"{print};' ' BEGIN { FS="\f";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1;} ' ' BEGIN { split("'"${p[1]}"'",m);FS="\f";} $2<=m[$1]{next} $1<9 { o[$1]=o[$1]"\n    "$3" (UID "$4"): "$2;} $1==9&&$5!~"^/dev" { o[$1]=o[$1]"\n    "$3" (UID "$4") => "$5" (status "$6"): "$2;} $1==10&&$5 { p="ps -c -ocomm -p"$5"|sed 1d";p|getline n;close(p);if(n) $5=n;o[$1]=o[$1]"\n    "$5" => "$3" (UID "$4"): "$2;} $1~/1[12]/ { o[$1]=o[$1]"\n    "$3" (UID "$4", error "$5"): "$2;} END { n=split("'"${k[27]}"'",u,":");for(i=n+1;i<n+4;i++)u[i]=u[n];split("'"${k[28]}"'",l,":");for(i=1;i<13;i++) if(o[i])print "\n"l[i]" ("u[i]")\n"o[i];} ' ' /^ {8}[^ ]/{print} ' ' BEGIN { L='${p[17]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n    "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n    [N/A]";"cksum "F|getline C;split(C, A);C=A[1];"stat -f%Sm "F|getline D;"file -b "F|getline T;if(T~/^Apple b/) { f="";l=0;while("'"${k[30]}"' "F|getline g) { l++;if(l<=L) f=f"\n    "g;};};if(T!~/^(AS.+ (En.+ )?text(, with v.+)?$|(Bo|PO).+ sh.+ text ex|XM)/) F=F"\n    '"${k[22]}"'"T;printf("'"${f[8]}"'",F,D,C,f);if(l>L) printf("'"${f[7]}"'",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' 's/^.{52}(.+) <.+/\1/p' ' /id: N|te: Y/{i++} END{print i} ' ' /kext:/ { split($0,a,":");p=a[1];k[S]='${k[25]}';k[U]='${k[26]}';v[S]="Safe";v[U]="true";for(i in k) { s=system("'"${k[30]}"'\\ :"k[i]" \""p"\"/*/I*|grep -qw "v[i]);if(!s) a[1]=a[1]" "i;};if(!a[2]) a[2]="'"${k[23]}"'";printf("'"${f[4]}"'",a[1],a[2]);next;} !/^ *$/ { p="'"${k[31]}"'\\ :'"${k[33]}"' \""$0"\"/*/'${k[32]}'";p|getline b;close(p);if(b~/, .+:/||b=="") b="'"${k[23]}"'";printf("'"${f[4]}"'",$0,b);} ' '/ en/!s/\.//p' ' NR>=13 { gsub(/[^0-9]/,"",$1);print;} ' ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9|"sort|uniq";} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?'${k[32]}'$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ / [VY]/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' '/^find: /!p;' ' /^p/{ s/.//g;x;s/\nu/'$'\f''/;s/(\n)c/\1'$'\f''/;s/\n\n//;p;};H;' ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */    /;p;' ' s/^.+ |\(.+\)$//g;p;' '1;END{if(NR<'${p[15]}')printf("^/(S|usr/(X|li))")}' ' /2/{print "WARN"};/4/{print "CRITICAL"};' ' /EVHF|MACR|^s/d;s/^.+: //p;' ' $3~/^[1-9][0-9]{0,2}(\.[1-9][0-9]{0,2}){2}$/ { i++;n=n"\n"$1"\t"$3;} END{ if(i>1)print n} ' s/{'\.|jnl: ','P.+:'}'//;s/ +([0-9]+)(.+)/\2 \1/p' ' /^ +iP.+:$/{ s/://;b0'$'\n'' };/es: ./{ /iOS/d;s/^.+://;b0'$'\n'' };/^ +C.+ted: +[NY]/H;/:$/b0'$'\n'' d;:0'$'\n'' x;/: +N/d;s/\n.+//p;' ' 1d;/:$/b0'$'\n'' $b0'$'\n'' /(D|^ *Loc.+): /{ s/^.+: //;H;};/(B2|[my]): /H;d;:0'$'\n'' x;/[my]: [AM]|m: I.+p$|^\/Vo/d;s/(^|\n) [ -~]+//g;s/(.+)\n(.+)/\2:\1/;s/\n//g;/[ -~]/p;' 's/$/'$'\f''(0|-(4[34])?)$/p' '|sort'{'|uniq'{,\ -c},\ -nr} ' s/^/'{5,6,7,8}$'\f''/;s/ *'$'\f'' */'$'\f''/g;p;' '/e:/{print $2}' ' /^[(]/{ s/....//;s/$/:/;N;/: [)]$/d;s/\n.+ ([^ ]+).$/\1/;H;};${ g;p;} ' 's/:.+$//p' '|wc -l' /{\\.{kext,xpc,'(appex|pluginkit)'}'\/(Contents\/)?'Info,'Launch[AD].+'}'\.plist$/p' 's/([-+.?])/\\\1/g;p' 's/, /\'$'\n/g;p' ' BEGIN{FS="\f"} { printf("'"${f[6]}"'",$1/2^30,$2);} ' ' /= D/&&$1!~/'{${k[24]},${k[29]}}'/ { getline d;if(d~"t") print $1;} ' ' BEGIN{FS="\t"} NR>1&&$NF!~/0x|\.([0-9]{3,}|[-0-9A-F]{36})$/ { print $NF"\f"a[split($(NF-1),a," ")];} ' '|tail -n'{${p[6]},${p[10]}} ' s/.+bus /Bus: /;s/,.+[(]/ /;s/,.+//p;' ' { $NF=$NF" Errors: "$1;$1="";} 1 ' ' 1s/^/\'$'\n''/;/^ +(([MNPRSV]|De|Li).+|Bus): .|d: Y/d;s/:$//;$d;p;' ' BEGIN { RS=",";FS=":";} $1~"name" { gsub("\"","",$2);print $2;} ' '|grep -q e:/' '/[^ .]/p' '{ print $1}' ' /^ +N.+: [1-9]/ { i++;} END { if(i) print "system: "i;} ' ' NF { print "'{admin,user}' "$NF;exit;} ' ' /se.+ =/,/[\}]/!d;/[=\}]/!p ' ' 3,4d;/^ +D|Of|Fu| [0B]/d;s/^  |:$//g;$!H;${ x;/:/p;} ' ' BEGIN { FS=": ";} NR==1 { sub(":","");h="\n"$1"\n";} /:$/ { l=$1;next;} $1~"S"&&$2!~3 { getline;next;} /^ {6}I/ { i++;L[i]=l" "$2;if(i=='${p[24]}') nextfile;} END { if(i) print h;for(j=0;j<i;j++) print L[i-j];} ' ' /./H;${ x;s/\n//;s/\n/, /g;/,/p;} ' ' {if(int($6)>'${p[25]}')printf("swap used %.1f\n",$6/1024)} ' ' BEGIN{FS="\""} $3~/ t/&&$2!~/'{${k[24]},${k[29]}}'/{print $2} ' ' int($1)>13 ' p ' BEGIN{FS="DB="} { sub(/\.db.*/,".db",$2);print $2;} ' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps crontab kextfind top pkgutil "${k[30]}\\" echo cksum kextstat launchctl smcDiagnose sysctl\ -n defaults\ read stat lsbom 'mdfind -onlyin' env pluginkit scutil 'dtrace -q -x aggsortrev -n' security sed\ -En awk 'dscl . -read' networksetup mdutil lsof test osascript\ -e netstat mdls route cat uname );c2=(${k[21]}loginwindow\ LoginHook ' /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'" 'L*/Ca*/'${k[21]}'Saf*/E* -d 2 -name '${k[32]} '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' -i '-nl -print' '-F \$Sender -k Level Nle 3 -k Facility Req "'${k[21]}'('{'bird|.*i?clou','lsu|sha'}')"' "-f'%N: %l' Desktop {/,}L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message CRne '0xdc008012|(allow|call)ing|Goog|(mplet|nabl)ed|ry HD|safe b|xpm' -k Message CReq 'bad |Can.t l|corru|dead|fail|GPU |hfs: Ru|inval|Limiti|v_c|NVDA[(]|pagin|Purg(ed|in)|error|Refus|TCON|tim(ed? ?|ing )o|trig|WARN' " '-du -n DEV -n EDEV 1 10' 'acrx -o%cpu,comm,ruid' "' syscall::recvfrom:return {@a[execname,uid]=sum(arg0)} syscall::sendto:return {@b[execname,uid]=sum(arg0)} syscall::open*:entry {@c[execname,uid,copyinstr(arg0),errno]=count()} syscall::execve:return, syscall::posix_spawn:return {@d[execname,uid,ppid]=count()} syscall::fork:return, syscall::vfork:return, syscall::posix_spawn:return /arg0<0/ {@e[execname,uid,arg0]=count()} syscall:::return /errno!=0/ {@f[execname,uid,errno]=count()} io:::wait-start {self->t=timestamp} io:::wait-done /self->t/ { this->T=timestamp - self->t;@g[execname,uid]=sum(this->T);self->t=0;} io:::start {@h[execname,uid]=sum(args[0]->b_bcount)} tick-10sec { normalize(@a,2560000);normalize(@b,2560000);normalize(@c,10);normalize(@d,10);normalize(@e,10);normalize(@f,10);normalize(@g,10000000);normalize(@h,10240);printa(\"1\f%@d\f%s\f%d\n\",@a);printa(\"2\f%@d\f%s\f%d\n\",@b);printa(\"9\f%@d\f%s\f%d\f%s\f%d\n\",@c);printa(\"10\f%@d\f%s\f%d\f%d\n\",@d);printa(\"11\f%@d\f%s\f%d\f%d\n\",@e);printa(\"12\f%@d\f%s\f%d\f%d\n\",@f);printa(\"3\f%@d\f%s\f%d\n\",@g);printa(\"4\f%@d\f%s\f%d\n\",@h);exit(0);} '" '-f -pfc /var/db/r*/'${k[21]}'*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f'$'\f''%Sc'$'\f''%N -t%F {} \;' '/S*/*/Ca*/*xpc*' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' /\ kMDItemContentTypeTree=${k[21]}{bundle,mach-o-dylib} :Label "/p*/e*/{auto*,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {/p*,/usr/local}/e*/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list '-F "" -k Sender hidd -k Level Nle 3' /Library/Preferences/${k[21]}alf\ globalstate --proxy '-n get default' vm.swapusage --dns -get{dnsservers,info} dump-trust-settings\ {-s,-d,} -n1 '-R -ce -l1 -n5 -o'{'prt -stats prt','mem -stats mem'}',command,uid' -kl -l -s\ / '--regexp --files '${k[21]}'pkg.*' '+c0 -i4TCP:0-1023' ${k[21]}dashboard\ layer-gadgets '-d /L*/Mana*/$USER' '-app Safari WebKitDNSPrefetchingEnabled' '-Fcu +c0 -l' -m 'L*/{Con*/*/Data/L*/,}Pref* -type f -size 0c -name *.plist.???????' kern.memorystatus_vm_pressure_level '3>&1 >&- 2>&3' '-F \$Message -k Sender kernel -k Message CReq "'{'n Cause: -','(a und|I/O |jnl_io.+)err','USBF:.+bus'}'"' -name\ kMDItem${k[33]} -T\ hfs '-n get default' -listnetworkserviceorder :${k[33]} :CFBundleDisplayName $EUID {'$TMPDIR../C ','/{S*/,}'}'L*/{,Co*/*/*/L*/}{Cache,Log}s -type f -size +'${p[11]}'G -exec stat -f%z'$'\f''%N {} \;' \ /v*/d*/*/*l*d{,.*.$UID}/* '-app Safari UserStyleSheetEnabled' 'L*/A*/Fi*/P*/*/a*.json' users/$USER\ HomeDirectory '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' ' -F "\$Time \$(Sender): \$Message" -k Sender Rne "launchd|nsurls" -k Level Nle 3 -k Facility R'{'ne "user|','eq "'}'console" -k Message CRne "[{}<>]|asser|commit - no t|deprec|done |fmfd|Goog|ksho|ndum|obso|realp|rned f|sandbox ex|/root" ' getenv '/ "kMDItemDateAdded>=\$time.now(-'${p[23]}')&&kMDItem'${k[33]}'=*"' -m\ / '' ' -F "\$Time \$(RefProc): \$Message" -k Sender Req launchd -k Level Nle 3 -k Message Rne "asse|bug|File ex|hij|Ig|Jet|key is|lid t|Plea|ship" ' print{,-disabled}\ {system,user/$UID} -r ' -F "\$Message" -k Sender nsurlstoraged -k Time ge -1h -k Level Nle 4 -k Message Req "^(ER|IN)" ' );N1=${#c2[@]};for j in {0..20};do c2[N1+j]=SP${k[j]}DataType;done;l=({Restricted\ ,Lock,Pro}files POST Battery {Safari,App,{Bad,Loaded}\ kernel,Firefox}\ extensions System\ load boot\ args FileVault\ {2,1} {Kernel,System,Console,launchd}\ log SMC Login\ hook 'I/O per process' 'High file counts' UID {Daemons,Agents}\ {load,disabl}ed {Admin,Root}\ access Stylesheet Library\ paths{,' ('{shell,launchd}\)} Font\ issues Firewall Proxies DNS TCP/IP Wi-Fi 'Elapsed time (sec)' {Root,User}\ crontab {Global,User}' login items' Spotlight Memory\ pressure Listeners Widgets Parental\ Controls Prefetching Nets Volumes {Continuity,I/O,iCloud,HID,HCI}\ errors {User,System}\ caches/logs XPC\ cache Startup\ items Shutdown\ codes Heat Diagnostic\ reports Bad\ {plist,cache}s 'VM (GiB)' Bundles{,' (new)'} Trust\ settings Activity Free\ space );N3=${#l[@]};for i in {0..8};do l[N3+i]=${k[5+i]};done;F() { local x="${s[$1]}";[[ "$x" =~ ^([\&\|\<\>]|$) ]]&&{ printf "$x";return;};:|${c1[30]} "$x" 2>&-;printf "%s \'%s\'" "|${c1[30+$?]}" "$x";};A0() { Q=6;v[2]=1;id -G|grep -qw 80;v[1]=$?;((v[1]))||{ Q=7;sudo -v;v[2]=$?;((v[2]))||Q=8;};v[3]=`date +%s`;date '+Start time: %T %D%n';printf '\n[Process started]\n\n'>&4;printf 'Revision: %s\n\n' ${p[0]};};A1() { local c="${c1[$1]} ${c2[$2]}";shift 2;c="$c ` while [[ "$1" ]];do F $1;shift;done`";((P2))&&{ c="sudo $c";P2=;};v=`eval "$c"`;[[ "$v" ]];};A2() { local c="${c1[$1]}";[[ "$c" =~ ^(awk|sed ) ]]&&c="$c '${s[$2]}'"||c="$c ${c2[$2]}";shift 2;local d=` while [[ "$1" ]];do F $1;shift;done`;((P2))&&{ c="sudo $c";P2=;};local a;v=` while read a;do eval "$c '$a' $d";done<<<"$v";`;[[ "$v" ]];};A3(){ v=$((`date +%s`-v[3]));};export -f A1 A2;B1() { v=No;! ((v[1]))&&{ v=;P1=1;};};eval "`type -a B1|sed '1d;s/1/2/'`";B3(){ v[$1]="$v";};B4() { local i=$1;local j=$2;shift 2;local c="cat` while [[ "$1" ]];do F $1;shift;done`";v[j]=`eval "{ $c;}"<<<"${v[i]}"`;};B5(){ v="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d$'\e' <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F$'\e' ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`egrep -v "${v[$1]}"<<<"$v"|sort`;};eval "`type -a B7|sed '1d;s/7/8/;s/-v //'`";C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { B4 0 0 63&&C1 1 $1;};C4() { echo $'\t'"Part $((++P)) of $Q done at $((`date +%s`-v[3])) sec">&4;};C5() { sudo -k;pbcopy<<<"$o";printf '\n\tThe test results are on the Clipboard.\n\n\tPlease close this window.\n';exit 2>&-;};for i in 1 2;do eval D$((i-1))'() { A'$i' $@;C0;};';for j in 2 3;do eval D$((i+2*j-3))'() { local x=$1;shift;A'$i' $@;C'$j' $x;};';done;done;trap C5 2;o=$({ A0;D0 0 N1+1 2;D0 0 $N1 1;B1;C2 27;B1&&! B2&&C2 28;D2 22 15 63;D0 0 N1+2 3;D0 0 N1+15 17;D4 3 0 N1+3 4;D4 4 0 N1+4 5;D4 N3+4 0 N1+9 59;D0 0 N1+16 99;for i in 0 1 2;do D4 N3+i 0 N1+5+i 6;done;D4 N3+3 0 N1+8 71;D4 62 1 10 7;D4 10 1 11 8;B2&&D4 18 19 53 67;D2 11 2 12 9;D2 12 3 13 10;D2 13 32 70 101 25;D2 71 6 76 13;D2 45 20 52 66;A1 7 77 14;B3 28;A1 20 31 111;B6 0 28 5;B4 0 0 110;C2 66;D4 70 8 15 38;D0 9 16 16 77 45;C4;B2&&D0 35 49 61 75 76 78 45;B2&&{ D0 28 17 45;C4;};D0 12 40 54 16 79 45;D0 12 39 54 16 80 45;D4 31 25 77 15&&{ B4 0 8 103;B4 8 0;A2 18 74;B6 8 0 3;C3 32;};B2&&D4 19 21 0;B2&&D4 40 10 42;D2 2 0 N1+19 46 84;D2 44 34 43 53;D2 59 22 20 32;D2 33 0 N1+14 51;for i in {0..2};do A1 29 35+i 104+i;B3 25+i;done;B6 25 27 5;B6 0 26 5;B4 0 0 110;C2 69;D2 34 21 28 35;D4 35 27 29 36;A1 40 59 81;B3 18;A1 33 60 82;B8 18;B4 0 19 83;A1 27 32 39&&{ B3 20;B4 19 0;A2 33 33 40;B3 21;B6 20 21 3;};C2 36;D4 50 38 5 68;B4 19 0;D5 37 33 34 42;B2&&D4 46 35 45 55;D4 38 0 N1+20 43;B2&&D4 58 4 65 76 91;D4 63 4 19 44 75 95 12;B1&&{ D4 53 5 55 75 69&&D4 51 6 58 31;D4 56 5 56 97 75 98&&D0 0 N1+7 99;D2 55 5 27 84;D4 61 5 54 75 70;D4 14 5 14 96;D4 15 5 72 96;D4 17 5 78 96;C4;};D4 16 5 73 96;A1 13 44 74 18;C4;B3 4;B4 4 0 85;A2 14 61 89;B4 0 5 19 102;A1 17 41 50;B7 5;C3 8;B4 4 0 88;A2 14 24 89;C4;B4 0 6 19 102;B4 4 0 86;A2 14 61 89;B4 0 7 19 102;B5 6 7;B4 0 11 73 102;A1 42 83 114;j=$?;for i in 0 1;do ((! j))||((i))||B2&&A1 18 $((79+i-(i+53)*j)) 107+8*j 94 74;B7 11;B4 0 0 11;C3 23+2*i;D4 24+2*i 14 66+i 92+i;done;D4 60 4 21 24;D4 42 14 1 62;D4 43 37 2 90 48;D4 41 10 42;D2 48 36 47 25;A1 4 3 60&&{ B3 9;A2 14 61;B4 0 10 21;B4 9 0;A2 14 62;B4 0 0 21;B6 0 10 4;C3 5;};D4 9 41 69 100;D2 29 21 68 35;D2 49 21 48 49;B4 4 22 57 102;A1 21 46 56 74;B7 22;B4 0 0 58;C3 47;D4 54 5 7 75 76 69;D4 52 5 8 75 76 69;D4 57 4 64 76 91;D2 0 4 4 84;D2 1 4 51 84;D4 21 22 9 37;D0 0 N1+17 108;A1 23 18 28 89;B4 0 16 22 102;A1 16 25 33;B7 16;B4 0 0 34;D1 31 47;D4 64 4 71 41;D4 65 5 84 116 74;C4;B4 4 12 26 89 23 102;for i in {0..3};do A1 0 N1+10+i 72 74;B7 12;B4 0 0 52;C3 N3+5+i;((i))||C4;done;A1 24 22 29;B7 12;B3 14;A2 39 57 30;B3 15;B6 14 15 4;C3 67;A1 24 75 74;B3 23;A2 39 57 30;B3 24;B6 23 24 4;C3 68;B4 4 13 27 89 65;A1 24 23;B7 13;C3 30;B4 4 0 87;A2 14 61 89 20;B4 0 17;A1 26 50 64;B7 17;C3 6;D0 0 N1+18 109;D4 7 11 6;A3;C2 39;C4;} 4>&2 2>/dev/null;);C5
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. 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 and start typing the name.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. 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 test will run anyway, but it will produce less information. If you don't know the password, or if you prefer not to enter it, just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, a series of lines will appear in the Terminal window like this:
    [Process started]
            Part 1 of 8 done at … sec
            Part 8 of 8 done at … sec
            The test results are on the Clipboard.
            Please close this window.
    [Process completed]
    The intervals between parts won't be exactly equal, but they give a rough indication of progress. The total number of parts may be different from what's shown here.
    Wait for the final message "Process completed" to appear. If you don't see it within about ten minutes, the test probably won't complete in a reasonable time. In that case, press the key combination control-C or command-period to stop it and go to the next step. You'll have incomplete results, but still something.
    12. When the test is complete, or if you stopped it because it was taking too long, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I may not agree with them.
    Copyright © 2014, 2015 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

Maybe you are looking for