SocketInputStream.read(byte[], int, int) extremely slow

Hi everyone,
I'm trying to send several commands to a server and for each command read one or more lines as response. To do that I'm using a good old Socket connection. I'm reading the response lines with BufferedReader.readLine, but it's very slow. VisualVM says, that SocketInputStream.read(byte[], int, int) is consuming most of the cpu time. A perl script, which does the same job, finishes in no time. So it's not a problem with the server.
I'm runnning java version "1.6.0_12"
Java(TM) SE Runtime Environment (build 1.6.0_12-b04)
Java HotSpot(TM) Server VM (build 11.2-b01, mixed mode) on Linux henni 2.6.25-gentoo-r7 #3 SMP PREEMPT Sat Jul 26 19:35:54 CEST 2008 i686 Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz GenuineIntel GNU/Linux and here's my code
private List<Response> readResponse() throws IOException {
        List<Response> responses = new ArrayList<Response>();
        String line = "";
        while ( (line = in.readLine()) != null) {
            int code = -1;
            try {
                code = Integer.parseInt(line.substring(0, 3));
                line = line.substring(4);
            } catch (Exception e) {
                code = -1;
            // TODO create different response objects ?!?
            NotImplemented res = new NotImplemented(code, line);
            responses.add(res);
            // we received an "end of response" line and can stop reading from the socket
            if(code >= 200 && code < 300) {
                break;
        return responses;
    }Any hints are appreciated.
Best regards,
Henrik

Though it's almost an sscce I posted there, I will try to shrink it a little bit:
Dummy server:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.net.ServerSocket;
import java.net.Socket;
public class Server {
    public Server() throws IOException {
        ServerSocket ss = new ServerSocket(2011);
        Socket sock = ss.accept();
        BufferedReader br = new BufferedReader(new InputStreamReader(sock.getInputStream()));
        PrintStream ps = new PrintStream(sock.getOutputStream());
        ps.println("200 Welcome on the dummy server");
        String line = "";
        while(line != null) {
            line = br.readLine();
            ps.println("200 Ready.");
    public static void main(String[] args) throws IOException {
        new Server();
}the client:
import java.io.IOException;
import java.io.PrintStream;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Scanner;
import de.berlios.vch.Config;
public class Client {
    private Socket socket;
    private PrintStream out;
    private Scanner scanner;
    public Client(String host, int port, int timeout, String encoding)
        throws UnknownHostException, IOException {
        socket = new Socket();
        InetSocketAddress sa = new InetSocketAddress(host, port);
        socket.connect(sa, timeout);
        out = new PrintStream(socket.getOutputStream(), true, encoding);
        scanner = new Scanner(socket.getInputStream(), encoding);
    public synchronized void send(String cmd) throws IOException {
        // send command to server
        out.println(cmd);
        // read response lines
        readResponse();
    public void readResponse() throws IOException {
        while (scanner.hasNextLine()) {
            String line = scanner.nextLine();
            System.out.println(line);
            int code = -1;
            try {
                code = Integer.parseInt(line.substring(0, 3));
                line = line.substring(4);
            } catch (Exception e) {
                code = -1;
            if (code >= 200 && code < 300) {
                break;
    public static void main(String[] args) {
        try {
            Client con = new Client("localhost", 2011, 500, "utf-8");
            con.readResponse();
            con.send("version 0.1");
            con.send("menu = new menu Feeds");
            con.send("menu.EnableEvent close");
            con.send("menu.SetColorKeyText -red 'Öffnen'");
            for (int i = 0; i < 100; i++) {
                String groupId = "group"+i;
                long start = System.currentTimeMillis();
                con.send(groupId+" = menu.AddNew OsdItem '"+groupId+"'");
                con.send(groupId+".EnableEvent keyOk keyRed");
                long stop = System.currentTimeMillis();
                System.out.println((stop-start)+"ms");
        } catch (Exception e) {
            e.printStackTrace();
}This code makes me believe, it's not a java problem, but some system setting of my os.

Similar Messages

  • Reader 11.0.2 extremely slow on Win 8 Pro x64

    I have a Core i7 quad-core with 8Gb of ram and a hybrid ssd/hdd 750Gb drive. My computer is quite speedy with everthing _except_ adobe reader. 50% of the time when I try to open a .pdf of various sizes (from 300Kb to 300Mb) the file just never opens at all, and I have to open task manager and kill the adobe process and try it all over. When it does open, a 500Kb file will take about 90 seconds to open, if you want to scroll down? that's another 90 seconds. Want to close Adobe Reader, you guessed it, another 90 seconds go by, if it doesn't completely freeze.
    I've reinstalled twice. I even used Revo Uninstalller to really remove Adobe Reader and then re-install. Same slower than molasses in January going uphill on a cold day result.
    I do not have 3rd party Anti-Virus as Windows 8 has it's Defender renamed Security Essentials re-renamed Defender.
    PC Specs:
    HP ProBook 4530s
    Intel Core i7 2630QM Sandy Bridge 2.00 GHz Quad core, with Hyperthreading (8 Logical Threads)
    8.00 GB of DDR3-1333 Dual Channel
    Seagate Momentus XT SATA 6.0Gb/s Solid State Hybrid Drive
    AMD Radeon HD 6490M discrete graphics
    Windows 8 Professional x64 (clean install, MS Technet)
    Please Advise.

    I came looking for an answer to the same problem.
    Ever since the recent upgrade to Acrobat Reader 11.0.2 the program has been unsually slow off and on.
    Mine isn't as bad as PhlMike17's, but I too am running a quad core with 8gigs windows pro x64 up to date, I use mostly for Illustrator and Photoshop/web design.
    This morning I checked back to a 275kb 1page pdf image copy of an estimate from a partner company, and it loaded then hung for 5-10 seconds as has been the norm since upgrading.
    Sometimes it doesn't hang at all, file size doesn't seem to be an issue.
    I always do the upgrades.
    I am running the Japanese version.
    cheers.

  • NetworkStream read Extremely slow.

    I'm using a C# networkstream to read/write to an IP address (not a DNS address).
    My program is replacing a very old assembly language program that was on a mainframe.  Now it's on Windows.
    I'm writing/reading less than 200 bytes. The strings end with a LineFeed character so I'm using a StreamReader.Readline() to read a response, after my stream.write().  On the IBM a write/read cycle took 300ms.
    Now about after every 2nd or 3 read, it takes 15 seconds for the read.  When I read the log of the sender it is sending the data in < a second.  For some reason I get these 15 second delays.
    I'm clueless on what's happening.
    p.s.
    One weird thing I noticed if I set the stream read timeout to 4 seconds, it times out around 4 seconds.  If I set the timeout to 10 seconds or no timeout, it times out after 15 seconds.

    Hi chunk,
    >>One weird thing I noticed if I set the stream read timeout to 4 seconds, it times out around 4 seconds.  If I set the timeout to 10 seconds or no timeout, it times out after 15 seconds.
    Firstly about "timeout" issue, I suspect that
    NetworkStream.Read
    method if there is no data to be read will be blocked, just like Console.readline() method will block the same in the absence of input.
    My suggestion is using
    NetworkStream.BeginRead
    Method that begins an asynchronous read from the NetworkStream or put your Read() to another thread.
    Like the following sample code
    BackgroundWorker bgWorkder = new BackgroundWorker();
    bgWorkder.DoWork += new DoWorkEventHandler(bgWorkder_DoWork);
    bgWorkder.RunWorkerAsync();
    void bgWorkder_DoWork(object sender, DoWorkEventArgs e)
    T IPAddress ip = IPAddress.Parse(txtIp.Text);
    IPEndPoint ipPoint = new IPEndPoint(ip, Convert.ToInt16(txtPort.Text));
    tcpClient = new TcpClient();
    tcpClient.Connect(ipPoint);
    while (true)
    NetworkStream nStream = tcpClient.GetStream();
    byte[] buffer = new byte[102400];
    int received = nStream.Read(buffer, 0, buffer.Length);
    txtRec.AppendText(Encoding.GetEncoding("GB2312").GetString(buffer));
    txtRec.AppendText("\r\n");
    Secondly, NetworkStream read Extremely slow, yes, many
    people reported this
    problem.
    Someone followed the solution of the registry hack of the PSH bit (IgnorePushBitOnReceives) and that solved it. Please also have a try. Please also refer to the following threads for more detailed information.
    References
    Why is NetworkStream.Read so slow?
    .NET NetworkStream Read slowness
    TcpClient receive delay of over 500ms
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I go from byte to int?

    I am writing a program which reads a file in, transforms it into a byte array and then extracts information out of the byte array. One of these bits of information is an integer. I am having great trouble actually transforming the byte[] containing the bytes for the integer actually into the integer!
    I've Googled and looked around forums and I'm just not sure why it's not working. :s
    This is what I have so far:
         private int bytesToInt(byte[] b) {
              int bLen = b.length;
              System.out.println("length: " + bLen);
              int result;
              switch (bLen) {
                   case 1: result = (int)b[0] & 0xFF; break;
                   //case 2: return b[0]
                   default: result = 999; break;
              } // switch
              return result;
         } // bytesToInt()When i run it at the moment, with the integer 5 in the file, it returns 53 instead.. Any help would be much appreciated!

    I seem to be going round in circles with this!! I've tried various ways and i'm just not getting it. :s
    This is what i've tried:
         private int bytesToInt(byte[] b) throws IOException {
              // takes the bytes specifying the win amount, casts to char and parses to int
              int bLen = b.length;
              char[] ch = null;
              int result = 0;
              // can take numbers up to 999
              switch (bLen) {
                   case 1: ch[0] = (char)(b[0] + '0');
                   result = Character.digit(ch[0], 10);
                   break;
                   // case 2: ch[0] = (char)(b[0] + '0'); ch[1] = (char)(b[1] + '0'); break;
                   // case 3:  ch[0] = (char)(b[0] + '0'); ch[1] = (char)(b[1] + '0'); ch[2] = (char)(b[2] + '0'); break;
                   default: result = 0; break;
              } // switch
              return result;
         } // bytesToInt()which gave me the error:
    Exception in thread "main" java.lang.NullPointerException
         at lod.LODMapLoader2.bytesToInt(LODMapLoader2.java:112)
         at lod.LODMapLoader2.getWinAmount(LODMapLoader2.java:99)
         at lod.LODMapLoader2.main(LODMapLoader2.java:181)
    Vanessa-Clarkes-MacBook:src vrc20$ javac lod/LODMapLoader2.java
    Vanessa-Clarkes-MacBook:src vrc20$ java lod/LODMapLoader2 testFile
    and so then i tried to simplify it and only consider if i was to be given one int..
         private int bytesToInt(byte[] b) throws IOException {
              // takes the bytes specifying the win amount, casts to char and parses to int
              int bLen = b.length;
              char ch;
              int result = 0;
              // can take numbers up to 9
              ch = (char)(b[0] + '0');
              result = (int)ch - '0';
              return result;
         } // bytesToInt()This ended up giving me 53 again. I'm feeling slightly frustrated.. What have I missed?

  • How to user bufferedreader.read(char[] cbuf,int off,int len)

    how to user bufferedreader.read(char[] cbuf,int off,int len)?
    can you give me an sample code? i dont understand the use of offset here... thanks!

    The offset simply gives you the ability to read in data starting at some point in the buffer other than the first character.
    If, for example, you are reading from some stream that is being filled slower than you are reading, then you can write a read loop that will fill the buffer with successive reads - the first at character 0, then next offset past the end of the first set of data, etc.

  • Convert byte[] into int

    Hey!
    How to convert a byte vector to an int?
    Byte[] to int?
    Thanks
    Mikael

    If you want to build an integer value out of four bytes, then I guess you'll need the left shift operator (<<) and bitwise inclusive OR operator (|)

  • My MacPro is extremely slow after upgrading to Yosemite 10.10, even while reading my newspaper on PDF

    Problem description:
    My Mac Pro is extremely slow after upgrading to Yosemite 10.10, even while reading my newspaper on PDF
    This is my EtreCheck print
    EtreCheck version: 2.0.11 (98)
    Report generated 17. november 2014 kl. 10.49.28 CET
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000 -
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: one day 15:45:13
    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) /  [Startup]: 498.88 GB (290.89 GB free)
      Encrypted AES-XTS UnlockedConverting
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Extensions
      [loaded] net.telestream.driver.TelestreamAudio (1.1.1 - SDK 10.8) Support
      /System/Library/Extensions
      [not loaded] com.devguru.driver.SamsungComposite (1.4.20 - SDK 10.6) Support
      /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.20 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.20 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.20 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.20 - SDK 10.6) Support
    Launch Agents: ℹ️
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
    Launch Daemons: ℹ️
      [failed] com.adobe.fpsaud.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
      [invalid?] com.torch.update.agent.plist Support
    User Launch Agents: ℹ️
      [loaded] com.genieo.completer.download.plist Support
      [loaded] com.genieo.completer.ltvbit.plist Support
      [loaded] com.genieo.completer.update.plist Support
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ℹ️
      None
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      DivX Web Player: Version: 3.2.3.1164 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      OVSHelper: Version: 1.1 Support
      Default Browser: Version: 600 - SDK 10.10
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      Unity Web Player: Version: UnityPlayer version 4.5.5f1 - SDK 10.6 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    User Internet Plug-ins: ℹ️
      NPRoblox: Version: 1, 2, 8, 25 - SDK 10.10 Support
      Google Earth Web Plug-in: Version: 7.1 Support
    Safari Extensions: ℹ️
      Omnibar
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
      Perian  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 498.88 GB Disk used: 207.99 GB
      Destinations:
      Elements [Local]
      Total size: 1.00 TB
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Adequate
      Backup size 1.00 TB > (Disk used 207.99 GB X 3)
    Top Processes by CPU: ℹ️
          89% lsregister
          3% WindowServer
          1% mds
          1% sysmond
          0% mtmd
    Top Processes by Memory: ℹ️
      142 MB Preview
      125 MB com.apple.WebKit.WebContent
      125 MB Finder
      86 MB ocspd
      77 MB com.apple.WebKit.Plugin.64
    Virtual Memory Information: ℹ️
      335 MB Free RAM
      1.63 GB Active RAM
      1.32 GB Inactive RAM
      776 MB Wired RAM
      17.27 GB Page-ins
      345 MB Page-outs

    Check out this thread:  https://discussions.apple.com/thread/6466590?start=0&tstart=0.
    For many users, the Folder Action Dispatcher is the culprit that eats almost all available memory if it is enabled on ~/Library/LaunchAgents.

  • SSRS 2008 R2 is extremely slow. The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes. I have read this is a bug in SSRS 2008 R2. We installed the most recent patches and service packs.

    SSRS 2008 R2 is extremely slow.  The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes.  I have read this is a bug in SSRS 2008 R2.  We installed the most recent patches and
    service packs.  Nothing we've done so far has fixed it and I see that I'm not the only person with this problem.  However I don't see any answers either.

    Hi Kim Sharp,
    According to your description that when you view the report it is extremely slow in SSRS 2008 R2 but it is very fast when execute the query in dataset designer, right?
    I have tested on my local environment and can‘t reproduce the issue. Obviously, it is the performance issue, rendering performance can be affected by a combination of factors that include hardware, number of concurrent users accessing reports, the amount
    of data in a report, design of the report, and output format. If you have parameters in your report which contains many values in the list, the bad performance as you mentioned is an known issue on 2008 R2 and already have the hotfix:
    http://support.microsoft.com/kb/2276203
    Any issue after applying the update, I recommend you that submit a feedback at https://connect.microsoft.com/SQLServer/ 
    If you don’t have, you can do some action to improve the performance when designing the report. Because how you create and update reports affects how fast the report renders.
    Actually, the Report Server ExecutionLog2  view contains reports performance data. You could make use of below query to see where the report processing time is being spent:
    After you determine whether the delay time is in data retrieval, report processing, or report rendering:
    use ReportServer
    SELECT TOP 10 ReportPath,parameters,
    TimeDataRetrieval + TimeProcessing + TimeRendering as [total time],
    TimeDataRetrieval, TimeProcessing, TimeRendering,
    ByteCount, [RowCount],Source, AdditionalInfo
    FROM ExecutionLog2
    ORDER BY Timestart DESC
    Use below methods to help troubleshoot issues according to the above query result :
    Troubleshooting Reports: Report Performance
    Besides this, you could also follow these articles for more information about this issue:
    Report Server Catalog Best Practices
    Performance, Snapshots, Caching (Reporting Services)
    Similar thread for your reference:
    SSRS slow
    Any problem, please feel free to ask
    Regards
    Vicky Liu

  • Read from 16 GB Micro SD is Extremely Slow

    I have had a new Blackberry Tour 9630 equipped with v4.7.1.40 software and a 16 GB micro SD card.  Reading files from the card is extremely slow.  I first noticed this with video playback (extremely jerky and freezes) and actually replaced my first 9630 a few days after purchasing it. 
    I eventually gave up on video playback but now have very recently been using Media Manager to upload files (.jpgs) from the 16 GB micro SD card Media Card to my laptop.  The bottom line is it is taking 10-15 minutes to upload 13 .jpg's (total 6.7 MB) and is a major pain in the butt.
    Some of the trouble shooting steps I have taken:
    - moved same 13 files to main memory on Blackberry then uploaded to pc in 10 seconds
    - moved micro SD card to my son's Samsung phone - uploaded the 13 .jpg's from it to laptop in 10 seconds (so the memory card is good)
    - installed Desktop Manager and Media Manager on my desktop pc and connected blackberry to it - same poor upload behaviour from files on micro CD equipped on the 9630
    - checked on blackberry Doc ID: KB05461 at http://www.blackberry.com/btsc/search.do?cmd=displ​ayKC&docType=kc&externalId=KB05461&sliceId=1&docTy​... and it states: 
         BlackBerry Device Software version Media card size limit
         BlackBerry Device Software version 4.5.0.81 Up to 16 GB
         BlackBerry Device Software version 4.6.0 and later Up to 32 GB
    so I should be equipped with the proper software vintage.
    I am not sure what to do next and would appreciate any and all assistance/idea's etc.
    Thx,
    Gerry

    You can use a USB flash drive & the camera connection kit. First download the pics to your computer.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import.
     Cheers, Tom

  • How can I make byte[] to int?(the byte order is diff for intel and sparc))

    i do a net program with java, it send message
    from sun to pc with socket, i want to change
    byte[] to int and int to byte[], the byte order is
    diff from sparc and intel, and i can not use
    the ByteArrayStream, is there any way?
    thanks.

    you can connect the headset to something like this
    http://www.ebay.com/itm/NEW-MaelineA-3-5mm-Female-to-2-Male-Gold-Plated-Headphon e-Mic-Audio-Y-Splitter-/381100440348
    and then connect the mic to the input and the headset to the headset port

  • Extremely slow FieldPoint read

    I have a number of working programs (programmed by my predecessor) which measure thermocouple temperatures, using sub-vi to open a refnum to an FP device, take a measurement, and then close the refnum again (vi attached).
    I can't pin down exactly when, but occasionally the refnums returned by the OpenFP vi are different with each sub-vi execution, and when that happens the FP Read sub-vi seems to slow to a crawl. The majority of the time the same refnum is returned and it all runs very quickly. 
    Does anyone have any idea why this would suddenly be returning a different refnum with each iteration?
    Attachments:
    Thermocouple Measurement by FP (1_0) single.vi ‏23 KB

    Hi ravens fan, thanks for the reply and link; that's a great guide, and I'll be sure to make use of it. Having started labview with a bunch of existing programs and mostly only modifications to be done, I've had to hit the ground running and not had a chance to learn proper methods from the ground up. Quick guides like that really help.
    The sub-vi is being called within a while loop as part of PID control, with temperature as the reference variable. It loops at ~2Hz, though when it's running smoothly it can happily update at >10 times that. When it slows down though, that drops to ~0.2Hz.
    I am aware of the principle to only open/close a session once within a vi, but this vi was programmed by my predecessor, and has always worked, so I'm trying to adopt an 'if it ain't broke, don't fix it' policy (otherwise i'd be incurring a whole lot of work!). And the majority of the time it does work - it runs fine on a dev machine, but if i build it, it runs slowly. If i then close the built version and re-open the dev version, that also now runs slowly... But if i open the sub-vi being called and hit 'stop' on that while it's running, then everything goes back to normal. Perhaps it's closing the FP Open refnum rather than just the bank refnum?

  • Formatted on  XP - EXTREMELY SLOW read/write on the Mac !!!!

    Man this iPod is wack!! Im using the iPod mini in Disk Mode to transfer bits (updaters since my XP machine is NEVER connected to the net) back and forth between my PowerBook and my XP Intel based machine. Obviously i set up and formatted the iPod Mini on the XP machine.
    Observation, file read/write times are unacceptably SLOW on Mac and the PC. Did Apple deliberately make this thing unusable in this situation? This thing has a transfer speed as if it were connected to a USB 1.1 port but it is NOT, on any of my machines. I format my USB Flash Drive (SanDisk Cruzer Titanium) on the same XP machine, use the same ports and it's read/write times are at least 5 times faster than the Mini !!!
    When i format and setup the iPod Mini on the Mac then install MacDrive on the PC astonishingly the read/write times significantly increase on BOTH Mac and the PC. As i suggested i think there is something drastically wrong with Apple's PC iPod setup, there is NO way my other devices formatted on the PC have such abysmal performance . Man i click on a folder in the Finder of the PC formatted iPod and it take about 3 seconds until the files inside are displayed...this is also the case on the PC.
    Anyone else experienced this?
    I was going to buy another iPod specifically for transferring data between my Mac's and my colleagues PC's, but there is no way i will with such severely degraded read/write performance.
    Best

    Apparently this is not a single isolated case.
    Scott Aronian Posts :
    "On Mac FAT32 Format Slower Than HFS "
    My 60GB iPod came in Windows FAT32 format which I liked since I could use it in disk mode on both Mac & Windows. However it seemed slow to start playing video and when switching between video files.
    I did some timing tests and on the Mac FAT32 was much slower than HFS.
    FAT32
    Start playing movie = 12s
    Stop movie and restart at same location = between 12-30s
    HFS
    Start playing movie = 5s
    Stop movie and restart at same location = between 6s
    If you have a Mac and your new 5G iPod is formatted for Windows, you may want to use the iPod Updated to restore and make the drive HFS.
    There is NO such performance problems with USB Flash drives when formatted to Fat32 on PC's i have tested many and they perform similar on BOTH platforms.
    Something fishy goin on here

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

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

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

  • 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.

  • My mini Mac with a i5 processor is extremely slow to open documents and programs. Is there a solution to this??

    Anyone can asset me please. My mini Mac is a 2.3 GHZ i5 Core. 8 GB Ram 13333 MHz with OS 10.7.5.
    Pretty much since day one this computer is very..extremely slow to respond to any command. Opening documents or programs the system spin for ever.
    Any idea what could be causing this???  I was told that to many pictures slow down the system, I have only 700 pic on file

    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.CS5ServiceManager com.adobe.fpsaud com.apple.AirPortBaseStationAgent com.apple.installer.osmessagetracing com.google.keystone.agent com.google.keystone.daemon com.microsoft.office.licensing.helper com.oracle.java.Helper-Tool com.oracle.java.Java-Updater com.oracle.java.JavaUpdateHelper ' ' 879294308 1083382502 1274181950 464843899 1233118628 3301885676 891055588 998894468 695903914 1106243579 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/^ */   /;' '/\./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.

Maybe you are looking for