SQL server is Running Very Slow

hi,
I used this following query for finding out how many connection are connected, it is showing that 70 connections,my ram is 16GB,  but still my sql server is running very slow. how can i increase my sql server speed. or how can i analyses that.I checked 
even when no job was running, but still same speed. I'm using store procedures, SQL jobs no inline queries.
SELECT
DB_NAME(dbid) as DBName,
COUNT(dbid) as NumberOfConnections,
loginame as LoginName
FROM
sys.sysprocesses
WHERE
dbid > 0
GROUP BY
dbid, loginame

hi,
I used this following query for finding out how many connection are connected, it is showing that 30 connections,my ram is 16GB,  but still my sql server is running very slow. how can i increase my sql server speed. or how can i analyses that.I checked 
even when no job was running, but still same speed.
SELECT
DB_NAME(dbid) as DBName,
COUNT(dbid) as NumberOfConnections,
loginame as LoginName
FROM
sys.sysprocesses
WHERE
dbid > 0
GROUP BY
dbid, loginame

Similar Messages

  • PRD server is running very slow.. How performance can be improve??

    Hi Experts,
    Here I am getting the problem, my PRD server getting dead slow unexpectedly. Here we are using logon load balancing, appserver is running fine but DB server getting very slow. its only happening for particular time only 15 -20 mins. Please help us to rectify the solution.
    PRD Details:
    SAP ECC 6.0
    MaxDB 7.6
    SLES-10.2
    Transaction Taking too much Time:
    Output of: sappfpar check Pf=/usr/sap/SID/SYS/profile/SID_DVEBMGS00_hostname.check
    AVG dialog response time:
    TOP CPU:
    Buffer:
    OS:
    WP:

    In most typical cases of PRIV sessions and your ST02 screenshot is due to lack of memory on the system.  The red on ST02 means you are swapping, which is not ideal; I can't see the actual numbers but it looks like CUA is in the millions?
    If your system was restarted recently then you need to update that buffer to be larger and lower the amount of swaps.  If you haven't rebooted/restarted the system recently, then you need to review how often the swaps are occurring and adjust to fit your needs.

  • Server Admin runs very slow on Server 10.6.2

    After what only could be called a power disaster that brought our XServe down hard, when I run Server Admin on the XServe, it's dog slow...it works, but it takes forever to do anything. However, Server Tools installed on my Macbook runs it just as fast as ever. Does anyone have any suggestions besides reinstalling? As our server is still in the set up stages, a backup of it hadn't been made yet...
    Thoughts anyone?

    The usual triggers for this (mis)behavior are a bad local DNS configuration within whatever is serving your local DNS, and potentially a firewall issue within the client.
    If you've not messed around with your client firewall settings since this last worked, I'll bet on scrozzled DNS.
    Verify your forward and reverse DNS translations and the correctness of your local DNS server set-up using the dig tool.
    [My DNS notes|http://labs.hoffmanlabs.com/node/1436]; the set-up and verification of DNS on Snow Leopard Server.
    As for auxiliary power, APC SMART-UPS 1500 series is a reasonable option for a less-interruptable power supply (LIPS) for an Xserve box and its usual array of companion direct-attached accouterments. And the USB connection from this model is recognized and honored by Mac OS X Server without add-on software; the box will shut down. (I'd look at adding LIPS capacity if you have a FC SAN and Xserve RAID or such, though.)

  • My Database Server is running very slow

    Hi,
    I have two tables as shown below
    CREATE TABLE DummyTbl1
    Id           NUMBER(10),
    Type           NUMBER(10),
    ComponentId      NUMBER(10),
    CompType      NUMBER(10),
    CompNum      NUMBER(10),
    CompParentNum NUMBER(10),
    CompDBId      NUMBER(10),
    TimeStamp      DATE,
    Severity      NUMBER(10),
    Category      NUMBER(10),
    State      NUMBER(10),
    CauseType      NUMBER(10),
    CauseCode      NUMBER(10),
    UnitType      NUMBER(10),
    UnitId      NUMBER(10),
    UnitName      VARCHAR2(256),
    UnitDBId      NUMBER(10),
    ServerName      VARCHAR2(256),
    AckTimeStamp      DATE,
    DelTimeStamp DATE,
    StrParam      VARCHAR2(256),
    CustomerId      NUMBER(10),
    ParentCustId NUMBER(10),
    ExtraParam1      NUMBER(10),
    ExtraParam2      NUMBER(10),
    ExtraParam3      NUMBER(10),
    ExtraStrParam VARCHAR2(256),
    futureInt1      NUMBER (10),
    futureInt2      NUMBER (10),
    futureInt3      NUMBER (10) ,
    futureInt4      NUMBER (10) ,
    futureStr1      VARCHAR2(256) ,
    futureStr2      VARCHAR2(256)
    CREATE TABLE DummyTbl2
    Id                NUMBER(10),
    ComponentId           NUMBER(10),
    CustomerId           NUMBER(10),
    ProfileId           NUMBER(10),
    ParentProfileId      NUMBER(10),
    String           LONG RAW,
    ScriptName           VARCHAR2(256),
    SrcIPAddress           NUMBER(10),
    DestIPAddress      NUMBER(10),
    SrcPort           NUMBER(10),
    DestPort           NUMBER(10),
    SessionId           NUMBER(10),
    IFId                NUMBER (10),
    SessionDir           NUMBER (10),
    RuleId           NUMBER (10),
    CustomerName           RAW(512),
    futureInt1           NUMBER (10),
    futureInt2           NUMBER (10),
    futureInt3           NUMBER (10),
    futureInt4           NUMBER (10),
    futureStr1           VARCHAR2(256),
    futureStr2           VARCHAR2(256)
    I also have a sequence
    CREATE SEQUENCE dummyid_seq START WITH 1 INCREMENT BY 1;
    The queries I am doing per transaction are as below
    1)SELECT dummyid_seq.NextVal FROM Dual;
    2)INSERT INTO DummyTbl1 (Id, ComponentId, CompNum, CompType, CompParentNum, CompDbId, TimeStamp, Severity, Category,
    State, CauseType, CauseCode, UnitType, UnitId, UnitName, UnitDBId, ServerName, StrParam, CustomerId, ParentCustId,
    ExtraParam1, ExtraParam2, ExtraParam3, ExtraStrParam,Type) VALUES( 186,805322753, 1, 3, 1, 1,
    TO_DATE('2004-05-06 10:26:07', 'YYYY-MM-DD HH24:MI:SS'), 3, 2, 2, 0, 10, 0, 0, '',0, 'ipe3k_vpn',
    'FTP_CTRL', 18, 0,1,1,0,'H',3);
    3)INSERT INTO DummyTbl2 (Id, ComponentId, CustomerId, ScriptName, ProfileId, String, ParentProfileId,
    SrcIPAddress, DestIPAddress, SrcPort, DestPort, SessionId, IFid, SessionDir, RuleId, CustomerName) VALUES ( 186,
    805322753, 18, '', 0, 'ABCDABCDABCDABCD', 0, 3232248321, 2886739969, 1691, 80, 2986, 1, 1, 1023, 'ABCDABCDABCDABCD');
    4)COMMIT;
    The no. of transactions that I am able to achieve are 71 per seconds, whereas I need of the magnitude of 5000 per sec.
    Please let me know of all those things I need to tune for a better performance.
    Thanks,
    Tuhin

    Hello Tuhin,
    Performance tuning is a big subject and you should have a look at the documentation - http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96533/toc.htm
    As for these particular insert statements you need to see what is taking so long. A good place to start would be to use auto trace (set autotrace on) in sqlplus. This will show you the execution plan and the execution statistics for each statement. Once you have these, it will probably be worth posting them up here, as there may be something that stands out as taking most the time in the query. Are the tables on a remote site by any chance? If they are, this could go some way to explaining the length of time for inserts. Other things could be triggers, number of indexes etc etc. As I said, performance tuning is a big subject but with the auto trace info you'll get a good idea of where to start.
    HTH
    David

  • Report region runs very slow, but its sql runs fast

    We have a page with a report region Type :SQL Query (plsq function body returning sql query) which runs very slow, pegging the tach on our db box for almost a minute before returning report rows. However, if we run the generated sql from sql plus, it returns all the rows in under 10 seconds with nary a blip on the box. Any idas how what could be causing this or how to debug?
    Thanks,
    Steve

    OK, here is the bad boy, shortly after our code that returns the data.
    declare
    rc__ number;
    simple_list__ owa_util.vc_arr;
    complex_list__ owa_util.vc_arr;
    begin
    owa.init_cgi_env(:n__,:nm__,:v__);
    htp.HTBUF_LEN := 63;
    null;
    null;
    simple_list__(1) := 'sys.%';
    simple_list__(2) := 'dbms\_%';
    simple_list__(3) := 'utl\_%';
    simple_list__(4) := 'owa\_%';
    simple_list__(5) := 'owa.%';
    simple_list__(6) := 'htp.%';
    simple_list__(7) := 'htf.%';
    simple_list__(8) := 'wpg_docload.%';
    if ((owa_match.match_pattern(p_string =>
    'f'
    /* */,p_simple_pattern =>
    simple_list__
    ,p_complex_pattern =>
    complex_list__
    ,p_use_special_chars =>
    false)))
    then
    rc__ := 2;
    else
    null;
    null;
    f(p=>:p);
    if (wpg_docload.is_file_download) then
    rc__ := 1;
    wpg_docload.get_download_file(:doc_info);
    null;
    null;
    null;
    commit;
    else
    rc__ := 0;
    null;
    null;
    null;
    commit;
    owa.get_page(:data__,:ndata__);
    end if;
    end if;
    :rc__ := rc__;
    end;
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 1 25.53 26.59 4492 20992 60 1
    Fetch 0 0.00 0.00 0 0 0 0
    total 1 25.53 26.59 4492 20992 60 1

  • SQL 2012 DBCC CHECKDB Run Very Slow

    Does anyone experience this? SQL 2012 DBCC CHECKDB runs very slow on one of the server. I monitored the server and it seems DBCC CHECKDB does not hit the disk hard enough.
    It can read 100 mb per second on of my slower server, but on this particular server, it only read 1 mb per second. I saw parallel processes, but it just not read disk hard enough. I am curious what causes this? There is no user using the server when I run
    DBCC command. The full database restore took 3 hours, but DBCC CHECKDB took more than 11 hours.  Thanks for any input.
    Lijun

    Hi,
    Have you made the change of 'cost threshold for parallelism'? The default value of this is 5. Increasing the cost threshold for parallelism would cause most of the queries including CHECKDB to not execute parallel and hence will tend to
    take time to complete. This could be one of the issue contributing to the CHECKDB slow run.
    Also, please check if the antivirus is checking SQL Database files:
    http://support.microsoft.com/kb/309422
    Here is a good article on CHECKDB time taken to complete.
    http://blogs.msdn.com/b/sqlserverstorageengine/archive/2007/01/24/how-long-will-checkdb-take-to-run.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Sql is running very slow

    hello everyone
    here is my procedure
    in procedure select statement is running very slow it takes 20min
    DECLARE
    y10_pad_sd_1 number;
    y10_sad_sd_1 number;
    y10_sad_oe_1 number;
    y10_she18_avg_1 number;
    y10_she_avg_1 number;
    y10_o_pad_sd_1 number;
    y10_e_pad_sd_1 number;
    y10_o_sad_sd_1 number;
    y10_e_sad_sd_1 number;
    y15_pad_sd_1 number;
    y15_sad_sd_1 number;
    y15_sad_oe_1 number;
    y15_she18_avg_1 number;
    y15_she_avg_1 number;
    y15_o_pad_sd_1 number;
    y15_e_pad_sd_1 number;
    y15_o_sad_sd_1 number;
    y15_e_sad_sd_1 number;
    y20_pad_sd_1 number;
    y20_sad_sd_1 number;
    y20_sad_oe_1 number;
    y20_she18_avg_1 number;
    y20_she_avg_1 number;
    y20_o_pad_sd_1 number;
    y20_e_pad_sd_1 number;
    y20_o_sad_sd_1 number;
    y20_e_sad_sd_1 number;
    CURSOR c_pn IS
    SELECT
    pn_id pn_id
    ,pn_dm pn_dm
    ,arch_id arch_id
    ,o_ink o_ink
    ,o_color o_color
    ,e_ink e_ink
    ,e_color e_color
    FROM pn_list_iqp_95cl;
    type c7 is table of c_pn%rowtype;
    c8 c7;
    BEGIN
    open c_pn;
    fetch c_pn bulk collect into c8;
    close c_pn;
    for i in 1..c8.last loop
    SELECT /*+ use_hash(pmo pme) */
    LEAST(MAX ( pmo.y10_pad_sd ), MAX ( pme.y10_pad_sd ))
    ,LEAST(MAX ( pmo.y10_sad_sd ), MAX ( pme.y10_sad_sd ))
    ,LEAST(MAX ( pmo.y10_sad_oe ), MAX ( pme.y10_sad_oe ))
    ,LEAST(MAX ( pmo.y10_she18_avg), MAX ( pme.y10_she18_avg ))
    ,LEAST(MAX ( pmo.y10_she_avg ), MAX ( pme.y10_she_avg ))
    ,LEAST(MAX ( pmo.y10_o_pad_sd ), MAX ( pme.y10_o_pad_sd ))
    ,LEAST(MAX ( pmo.y10_e_pad_sd ), MAX ( pme.y10_e_pad_sd ))
    ,LEAST(MAX ( pmo.y10_o_sad_sd ), MAX ( pme.y10_o_sad_sd ))
    ,LEAST(MAX ( pmo.y10_e_sad_sd ), MAX ( pme.y10_e_sad_sd ))
    ,LEAST(MAX ( pmo.y15_pad_sd ), MAX ( pme.y15_pad_sd ))
    ,LEAST(MAX ( pmo.y15_sad_sd ), MAX ( pme.y15_sad_sd ))
    ,LEAST(MAX ( pmo.y15_sad_oe ), MAX ( pme.y15_sad_oe ))
    ,LEAST(MAX ( pmo.y15_she18_avg), MAX ( pme.y15_she18_avg ))
    ,LEAST(MAX ( pmo.y15_she_avg ), MAX ( pme.y15_she_avg ))
    ,LEAST(MAX ( pmo.y15_o_pad_sd ), MAX ( pme.y15_o_pad_sd ))
    ,LEAST(MAX ( pmo.y15_e_pad_sd ), MAX ( pme.y15_e_pad_sd ))
    ,LEAST(MAX ( pmo.y15_o_sad_sd ), MAX ( pme.y15_o_sad_sd ))
    ,LEAST(MAX ( pmo.y15_e_sad_sd ), MAX ( pme.y15_e_sad_sd ))
    ,LEAST(MAX ( pmo.y20_pad_sd ), MAX ( pme.y20_pad_sd ))
    ,LEAST(MAX ( pmo.y20_sad_sd ), MAX ( pme.y20_sad_sd ))
    ,LEAST(MAX ( pmo.y20_sad_oe ), MAX ( pme.y20_sad_oe ))
    ,LEAST(MAX ( pmo.y20_she18_avg), MAX ( pme.y20_she18_avg ))
    ,LEAST(MAX ( pmo.y20_she_avg ), MAX ( pme.y20_she_avg ))
    ,LEAST(MAX ( pmo.y20_o_pad_sd ), MAX ( pme.y20_o_pad_sd ))
    ,LEAST(MAX ( pmo.y20_e_pad_sd ), MAX ( pme.y20_e_pad_sd ))
    ,LEAST(MAX ( pmo.y20_o_sad_sd ), MAX ( pme.y20_o_sad_sd ))
    ,LEAST(MAX ( pmo.y20_e_sad_sd ), MAX ( pme.y20_e_sad_sd ))
    INTO
    y10_pad_sd_1
    ,y10_sad_sd_1
    ,y10_sad_oe_1
    ,y10_she18_avg_1
    ,y10_she_avg_1
    ,y10_o_pad_sd_1
    ,y10_e_pad_sd_1
    ,y10_o_sad_sd_1
    ,y10_e_sad_sd_1
    ,y15_pad_sd_1
    ,y15_sad_sd_1
    ,y15_sad_oe_1
    ,y15_she18_avg_1
    ,y15_she_avg_1
    ,y15_o_pad_sd_1
    ,y15_e_pad_sd_1
    ,y15_o_sad_sd_1
    ,y15_e_sad_sd_1
    ,y20_pad_sd_1
    ,y20_sad_sd_1
    ,y20_sad_oe_1
    ,y20_she18_avg_1
    ,y20_she_avg_1
    ,y20_o_pad_sd_1
    ,y20_e_pad_sd_1
    ,y20_o_sad_sd_1
    ,y20_e_sad_sd_1
    FROM pm_list_iqp_95cl pmo ,pm_list_iqp_95cl pme
    WHERE pmo.pn_id = pme.pn_id
    AND pme.pn_id = c8(i).pn_id
    AND pmo.slot_cd = 'O'
    AND pme.slot_cd = 'E';
    END LOOP;
    END;

    EXPLAIN PLAN FOR THIS QUERY
    cached plan :cost all rows(cost:4)
    step name step cost rows
    select statement 6 4
    sort(aggregate) 5 1
    merge join(cartesian) 4 4 1
    tellatel.pm_list_iqp_95cl table access(full) 1 2 1
    buffer(sort) 3 2 1
    tellatel.pm_list_iqp_95cl_table access(full) 2 2 1

  • Applet with JDBC runs very slow

    I have recently created an applet which I am using to interface with a MS SQL Server 2000 database using JDBC. The server is running W2K Server, and a Tomcat web server.
    There are some performance problems with this application. The volume of data being demanded by the database is very low, yet it runs very slow. More specifically, however, the application runs at a very fast pace for several seconds, then "stalls" for 10 -15 seconds.
    The stalling of the application does not take place at the same place in the code all the time; rather it seems to be completely independent of what I am doing. Sometimes a particular operation takes 20 seconds to complete, but the next day the same thing only takes 20msec.
    Any ideas?
    Thanks

    sounds like network usage issues
    hard to tell with no code and no idea how you're configured

  • My iMac is running very slow

    My iMac is now running very slow.  Every process/application lags, safari, iPhoto, pages, iTunes, etc.  Beach ball just spins and spins.....
    I have an early 2008 iMac with 2.66 GHz Intel Core 2 Duo processor, 2 GB 800 MHz DDR2 SDRAM memory, 320 GB SATA Disk storage with 30GB free.  I just upgraded to OS X Yosemite 10.10.1 hoping it would help solve the problem but no luck.
    I ran "syslog -k Sender kernel -k Message CReq 'Channel t|GPU D|I/O|n Cause: -' | tail | open -ef" in the terminal window and received the following in the text window....
    Jan 14 00:18:17 X-imac-2 kernel[0] <Notice>: Process systemmigrationd [146] disabling system-wide I/O Throttling
    --- last message repeated 5 times ---
    Any help is greatly appreciated. Thanks

    Thanks Linc for your help!  Here is the logs from Console:
    1/17/15 10:02:48.283 AM com.apple.xpc.launchd[1]: (com.apple.PhotoApps.AVCHDConverter) Unknown key for dictionary: EnvironmentVarialbles
    1/17/15 10:02:48.283 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 10:03:08.258 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 10:03:14.986 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 7.73 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 10:03:21.834 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 10:03:35.834 AM WindowServer[119]: disable_update_likely_unbalanced: UI updates still disabled by application "iPhoto" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    1/17/15 10:03:36.125 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 15.29 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 10:03:37.950 AM iPhoto[733]: void CGSUpdateManager::log() const: conn 0xe2ab: spurious update.
    1/17/15 10:03:38.799 AM com.apple.SecurityServer[54]: Session 100029 created
    1/17/15 10:03:39.179 AM com.apple.SecurityServer[54]: Killing auth hosts
    1/17/15 10:03:39.179 AM com.apple.SecurityServer[54]: Session 100028 destroyed
    1/17/15 10:03:46.317 AM iPhoto[733]: The function ‘CGContextClear’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    1/17/15 10:04:42.124 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:51.507 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:54.150 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:56.942 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[746]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 10:05:10.094 AM Console[749]: Failed to connect (_consoleX) outlet from (NSApplication) to (ConsoleX): missing setter or instance variable
    1/17/15 10:05:19.067 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    Here are a few other lines from earlier that my also be helpful.  Most of these are repeated over and over.
    1/16/15 4:43:20.000 PM kernel[0]: BUG in process suhelperd[452]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    1/16/15 5:31:07.775 PM Safari[6461]: Communications error: <OS_xpc_error: <error: 0x7fff745dab60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff745dafa8> { length = 22, contents = "Connection interrupted" }
    }>
    1/16/15 5:57:11.000 PM kernel[0]: memorystatus_thread: idle exiting pid 5527 [CoreServicesUIAg]
    1/16/15 6:11:37.704 PM nsurlstoraged[6907]: ERROR: shrinkDB - unable to start a DB transaction.  Error-code=5
    1/16/15 6:13:49.644 PM com.apple.xpc.launchd[1]: (com.apple.auditd[6976]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/16/15 6:13:50.077 PM kellerct[6980]: audit warning: soft /var/audit
    1/16/15 6:13:50.077 PM kellerct[6979]: audit warning: allsoft
    1/16/15 6:13:50.587 PM kellerct[6982]: audit warning: closefile /var/audit/20150117001305.20150117001349
    1/16/15 6:16:26.093 PM nsurlstoraged[6907]: Error: execSQLStatement:onConnection:toCompletionWithRetry - SQL=COMMIT;, error-code=1, error-message=cannot commit - no transaction is active
    1/17/15 7:18:17.197 AM BezelServices 245.23[67]: ASSERTION FAILED: dvcAddrRef != ((void *)0) -[DriverServices getDeviceAddress:] line: 2602
    This is from this morning when it took almost 15 mins to fully wake up:
    1/17/15 7:53:08.866 AM WindowServer[119]: CGXDisplayDidWakeNotification [30972791675783]: posting kCGSDisplayDidWake
    1/17/15 7:53:08.866 AM WindowServer[119]: handle_will_sleep_auth_and_shield_windows: Deferring.
    1/17/15 7:54:42.460 AM com.apple.backupd[223]: Copied 51.64 GB of 118.69 GB, 161123 of 201178 items
    1/17/15 7:55:57.306 AM SecurityAgent[174]: User info context values set for kellerct
    1/17/15 7:55:58.186 AM com.apple.xpc.launchd[1]: (com.apple.auditd[354]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:55:59.176 AM kellerct[359]: audit warning: soft /var/audit
    1/17/15 7:55:59.176 AM kellerct[360]: audit warning: closefile /var/audit/20150117051759.20150117135558
    1/17/15 7:55:59.178 AM kellerct[358]: audit warning: allsoft
    1/17/15 7:55:59.852 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:00.003 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/17/15 7:56:00.003 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/17/15 7:56:00.196 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/17/15 7:56:00.196 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:00.289 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/17/15 7:56:00.314 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/17/15 7:56:03.337 AM SecurityAgent[174]: Login Window login proceeding
    1/17/15 7:56:04.965 AM loginwindow[67]: Login Window - Returned from Security Agent
    1/17/15 7:56:05.200 AM loginwindow[67]: USER_PROCESS: 67 console
    1/17/15 7:56:06.000 AM kernel[0]: AppleKeyStore:Sending lock change 0 for handle -501
    1/17/15 7:56:06.381 AM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.381 AM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    1/17/15 7:56:06.382 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    1/17/15 7:56:06.383 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.uiagent) This key does not do anything: OnDemand
    1/17/15 7:56:06.383 AM com.apple.xpc.launchd[1]: (com.apple.diagnostics_agent) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.fullscreen) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.notificationcenter) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.appstore) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.remotedesktoppicture) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.launchpad) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.downloads) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.EscrowSecurityAlert) Unknown key for string: seatbelt-profiles
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.Finder) ThrottleInterval set to zero. You're not that important. Ignoring.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.FontRegistryUIAgent) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.ATS.FontValidator) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.ATS.FontValidatorConduit) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) The JetsamProperties key is not available on this platform.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.helpd) This key does not do anything: OnDemand
    1/17/15 7:56:06.386 AM com.apple.xpc.launchd[1]: (com.apple.installd.user) This key does not do anything: OnDemand
    1/17/15 7:56:06.387 AM com.apple.xpc.launchd[1]: (com.apple.Maps.mapspushd) Unknown key for double: StartInterval
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Caller tried to hijack service: path = /System/Library/LaunchAgents/com.apple.mbpluginhost.user.plist, caller = loginwindow.67
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.midiserver.io) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.noticeboard.agent) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.alerts) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.tcc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.agent) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Caller tried to hijack service: path = /System/Library/LaunchAgents/com.apple.pluginkit.pkd.plist, caller = loginwindow.67
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.PubSub.Agent) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.ui.helper.active) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Self) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.rtcreportingd) The UserName key is not supported for non-System services.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.sharingd) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.soagent) Invalid type for event (event/type): events/array
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.soagent) Invalid type for event (event/type): bundleid/string
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechdatainstallerd) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ssinvitationagent) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.systemuiserver.ServiceProvider) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.dockextra.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.SUISMessaging) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.ipodserver) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.systemuiserver.screencapture) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.tsm.uiserver) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.dockling.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.window_proxies.startup) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.window_proxies) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.inputswitcher.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.universalaccesscontrol.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.universalaccessd.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.UserEventAgent-Aqua) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.487 AM com.apple.xpc.launchd[1]: (com.apple.usernoted) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.487 AM com.apple.xpc.launchd[1]: (com.apple.VoiceOver.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.ZoomWindow.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (org.openbsd.ssh-agent) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Failed to bootstrap path: path = /System/Library/LaunchAgents/com.apple.pluginkit.pkd.plist, error = 17: File exists
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Failed to bootstrap path: path = /System/Library/LaunchAgents/com.apple.mbpluginhost.user.plist, error = 17: File exists
    1/17/15 7:56:09.953 AM lsregister[369]: LaunchServices: Begin database seeding
    1/17/15 7:56:09.954 AM lsregister[369]: LaunchServices: Completed database seeding
    1/17/15 7:56:11.822 AM UserEventAgent[366]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    1/17/15 7:56:12.064 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Could not import service from caller: caller = otherbsd.367, service = com.apple.photostream-agent, error = 119: Service is disabled
    1/17/15 7:56:12.064 AM otherbsd[367]: Could not submit LoginItem job com.apple.photostream-agent: 119: Service is disabled
    1/17/15 7:56:12.797 AM UserEventAgent[366]: user agent networkd: built Sep  9 2014 16:11:57
    1/17/15 7:56:13.843 AM UserEventAgent[366]: received an unknown event from daemon
    1/17/15 7:56:14.492 AM nsurlsessiond[373]: No directory for bundleID: com.apple.cloudd
    1/17/15 7:56:15.361 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 7:56:17.800 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:56:17.833 AM secinitd[375]: UID[501]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    1/17/15 7:56:20.808 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:56:23.953 AM CalendarAgent[374]: Exception fetching ABCDContact in context <ABManagedObjectContext: 0x7fa46a629e50>: keypath birthdayComponents not found in entity <NSSQLEntity ABCDContact id=21>
    1/17/15 7:56:23.954 AM CalendarAgent[374]: Error fetching ABCDContact in context <ABManagedObjectContext: 0x7fa46a629e50>: (null) (null)
    1/17/15 7:57:44.128 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.130 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.132 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.903 AM askpermissiond[382]: objc[382]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    1/17/15 7:57:44.921 AM askpermissiond[382]: StoreTransport: Resetting APS Connection using environment name production
    1/17/15 7:57:45.283 AM fmfd[383]: Initialized sandbox
    1/17/15 7:57:45.555 AM com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:45.555 AM com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:45.633 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:46.198 AM com.apple.iCloudHelper[384]: objc[384]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    1/17/15 7:57:46.252 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:46.532 AM apsd[51]: Peer [pid=383] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 7:57:47.247 AM cloudd[385]: Could not create primary backing account
    1/17/15 7:57:56.509 AM identityservicesd[387]: [Warning] DeviceHeartbeat - Failed loading device heartbeat data from keychain -25300
    1/17/15 7:57:57.405 AM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:57.411 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:57:57.413 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/17/15 7:57:57.413 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/17/15 7:57:57.419 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/17/15 7:57:57.419 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:57:57.420 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/17/15 7:57:57.422 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/17/15 7:57:58.448 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    1/17/15 7:57:58.448 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    1/17/15 7:57:58.450 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    1/17/15 7:57:58.450 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.wirelessproxd.
    1/17/15 7:57:58.695 AM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:59.801 AM coreaudiod[390]: 2015-01-17 07:57:59.801136 AM [AirPlay] BTLE discovery removing all devices
    1/17/15 7:57:59.803 AM coreaudiod[390]: 2015-01-17 07:57:59.802622 AM [AirPlay] Resetting AWDL traffic registration.
    1/17/15 7:57:59.803 AM coreaudiod[390]: 2015-01-17 07:57:59.802933 AM [AirPlay] Deregister AirPlay traffic for AWDL at MAC 00:00:00:00:00:00 with target infra non critical PeerIndication=0 err=-3900
    1/17/15 7:57:59.981 AM com.apple.xpc.launchd[1]: (com.apple.imdmessageservices.IMDMessageServicesAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    1/17/15 7:58:00.144 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:00.336 AM discoveryd[50]: AwdlD2d AwdlD2dStartBrowsingForKey: '_airplay' Browsing service started
    1/17/15 7:58:00.336 AM discoveryd[50]: AwdlD2d AwdlD2dStartBrowsingForKey: '_raop' Browsing service started
    1/17/15 7:58:00.390 AM coreaudiod[390]: Logging disabled
    1/17/15 7:58:00.425 AM coreaudiod[390]: 2015-01-17 07:58:00.425163 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2 for output and  for input
    1/17/15 7:58:00.425 AM coreaudiod[390]: 2015-01-17 07:58:00.425361 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2 for output and  for input
    1/17/15 7:58:00.457 AM logind[66]: -[SessionManager getClient:withRole:inAuditSession:]:241: ERROR: No session dictionary for audit session 100010
    1/17/15 7:58:00.457 AM logind[66]: _SMGetSessionAgent:73: ERROR: __SMGetClientForAuditSessionAgent failed 2
    1/17/15 7:58:00.457 AM IMDPersistenceAgent[394]: SACShieldWindowShowing:925: ERROR: NULL response
    1/17/15 7:58:00.854 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.140 AM bluetoothaudiod[395]: Logging disabled
    1/17/15 7:58:01.344 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Configuring notification center for identifier: com.apple.iChat   topics: (
    1/17/15 7:58:01.447 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 7:58:01.453 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: NO
    1/17/15 7:58:01.453 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: YES   (Topics: (
    1/17/15 7:58:01.473 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:01.473 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.474 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.509 AM CallHistorySyncHelper[381]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.509 AM callservicesd[389]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.534 AM com.apple.xpc.launchd[1]: (com.apple.auditd[398]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:58:01.537 AM pboard[396]: Attempt to unlink previous shared memory during startup returned an error.  Continuing...
    1/17/15 7:58:01.541 AM imagent[392]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.662 AM kellerct[401]: audit warning: allsoft
    1/17/15 7:58:01.663 AM kellerct[402]: audit warning: soft /var/audit
    1/17/15 7:58:01.731 AM kellerct[404]: audit warning: closefile /var/audit/20150117135558.20150117135801
    1/17/15 7:58:01.752 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.110 AM logind[66]: -[SessionManager getClient:withRole:inAuditSession:]:241: ERROR: No session dictionary for audit session 100017
    1/17/15 7:58:03.110 AM logind[66]: _SMGetSessionAgent:73: ERROR: __SMGetClientForAuditSessionAgent failed 2
    1/17/15 7:58:03.111 AM IMRemoteURLConnectionAgent[397]: SACShieldWindowShowing:925: ERROR: NULL response
    1/17/15 7:58:03.346 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:03.346 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.347 AM com.apple.xpc.launchd[1]: (com.apple.imtranscoding.IMTranscoderAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:03.347 AM com.apple.xpc.launchd[1]: (com.apple.imtranscoding.IMTranscoderAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.475 AM imagent[392]: [Warning] IMDAccount: incoming 'defaults' is not a dictionary, (null), (null)
    1/17/15 7:58:03.475 AM imagent[392]: [Warning] IMDAccount: incoming 'defaults' is not a dictionary, (null), (null)
    1/17/15 7:58:03.924 AM callservicesd[389]: Failed to get the bundle id
    1/17/15 7:58:33.479 AM com.apple.xpc.launchd[1]: (com.apple.auditd[408]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:58:33.493 AM kellerct[412]: audit warning: soft /var/audit
    1/17/15 7:58:33.493 AM kellerct[413]: audit warning: allsoft
    1/17/15 7:58:33.494 AM kellerct[414]: audit warning: closefile /var/audit/20150117135801.20150117135833
    1/17/15 7:59:03.103 AM kellerct[419]: audit warning: soft /var/audit
    1/17/15 7:59:03.103 AM kellerct[420]: audit warning: closefile /var/audit/20150117135833.20150117135903
    1/17/15 7:59:03.105 AM kellerct[421]: audit warning: allsoft
    1/17/15 7:59:03.177 AM com.apple.xpc.launchd[1]: (com.apple.imdmessageservices.IMDMessageServicesAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:03.177 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:36.026 AM com.apple.xpc.launchd[1]: (com.apple.auditd[430]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:59:36.036 AM kellerct[434]: audit warning: allsoft
    1/17/15 7:59:36.036 AM kellerct[433]: audit warning: soft /var/audit
    1/17/15 7:59:36.056 AM kellerct[436]: audit warning: closefile /var/audit/20150117135903.20150117135936
    1/17/15 7:59:36.657 AM WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'. Run with arg = -login
    1/17/15 7:59:39.235 AM WindowServer[119]: CGXSetDisplayColorProfileAndTransfer: Display 0x04271ac0: Unit 0; ColorProfile { 532686347 }; TransferTable (256, 3)
    1/17/15 7:59:40.686 AM com.apple.AmbientDisplayAgent[162]: AmbientDisplayAgent started
    1/17/15 7:59:52.327 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 7:59:52.763 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.75 seconds (server forcibly re-enabled them after 1.32 seconds)
    1/17/15 7:59:54.344 AM sharingd[449]: 07:59:54.277 : Starting Up...
    1/17/15 7:59:54.350 AM sharingd[449]: 07:59:54.349 : Device Capabilities (Handoff:NO, Instant Hotspot:NO, AirDrop:NO, Legacy AirDrop:NO, Remote Disc:NO)
    1/17/15 7:59:58.399 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:58.799 AM sharingd[449]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:59:59.943 AM iconservicesagent[452]: iconservicesagent launched.
    1/17/15 8:00:00.665 AM Spotlight[442]: spot: agent checkin
    1/17/15 8:00:00.971 AM Spotlight[442]: connectionToService 0x6080001185d0
    1/17/15 8:00:01.215 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:01.754 AM iconservicesagent[452]: Starting service with cache path: /var/folders/kp/bghl35295gq0lksv9z_tj65w0000gn/C/com.apple.iconservices
    1/17/15 8:00:01.927 AM Finder[437]: assertion failed: 14B25: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    1/17/15 8:00:02.172 AM SystemUIServer[429]: Cannot find executable for CFBundle 0x7f8e21515e20 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    1/17/15 8:00:02.490 AM sharingd[449]: 08:00:02.489 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.490 AM sharingd[449]: 08:00:02.490 : Tethering: Identifier needs fixing
    1/17/15 8:00:02.493 AM sharingd[449]: 08:00:02.492 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.497 AM sharingd[449]: 08:00:02.496 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.802 AM SystemUIServer[429]: Cannot find executable for CFBundle 0x7f8e215168c0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    1/17/15 8:00:04.460 AM com.apple.metadata.SpotlightNetHelper[453]: CGSConnectionByID: 0 is not a valid connection ID.
    1/17/15 8:00:04.460 AM com.apple.metadata.SpotlightNetHelper[453]: Invalid Connection ID 0
    1/17/15 8:00:07.583 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:00:07.000 AM kernel[0]: Sandbox: Finder(437) System Policy: deny file-write-unlink /Users/kellerct/Library/Saved Application State/com.apple.finder.savedState/restorecount.plist
    1/17/15 8:00:11.064 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 4.48 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:00:12.019 AM Spotlight[442]: applications query - started
    1/17/15 8:00:13.397 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:00:13.408 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 2.09 seconds (server forcibly re-enabled them after 2.07 seconds)
    1/17/15 8:00:13.434 AM com.apple.SecurityServer[54]: Session 100022 created
    1/17/15 8:00:15.198 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:17.444 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[460]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 8:00:18.400 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d2d7e0> connection from pid 453 with interface <AccountServiceInterface: 0x7ff821d2f000> (PID 453)
    1/17/15 8:00:19.767 AM Finder[437]: CoreDockSetTrashFull returned error -4956
    1/17/15 8:00:33.161 AM com.apple.xpc.launchd[1]: (com.apple.PhotoApps.AVCHDConverter) Unknown key for dictionary: EnvironmentVarialbles
    1/17/15 8:00:33.162 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:33.511 AM WindowServer[119]: CGXGetConnectionProperty: Invalid connection 38503
    1/17/15 8:00:36.958 AM Spotlight[442]: applications query - finished in 25 seconds
    1/17/15 8:00:45.091 AM iconservicesd[37]: Failed to move temp file /Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C-DF302C9E25 2E.isdata.tmp to /Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C-DF302C9E25 2E.isdata with error: Error Domain=NSCocoaErrorDomain Code=516 "“56B5168D-6EE1-1078-094C-DF302C9E252E.isdata.tmp” couldn’t be moved to “com.apple.iconservices.store” because an item with the same name already exists." UserInfo=0x7faec0c1ce50 {NSSourceFilePathErrorKey=/Library/Caches/com.apple.iconservices.store/56B5168D -6EE1-1078-094C-DF302C9E252E.isdata.tmp, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/Library/Caches/com.apple.iconservices.store/56B5168D-6EE 1-1078-094C-DF302C9E252E.isdata, NSFilePath=/Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C -DF302C9E252E.isdata.tmp, NSUnderlyingError=0x7faec0c20620 "The operation couldn’t be completed. File exists"}
    1/17/15 8:00:45.202 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash[489]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    1/17/15 8:00:46.662 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.005 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.203 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.303 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.418 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.420 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:48.868 AM com.apple.xpc.launchd[1]: (com.ibm.Notes.helper.57684[484]) Service exited with abnormal code: 133
    1/17/15 8:00:48.870 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:50.893 AM WiFiAgent[478]: [NO client logger] <Sep  9 2014 16:12:26> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    1/17/15 8:00:50.894 AM WiFiAgent[478]: [NO client logger] <Sep  9 2014 16:12:26> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiAgent
    1/17/15 8:00:52.993 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d1b380> connection from pid 425 with interface <AccountServiceInterface: 0x7ff821d21870> (PID 425)
    1/17/15 8:00:56.590 AM Keychain Circle Notification[468]: Posted at launch: (
    1/17/15 8:00:59.357 AM ReportCrash[489]: Saved crash report for mpreload[486] version ??? to /Users/kellerct/Library/Logs/DiagnosticReports/mpreload_2015-01-17-080057_chris -kellers-imac-2.crash
    1/17/15 8:01:00.381 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d26660> connection from pid 471 with interface <AccountServiceInterface: 0x7ff821d26a90> (PID 471)
    1/17/15 8:01:02.464 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:01:08.936 AM CloudKeychainProxy[493]:  __45-[UbiqitousKVSProxy doEnsurePeerRegistration]_block_invoke <UB---e-C---> ensurePeerRegistration called, success ((null))
    1/17/15 8:01:09.116 AM Keychain Circle Notification[468]: rawStatus -1, #applicants 0, #peers 0, err=Error Domain=com.apple.security.sos.error Code=2 "The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))" UserInfo=0x7fe810c50330 {NSDescription=Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)}
    1/17/15 8:01:09.457 AM Keychain Circle Notification[468]: Checking validity of 0 notes
    1/17/15 8:01:09.459 AM Keychain Circle Notification[468]: writeToStorage plist={
        applcationDate = "0000-12-30 00:00:00 +0000";
        lastCircleStatus = "-1";
        lastWritten = "2015-01-17 14:01:09 +0000";
        pendingApplicationReminder = "4001-01-01 00:00:00 +0000";
        pendingApplicationReminderInterval = 172800;
    1/17/15 8:01:11.225 AM NotificationCenter[471]: Layout still needs update after calling -[NSView layout].  NSView or one of its superclasses may have overridden -layout without calling super. Or, something may have dirtied layout in the middle of updating it.  Both are programming errors in Cocoa Autolayout.  The former is pretty likely to arise if some pre-Cocoa Autolayout class had a method called layout, but it should be fixed.
    1/17/15 8:01:13.128 AM Fitbit Connect Menubar Helper[490]: <FBMessenger: 0x6080000a4440>: Another data is still sending. Placing send request into queue.
    1/17/15 8:01:22.339 AM Pages[485]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.1 instead of 10.10.1. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    1/17/15 8:01:22.707 AM Pages[485]: 0   CarbonCore                          0x906087e7 ___Gestalt_SystemVersion_block_invoke + 135
    1/17/15 8:01:22.707 AM Pages[485]: 1   libdispatch.dylib                   0x9ac890b5 dispatch_once_f + 251
    1/17/15 8:01:22.707 AM Pages[485]: 2   libdispatch.dylib                   0x9ac8a0d8 dispatch_once + 31
    1/17/15 8:01:22.707 AM Pages[485]: 3   CarbonCore                          0x9059afb8 _Gestalt_SystemVersion + 1050
    1/17/15 8:01:22.707 AM Pages[485]: 4   CarbonCore                          0x9059ab69 Gestalt + 150
    1/17/15 8:01:22.707 AM Pages[485]: 5   SFUtility                           0x00c7af7d GetSystemVersion + 29
    1/17/15 8:01:22.707 AM Pages[485]: 6   Pages                               0x00002ede main + 62
    1/17/15 8:01:35.736 AM AppleIDAuthAgent[473]: AppleIdAuth URL: https://identity.apple.com/dsservices/dsxmlrpc
    1/17/15 8:01:37.085 AM storeassetd[501]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fb75141bd40> connection from pid 498 with interface <AssetServiceInterface: 0x7fb751410710> (PID 498)
    1/17/15 8:01:39.000 AM kernel[0]: BUG in process suhelperd[176]: over-released legacy external boost assertions (0 total, 0 external, 0 legacy-external)
    1/17/15 8:01:44.660 AM storeassetd[501]: addOperation <UpdateOperation: 0x7fb751521c00>{name = '(null)'}
    1/17/15 8:01:52.676 AM locationd[177]: Couldn't find a requirement string for masquerading client /System/Library/PrivateFrameworks/Parsec.framework
    1/17/15 8:01:53.484 AM pkd[450]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    1/17/15 8:01:54.977 AM locationd[177]: could not get apple languages array, assuming english
    1/17/15 8:01:58.753 AM storeaccountd[458]: ADI: {
        "Cache-Control" = "no-transform, max-age=5783";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 21198;
        "Content-Type" = "text/xml; charset=UTF-8";
        Date = "Sat, 17 Jan 2015 14:01:58 GMT";
        "Last-Modified" = "Sat, 17 Jan 2015 09:59:41 GMT";
        Server = "ATS/4.1.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding, X-Apple-Store-Front, Cookie, User-Agent";
        "X-Apple-ATS-Cache-Key" = "/init.itunes.apple.com/80/WebObjects/MZInit.woa/wa/initiateSession/MacAppStore /2.0%20/143441-1/13/https/itspod=71?ix=5";
        "X-Apple-Partner" = "origin.0";
        "apple-timing-app" = "52 ms";
        "x-apple-aka-ttl" = "Generated Sat Jan 17 01:59:41 PST 2015, Expires Sat Jan 17 07:39:41 PST 2015, TTL 20400s";
        "x-apple-application-instance" = 36907;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = 7NX7P35WOS6TXF5G23YINVLGHI;
        "x-apple-max-age" = 14400;
        "x-apple-orig-url" = "https://init.itunes.apple.com/WebObjects/MZInit.woa/wa/initiateSession?ix=5&user AgentCacheKey=MacAppStore%2f2.0%20";
        "x-apple-request-store-front" = "143441-1,13";
        "x-apple-translated-wo-url" = "/WebObjects/MZInit.woa/wa/initiateSession?ix=5&userAgentCacheKey=MacAppStore%2 f2.0%20";
        "x-webobjects-loadaverage" = 0;
    1/17/15 8:02:08.230 AM locationd[177]: could not get apple languages array, assuming english
    1/17/15 8:02:20.274 AM storeaccountd[458]: ADI: {
        "Access-Control-Allow-Origin" = "*";
        "Cache-Control" = "private, max-age=60";
        Connection = "keep-alive";
        "Content-Length" = 2;
        "Content-Type" = "application/json; charset=UTF-8";
        Date = "Sat, 17 Jan 2015 14:02:20 GMT";
        Expires = "Sat, 17 Jan 2015 14:03:20 GMT";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "X-Apple-Store-Front,X-Dsid,Cookie";
        "access-control-allow-credentials" = true;
        "apple-timing-app" = "0 ms";
        "x-apple-application-instance" = 10558;
        "x-apple-application-site" = NWK;
        "x-apple-jingle-correlation-key" = 3JUEEVPJFUPYEO3XLZVQSHT6KU;
        "x-webobjects-loadaverage" = 2;
    1/17/15 8:02:22.337 AM com.apple.backupd[223]: Network destination already mounted at: /Volumes/TimeMachine
    1/17/15 8:02:33.697 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821c5e730> connection from pid 501 with interface <AccountServiceInterface: 0x7ff821c4c530> (PID 501)
    1/17/15 8:02:38.681 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:40.187 AM com.apple.xpc.launchd[1]: (com.apple.StreamingUnzipService) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 8:02:40.187 AM com.apple.xpc.launchd[1]: (com.apple.StreamingUnzipService) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:02:41.433 AM storedownloadd[508]: DownloadServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe40d080e0> connection from pid 501 with interface <DownloadServiceInterface: 0x7ffe40d09c10> (PID 501)
    1/17/15 8:02:42.951 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 5.27 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:44.324 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:47.184 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:49.649 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[515]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 8:02:49.896 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 3.71 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:50.915 AM com.apple.backupd[223]: Disk image already attached: /Volumes/TimeMachine/Chris Keller’s iMac.sparsebundle, DIHLDiskImageAttach returned: 35
    1/17/15 8:02:52.477 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 9.15 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:55.119 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:55.626 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.51 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:56.051 AM WindowServer[119]: Display 0x4271ac0 captured by conn 0x830f
    1/17/15 8:02:57.685 AM com.apple.backupd[223]: Disk image /Volumes/TimeMachine/Chris Keller’s iMac.sparsebundle mounted at: /Volumes/Time Machine Backups
    1/17/15 8:03:05.600 AM findNames[514]: dispatch_semaphore_wait() time out: -[IMKUserDictionary reloadWithCompletionHandler:]
    1/17/15 8:03:09.145 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 8:03:09.147 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: notification observer: com.apple.iChat   notification: __CFNotification 0x7f8023435240 {name = _NSDoNotDisturbEnabledNotification}
    1/17/15 8:03:12.864 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 8:03:13.765 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: YES
    1/17/15 8:03:13.765 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: NO   (Topics: (null))
    1/17/15 8:03:15.085 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:26.274 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:32.237 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:33.955 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:35.114 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.56EAB7C9-0C8F-4B87-9812-6B4934BB8288[522]) Service exited due to signal: Killed: 9
    1/17/15 8:03:47.274 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:03:48.221 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.95 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:03:48.558 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:58.043 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:04:02.423 AM QuickLookSatellite[528]: Failed to obtain sandbox extension for path=/Users/kellerct/Library/Caches/com.apple.quicklook.satellite. Errno:1
    1/17/15 8:04:03.355 AM QuickLookSatellite[528]: Failed to obtain sandbox extension for path=/Users/kellerct/Library/Caches/com.apple.quicklook.satellite. Errno:1
    1/17/15 8:04:14.086 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.56EAB7C9-0C8F-4B87-9812-6B4934BB8288[528]) Service exited due to signal: Killed: 9
    1/17/15 8:04:19.644 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Dropbox" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:04:21.323 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Dropbox" after 2.68 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:04:39.152 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 8:04:39.152 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: notification observer: com.apple.iChat   notification: __CFNotification 0x7f8023594a30 {name = _NSDoNotDisturbDisabledNotification}
    1/17/15 8:04:40.740 AM WindowServer[119]: Display 0x4271ac0 released by conn 0x830f
    1/17/15 8:04:40.902 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 8:04:40.909 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: NO
    1/17/15 8:04:40.909 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: YES   (Topics: (
    1/17/15 8:04:46.000 AM kernel[0]: fsevents: watcher dbfseventsd (pid: 542) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    1/17/15 8:04:55.896 AM pkd[450]: UNINSTALLED:com.getdropbox.dropbox.garcon com.getdropbox.dropbox.garcon(1.7) 40AFE2D2-8557-4B8B-9844-3A767C1434E1 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex
    1/17/15 8:04:55.925 AM pkd[450]: INSTALLED:com.getdropbox.dropbox.garcon com.getdropbox.dropbox.garcon(1.7) <__NSConcreteUUID 0x7fde10ca7cb0> 6301D176-51BE-49D5-98E7-67E1B12813C1 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex
    1/17/15 8:04:59.601 AM CoreServicesUIAgent[457]: unexpected message <OS_xpc_error: <error: 0x7fff78ae9c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff78ae9f70> { length = 18, contents = "Connection invalid" }
    }>
    1/17/15 8:04:59.688 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.D7A66065-B379-44F2-9D2E-2AC374FAEFAF[536]) Service exited due to signal: Killed: 9
    Thanks again for your help.

  • My MAC is running very slow and i am a complete novice and don't know what to do. i have had my Mac since 2008 and its probably in a mess. if you can help i would be grateful. EtreCheck version: 1.9.15 (52) Report generated 8 September 2014 09:09:26

    My MAC runs very slow. Rainbow wheel every time i try to go somewhere. Im a complete MAC novice. Only really use it for iTunes and email. the odd document here and there. The odd spreadsheet. Was brought up on a PC. I would imagine my system is in  mess. I think i downloaded that Mackeeper which i have just discovered was not a good idea. I found a thread about EtreCheck and it suggested i posted the report of my machine which i have done.I only have 2GB of space. Not sure how much i have left. My wife keeps putting photos on here like they are going out of fashion. Bought the machine in 2008 because everybody said you have a MAC. I've never really got to grips with it but at least it worked. Now it does not run very well at all. That spinning wheel is driving me mad. HELP please, never ever used a forum light this either so please go gentle on me. Cheers Paul
    EtreCheck version: 1.9.15 (52)
    Report generated 8 September 2014 09:09:26 BST
    Hardware Information: ?
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      2 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:31:45
    Disk Information: ?
      Hitachi HDP725032GLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (117.84 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Bose Corporation Bose USB Audio
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Mac App Store and identified developers
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
      [loaded] net.sourceforge.MonolingualHelper.plist Support
    Launch Agents: ?
      [running] com.trusteer.rapport.rapportd.plist Support
    User Login Items: ?
      iTunesHelper
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 5.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      eMusicRemote: Version: (null) Support
      eMusic: Version: Unknown
    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
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          2% iTunes
          2% WindowServer
          0% coreaudiod
          0% fontd
          0% rapportd
    Top Processes by Memory: ?
      178 MB Finder
      133 MB com.apple.WebKit.WebContent
      109 MB iTunes
      92 MB Safari
      63 MB com.apple.quicklook.satellite
    Virtual Memory Information: ?
      24 MB Free RAM
      821 MB Active RAM
      807 MB Inactive RAM
      291 MB Wired RAM
      338 MB Page-ins
      680 KB Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming 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 read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //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`" );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 );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;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 14 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.

  • Problem description: My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to

    Problem description:
    My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to get the problem to alleviate for a few days?
    EtreCheck version: 2.1.8 (121)
    Report generated February 16, 2015 at 2:35:55 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 11 days 19:34:2
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 60.76 GB (15.30 GB free)
            Macintosh HD (disk1) / : 438.11 GB (351.62 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 438.49 GB Online
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        hp officejet 4200 series
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.accountsd.plist
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.bird.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.coreservices.uiagent.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.pluginkit.pkd.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.secd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        19 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.coresymbolicationd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.diagnosticd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.iconservices.iconservicesd.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-monthly.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.sandboxd.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        20 processes killed due to memory pressure
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.GoodShop.updater.plist [Click for support]
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        Google Earth Web Plug-in: Version: 5.2 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.2.4 [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        DivXBrowserPlugin: Version: 2.0 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.79 [Click for support]
        VSeeHelper: Version: VSeeHelper 1.0.0.0 - SDK 10.8 [Click for support]
    Safari Extensions: ℹ️
        avast! Online Security
        Goodshop app
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flip4Mac WMV  [Click for support]
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 438.11 GB Disk used: 86.50 GB
        Destinations:
            Backup [Local]
            Total size: 159.70 GB
            Total number of backups: 3
            Oldest backup: 2014-11-24 05:20:18 +0000
            Last backup: 2015-02-01 03:04:02 +0000
            Size of backup disk: Too small
                Backup size 159.70 GB < (Disk used 86.50 GB X 3)
    Top Processes by CPU: ℹ️
             8%    WindowServer
             5%    DashboardClient
             3%    mds
             2%    launchd
             0%    ocspd
    Top Processes by Memory: ℹ️
        64 MB    WindowServer
        52 MB    thunderbird
        34 MB    mds
        34 MB    Mail
        30 MB    mds_stores
    Virtual Memory Information: ℹ️
        654 MB    Free RAM
        834 MB    Active RAM
        777 MB    Inactive RAM
        903 MB    Wired RAM
        102.49 GB    Page-ins
        1.46 GB    Page-outs
    Diagnostics Information: ℹ️
        Standard users cannot read /Library/Logs/DiagnosticReports.
        Run as an administrator account to see more information.

    Hi Linc!  Sorry for the delay.  Here is the information:
    Start time: 16:48:08 02/28/15
    Revision: 1241
    Model Identifier: iMac10,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 10 days 21:04
    UID: 502
    SerialATA
        ST*******ASQ                          
    USB
        officejet 4200 series (Hewlett Packard)
    Bluetooth
        Apple Wireless Mouse
    FileVault 2: On FileVault master keychain appears to be installed
    FileVault 1: On
    I/O wait time (ms/s)
        launchd (UID 0): 53
    Font issues: 40
    Firewall: On
    System caches/logs
        1987 MB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-01-31 SecurityAgent crash
        2015-02-01 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-02-01 IMDPersistenceAgent crash
        2015-02-01 secd crash
        2015-02-20 Inkjet7 crash
        2015-02-28 IMDPersistenceAgent crash
        2015-02-28 secd crash x2
    Kernel log
        Feb 23 07:06:08 Failed to get hibernate image filename
        Feb 23 17:07:05 Failed to get hibernate image filename
        Feb 24 07:06:05 Failed to get hibernate image filename
        Feb 24 17:47:13 Failed to get hibernate image filename
        Feb 24 18:31:50 IOAudioStream[0xffffff802df40400]::clipIfNecessary() - Error: counted 1 clip more than one buffer ahead errors.
        Feb 24 19:14:41 Failed to get hibernate image filename
        Feb 24 20:56:40 Failed to get hibernate image filename
        Feb 24 22:14:14 Failed to get hibernate image filename
        Feb 24 22:38:31 Failed to get hibernate image filename
        Feb 25 06:58:23 Failed to get hibernate image filename
        Feb 25 17:40:53 Failed to get hibernate image filename
        Feb 25 21:04:27 Failed to get hibernate image filename
        Feb 25 21:31:52 Failed to get hibernate image filename
        Feb 26 07:03:06 Failed to get hibernate image filename
        Feb 26 17:06:59 Failed to get hibernate image filename
        Feb 27 06:58:56 Failed to get hibernate image filename
        Feb 27 17:02:56 Failed to get hibernate image filename
        Feb 27 19:17:20 Failed to get hibernate image filename
        Feb 27 23:04:12 Failed to get hibernate image filename
        Feb 28 10:09:19 Failed to get hibernate image filename
        Feb 28 13:07:21 Failed to get hibernate image filename
        Feb 28 14:08:38 Failed to get hibernate image filename
        Feb 28 15:11:16 Failed to get hibernate image filename
        Feb 28 16:18:21 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
        Feb 28 16:29:32 Failed to get hibernate image filename
    System log
            label = "2.5.4.3";
            "localized label" = "2.5.4.3";
            type = string;
            value = "courier.sandbox.push.apple.com";
        Feb 28 16:30:55 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
        Feb 28 16:31:09 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8424]
        Feb 28 16:31:44 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8433]
        Feb 28 16:32:36 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:34:16 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:37 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "1Password mini" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:46:20 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8979]
        Feb 28 16:49:02 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
    Daemons
        com.apple.AccountPolicyHelper
        com.apple.AssetCacheLocatorService
        com.apple.CodeSigningHelper
        com.apple.MobileFileIntegrity
        com.apple.awdd
        com.apple.backupd-auto
        com.apple.cache_delete
        com.apple.coresymbolicationd
        com.apple.ctkd
        com.apple.diagnosticd
        com.apple.emond.aslmanager
        com.apple.iconservices.iconservicesagent
        com.apple.iconservices.iconservicesd
        com.apple.ifdreader
        com.apple.installd
        com.apple.installer.osmessagetracing
        com.apple.nehelper
        com.apple.networkd_privileged
        com.apple.nsurlsessiond_privileged
        com.apple.nsurlstoraged
        com.apple.periodic-daily
        com.apple.periodic-monthly
        com.apple.periodic-weekly
        com.apple.sandboxd
        com.apple.secinitd
        com.apple.security.syspolicy
        - status: -15
        com.apple.softwareupdate_download_service
        com.apple.softwareupdated
        com.apple.spindump
        com.apple.sysmond
        com.apple.systemstatsd
        com.apple.tccd.system
        com.apple.watchdogd
        com.apple.wdhelper
        org.cups.cupsd
    Agents
        2BUA8C4S2C.com.agilebits.onepassword4-helper
        com.adobe.ARM.UUID
        com.apple.AirPortBaseStationAgent
        com.apple.imdpersistence.IMDPersistenceAgent
        - status: -10
        com.apple.secd
        - status: -10
    User crontab
        59 16 * * 7 /Applications/MacScan\ 2/MacScan.app/Contents/MacOS/MacScan -autoscan YES
    Firefox extensions
        Mozilla Firefox hotfix
    Widgets
        iCal
    iCloud errors
        cloudd 7
        comapple.InputMethodKit.UserDictionary 2
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 1
    Restricted files: 174
    Lockfiles: 30
    High file counts
        Desktop: 54
    Accessibility
        Scroll Zoom: On
    Contents of /System/Library/Security/authorization.plist
        - mod date: Oct  9 02:17:00 2014
        - checksum: 2720110640
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1850 more line(s)
    Contents of /private/etc/authorization.deprecated
        - mod date: Oct 25 13:37:39 2014
        - checksum: 842352627
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1013 more line(s)
    Contents of /private/etc/pam.d/prl_disp_service
        - mod date: Mar  5 03:24:01 2010
        - checksum: 1160556194
        auth       required       pam_nologin.so
        auth       optional       pam_afpmount.so
        auth       sufficient     pam_securityserver.so nullok
        auth       sufficient     pam_unix.so  nullok
        auth       required       pam_deny.so
        account    required       pam_permit.so
        password   required       pam_deny.so
        session    required       pam_permit.so
        session    optional       pam_afpmount.so
    Contents of /private/etc/pam.d/prl_disp_service.snow_leopard
        - mod date: Mar  5 03:24:01 2010
        - checksum: 2633576920
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Aug  1 17:37:19 2012
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Applications
        /Applications/Acrobat 6.0 Professional/Acrobat 6.0.2 Professional.app
        - N/A
        /Applications/Acrobat 6.0 Professional/Acrobat Distiller 6.0.2.app
        - com.adobe.distiller
        /Applications/Adobe/Acrobat.com.app
        - com.adobe.mauby.UUID.1
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/Bible Explorer 4.app
        - com.BE8.wordsearchbible.corp
        /Applications/DivX Converter.app
        - N/A
        /Applications/DivX Player.app
        - com.divx.DivX_Player
        /Applications/DivX/DivX Community.app
        - com.spritec.DVD
        /Applications/DivX/DivX Products.app
        - com.spritec.DVD
        /Applications/DivX/DivX Support.app
        - com.spritec.DVD
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/FOX News Live.app
        - FoxPlayerAIR.UUID.1
        /Applications/Flip4Mac/WMV Player.app
        - net.telestream.wmv.player
        /Applications/Garmin Express.app
        - com.garmin.renu.client
        /Applications/Garmin WebUpdater.app
        - com.garmin.WebUpdater
        /Applications/Hewlett-Packard/HP Image Edit.app
        - com.hp.hpimageedit
        /Applications/Hewlett-Packard/HP Image Print.app
        - com.hp.photo.imageprint
        /Applications/Hewlett-Packard/HP Image Zone.app
        - com.hp.imagezone
        /Applications/Hewlett-Packard/HP Instant Share.app
        - com.hp.photo.instantshare
        /Applications/Hewlett-Packard/HP Panorama Stitching.app
        - com.hp.PanoramaStitching
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP E-mail Portal/HP E-mail Portal
        - N/A
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP Photo and Imaging Director/Director Docker.app
        - com.hp.director.docker
        /Applications/Hewlett-Packard/HP Software Update.app
        - com.hp.softwareupdate
        /Applications/Hewlett-Packard/HP Uninstaller
        - N/A
        /Applications/Karaoke Maker/Audacity.app
        - net.sourceforge.audacity
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute
        - com.macromedia.Contribute
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute/Contents/MacOS/Contribute
        - N/A
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8
        - com.macromedia.Dreamweaver
        /Applications/Macromedia Studio 8/Macromedia Extension Manager/Extension Manager.app
        - com.macromedia.ExtensionManager
        /Applications/Macromedia Studio 8/Macromedia Fireworks 8/Fireworks 8.app
        - com.macromedia.fireworks
        /Applications/Macromedia Studio 8/Macromedia Flash 8 VideoEncoder/Flash 8 Video Encoder.app
        - com.macromedia.FLVEncoder
        /Applications/Macromedia Studio 8/Macromedia Flash 8/Flash 8.app
        - com.macromedia.flash.8
        /Applications/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer
        - com.MindVision.VISEX
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer/Contents/MacOSClassic/Handheld Sync Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Microsoft Language Register/Microsoft Language Register
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remote Desktop Connection/Remote Desktop Connection
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remove Office/Remove Office
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer/Contents/MacOS/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/MSN Messenger.app
        - Microsoft/com.microsoft.Messenger
        /Applications/Microsoft Office 2004/Microsoft Entourage
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Excel
        - N/A
        /Applications/Microsoft Office 2004/Microsoft PowerPoint
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Word
        - N/A
        /Applications/Microsoft Office 2004/Office/Alerts Daemon.app
        - Microsoft/com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2004/Office/Database Utility
        - N/A
        /Applications/Microsoft Office 2004/Office/Equation Editor
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Cert Manager.app
        - com.microsoft.certmgr
        /Applications/Microsoft Office 2004/Office/Microsoft Clip Gallery
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Database Daemon
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Error Reporting.app
        - com.microsoft.error_reporting
        /Applications/Microsoft Office 2004/Office/Microsoft Graph
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Office Notifications
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Query
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Sync Services.app
        - com.microsoft.entourage.syncservices
        /Applications/Microsoft Office 2004/Office/Organization Chart
        - N/A
        /Applications/Microsoft Office 2004/Office/Project Gallery Launcher
        - N/A
        /Applications/Open XML Converter.app
        - com.microsoft.OfficeConverter
        /Applications/OpenOffice.app
        - org.openoffice.script
        /Applications/Quicken 2007/Quicken 2007
        - com.intuit.quicken
        /Applications/Quicken 2007/Quicken 2007/Contents/MacOS/Quicken 2007
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer
        - com.intuit.ero
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer/Contents/MacOSClassic/Emergency Records Organizer
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Home Inventory.app
        - com.intuit.HomeInventory
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Backup Utility.app
        - com.intuit.quicken.dotmac
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Scheduler
        - N/A
        /Applications/RealPlayer Converter.app
        - com.real.converter
        /Applications/RealPlayer.app
        - com.RealNetworks.RealPlayer
        /Applications/TorBrowser.app
        - N/A
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app
        - "com.Adobe.ESD.AdobeUpdaterApplication"
        /Library/Application Support/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /Library/Application Support/DivX/DivXUpdater.app
        - com.divx.DivXUpdater
        /Library/Application Support/Hewlett-Packard/Software Update/HP Rules Processor.app
        - com.hp.rulesprocessor
        /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app
        - com.hp.HPScheduler
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater
        - N/A
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater/Contents/MacOS/HP Software Updater
        - N/A
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        - com.microsoft.helpviewer
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
        - com.microsoft.openxml.chartconverter.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
        - com.microsoft.openxml.word.app
        /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
        - com.microsoft.openxml.powerpoint.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
        - com.apple.ScriptEditor.id.cocoa-applet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
        - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
        - com.apple.ScriptEditor.id.file-processing-droplet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
        - com.apple.ScriptEditor.id.image-file-processing-droplet-template
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/flashplayer
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_burn_cd.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_export_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_import_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_panorama_stitch.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_folders.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_edit.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_print.app
        - N/A
        /Library/Documentation/User Guides and Information.localized/Apple Hardware Test Read Me.app
        - com.apple.AppleHardwareTestReadMe
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/Scripts/Import and View with iPhoto.app
        - com.hp.iPhoto.icautotask
        /Library/Parallels/Parallels Mounter.app
        - com.parallels.server.mounter
        /Library/Printers/hp/Fax/fax.backend
        - com.hp.fax
        /Library/Printers/hp/Fax/rastertofax.filter
        - com.hp.rastertofax
        /Library/Printers/hp/cups/filters/commandtohp.filter
        - com.hp.print.cups.filter.commandtohp
        /Library/Printers/hp/cups/filters/pdftopdf.filter
        - com.hp.print.cups.filter.pdftopdf
        /Library/Printers/hp/cups/tools/autosetup.tool
        - com.hp.print.autosetup
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
        - com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Caches/com.adobe.Reader.ARM/UUID/Adobe Reader Updater.app
        - com.adobe.ARM
        /mike's old computer/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /mike's old computer/Adobe/Installers/R2/Setup.app
        - com.adobe.Installers.Setup
        /mike's old computer/Deimos Rising/Deimos Rising
        - N/A
        /mike's old computer/IA_Installers/TypingMaster_for_Mac/TypingMasterMac.app
        - N/A
        /mike's old computer/TypingMasterMac/UninstallerData/Uninstall TypingMaster for Mac.app
        - N/A
        /mike's old computer/TypingMasterMac/itutoreng.app
        - N/A
        /mike's old computer/adobe applications/Adobe GoLive CS/Adobe GoLive CS.app
        - com.adobe.GoLive
        /mike's old computer/adobe applications/Adobe Illustrator CS/2.app
        - com.adobe.illustrator
        /mike's old computer/adobe applications/Adobe InDesign CS/InDesign CS.app
        - com.adobe.InDesign
        /mike's old computer/adobe applications/Adobe InDesign CS/Plug-Ins/Online/AUMLibrary.cfm/Contents/SharedSupport/Adobe Update Manager.app
        - com.adobe.ESD.AUM
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe ImageReady CS.app
        - com.adobe.ImageReady
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe Photoshop CS.app
        - com.adobe.Photoshop
        /mike's old computer/adobe applications/Adobe Version Cue/Uninstall Adobe Version Cue.app
        - N/A
        /old computer stuff/At Ease Setup Folder/At Ease Setup
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Apple System Profiler
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Chooser
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/FaxStatus
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Graphing Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Browse the Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Connect To...
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Mail
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Key Caps
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Note Pad
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Remote Access Status
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Scrapbook
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Sherlock
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/SimpleSound
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Stickies
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/IntelliTools/Classic Sending Helper
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/Norton AntiVirus ƒ/NAV Small Scanner
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Appearance
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Apple Menu Options
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/AppleTalk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/ColorSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Configuration Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Control Strip
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Date & Time
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/DialAssist
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Energy Saver
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Extensions Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Exchange
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/General Controls
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Infrared
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Keyboard
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Location Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Memory
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Microsoft Office Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Modem
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Monitors & Sound
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Mouse
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Numbers
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuickTime™ Settings:™ Settings:
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuikSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Remote Access
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Speech
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Startup Disk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/TCP:IP
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Text
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Users & Groups
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Web Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Application Switcher
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/ColorSync Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Control Strip Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop Printer Spooler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FBC Indexing Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FaxMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Find/Find by Content Indexing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Folder Actions
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Norton Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Time Synchronizer
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Web Sharing Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Help/Apple Help Viewer/Help Viewer
        - N/A
        /old computer stuff/OLDIESystem Folder/MacTCP DNR
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Desktop Printer Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Network Setup Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/URL Access Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/System Extensions (Disabled)/AOL 5.0 Backup Installer
        - N/A
        /old computer stuff/Tony Hawk's Pro Skater 4/Tony Hawk's Pro Skater 4.app
        - com.aspyr.thps4
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/DivX Toolkit.framework
        - com.divx.divxtoolkit
        /Library/Frameworks/EWSMac.framework
        - com.eSellerate.EWSMac67108868
        /Library/Frameworks/HPSmartPrint.framework
        - com.hp.print.HPSmartPrint
        /Library/Frameworks/MacFUSE.framework
        - com.google.MacFUSE
        /Library/Frameworks/PrintMeSSL.framework
        - com.efi.printme.ssl
        /Library/Frameworks/TSLicense.framework
        - net.telestream.license
    PrefPane
        /Library/PreferencePanes/DivX.prefPane
        - com.divx.divxprefs
        /Library/PreferencePanes/Flip4Mac WMV.prefPane
        - net.telestream.wmv.prefpane
        /Library/PreferencePanes/MacFUSE.prefPane
        - com.google.MacFUSE
    Bundles
        /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
        - info.emagic.driver.unitor
        /Library/Contextual Menu Items/ParallelsCM.plugin
        - com.parallels.cmplugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        - com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
        - com.adobe.adobecp20
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
        - com.divx.DivXBrowserPlugin
        /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        - net.telestream.wmv.plugin
        /Library/Internet Plug-Ins/GarminGpsControl.plugin
        - com.garmin.GarminGpsControl
        /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
        - com.Google.GoogleEarthPlugin.plugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        - com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
        - com.google.googletalkbrowserplugin
        /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
        - com.apple.plugin.iPhotoPhotocast
        /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
        - com.google.o1dbrowserplugin
        /Library/Printers/Macromedia/PDEs/FlashPaperPDE.plugin
        - com.macromedia.flashpaper.pde.FlashPaperPDE
        /Library/Printers/PPD Plugins/AdobePDFPDE.plugin
        - com.Adobe.print.AdobePDF.pde
        /Library/QuickLook/GBQLGenerator.qlgenerator
        - com.apple.garageband.quicklookgenerator
        /Library/QuickLook/ParallelsQL.qlgenerator
        - com.parellels.quicklookgenerator
        /Library/Spotlight/GBSpotlightImporter.mdimporter
        - com.apple.garageband.spotlightimporter
        /Library/Spotlight/Microsoft Entourage.mdimporter
        - com.microsoft.entourageMDImporter
        /Library/Spotlight/ParallelsMD.mdimporter
        - com.parallels.mdimporter
        /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/12.0.0.70/PepperFlashPlayer.plugin
        - com.macromedia.PepperFlashPlayer.pepper
        /Users/USER/Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
        - com.citrixonline.mac.WebDeploymentPlugin
    Library paths
        /Applications/Karaoke Maker/libmp3lame.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/libwchar.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/CoreTypes.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCURL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCrypto.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibSSL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/SystemFrameworkUtils.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/ZLib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/DWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdCaps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdFS.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKEngine.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/AdobePIM.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/PWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_caps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_oobelib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_upgrade.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/UWA/UWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/core/AdobePIM.dylib
        /Library/Application Support/DivX/Libraries/libDivXDesktopSupport.dylib
        /Library/Application Support/DivX/QtPlugins/accessible/libqtaccessiblewidgets.dylib
        /Library/Application Support/DivX/QtPlugins/iconengines/libqsvgicon.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqgif.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqico.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqjpeg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqmng.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqsvg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqtiff.dylib
        /Library/Application Support/DivX/QtPlugins/script/libqtscriptdbus.dylib
        /Library/Application Support/DivX/QtPlugins/sqldrivers/libqsqlite.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse.dylib. dSYM/Contents/Resources/DWARF/libfuse.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse_ino64. dylib.dSYM/Contents/Resources/DWARF/libfuse_ino64.dylib
        /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Libraries/libHPIOnetsnmp.5.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/B/Resources/lib/SxC FReader.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/C/Resources/lib/SxC FReader.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnspr4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnssckbi.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplc4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplds4.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/w5owlxqa.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.758/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Caches/com.apple.ScreenSaver.Engine/com.apple.vision/com.ap ple.vision.64FaceCoreCLKernel.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libpbodbc3.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-jni-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-pb-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-rw-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-util-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/tomcat/webapps/ROOT/WEB-INF/components/com.adobe.bauhaus.nativecomm/res/VCF oundation.dylib
        /usr/lib/libgutenprint.2.0.3.dylib
        /usr/local/lib/libfreetype.6.3.16.dylib
        /usr/local/lib/libfreetype.6.dylib
        /usr/local/lib/libfreetype.dylib
        /usr/local/lib/libfuse.2.dylib
        /usr/local/lib/libfuse_ino64.2.dylib
    Installations
        Norton AntiVirus Application: 6/20/10, 10:21 PM
        Symantec Scheduler: 6/20/10, 10:21 PM
        Microsoft® Silverlight™ Browser Plug-In: 6/19/10, 8:25 PM
        Parallels Desktop 5 for Mac: 6/10/10, 6:02 AM
        MacFUSE Core: 6/10/10, 6:03 AM
    Elapsed time (sec): 317
    <Edited By Host>

  • Weblogic server performance is very slow and memory consumption is 99%

    I am facing one critical issue with the weblogic server..
    The server performance is very slow and one of the process is consuming more that 99% of the memory. Bouncing the server is not resolving the issue.
    Can see the memory usage below...
    Tasks: 134 total, 2 running, 132 sleeping, 0 stopped, 0 zombie
    Cpu(s):100.0%us, 0.0%sy, 0.0%ni, 0.0%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
    Mem: 7990656k total, 7947652k used, 43004k free, 9164k buffers
    Swap: 16386260k total, 4691704k used, 11694556k free, 56352k cached
    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    10263 oracle 24 0 10.9g 6.5g 14m S 99.2 85.3 34:31.52 java
    7409 oracle 16 0 12764 768 508 S 0.3 0.0 0:16.45 top
    Can some body help me on this.
    Thanks in advance.
    -Prasad

    Use the weblogic forum-
    WebLogic Server - Upgrade / Install / Environment / Migration

  • Early 2009 iMac is running very slow

    My early 2009 is running very slow.  Takes about a minute to open Safari upon start-up....even opening up folders from finder take a long time.  Get the spinning beachball often.  Opening websites takes 30-40 seconds sometimes....they do open eventually.  I have run permissions repair from Disk Utility. Our iPad has no such problems.  iMac is hardwired, iPad is wireless.  I ran a report with "EtreCheck" but don't really understand what it is telling me.  I have about 100GB of space left out of 300GB.  Will attach "EtreCheck" report if I can figure out how!
    Thanks so much for any help!  Only recent changes I have made is upgrading iPhone and updating Charter Cable Security Suite.
    Problem description:
    iMac running extremely slow, e.g. Safari takes a minute to open upon start up…
    EtreCheck version: 2.1.8 (121)
    Report generated March 14, 2015 at 10:56:31 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (20-inch, Early 2009) (Verified)
        iMac - model: iMac9,1
        1 2.66 GHz Intel Core 2 Duo CPU: 2-core
        2 GB RAM Upgradeable
            BANK 0/DIMM0
                1 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                1 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1680 x 1050
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Time since boot: 0:37:58
    Disk Information: ℹ️
        WDC WD3200AAJS-40H3A0 disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            B&F's Mac (disk0s2) / : 319.21 GB (100.33 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GA11N
    USB Information: ℹ️
        Western Digital Ext HDD 1021 1 TB
            disk1s1 (disk1s1) <not mounted> : 32 KB
            WD Elements (disk1s3) /Volumes/WD Elements : 1.00 TB (407.60 GB free)
        Apple Inc. Built-in iSight
        Apple Inc. Keyboard Hub
            Logitech USB RECEIVER
            Apple Inc. Apple Keyboard
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.Maxtor.driver.PowSecDriver (4.3.1) [Click for support]
        [loaded]    com.f-secure.kext.fsauth (1.0.0d1) [Click for support]
        [not loaded]    com.maxtor.iokit.IOFireWireMxBt (4.2.6) [Click for support]
    Startup Items: ℹ️
        HP IO: Path: /Library/StartupItems/HP IO
        MxBtDaemon: Path: /Library/StartupItems/MxBtDaemon
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [loaded]    com.f-secure.relauncher.plist [Click for support]
        [loaded]    com.f-secure.trasher.plist [Click for support]
        [loaded]    com.hp.help.tocgenerator.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.f-secure.fsavd.dbhelper.plist [Click for support]
        [running]    com.f-secure.fsavd.plist [Click for support]
        [loaded]    com.f-secure.fsmac.firewall.plist [Click for support]
        [loaded]    com.f-secure.fsmac.fsupdated_guts2.plist [Click for support]
        [loaded]    com.f-secure.fsmac.licensetool.plist [Click for support]
        [running]    com.f-secure.orspclient.plist [Click for support]
        [running]    com.iobit.AMCDaemon.plist [Click for support]
        [loaded]    com.klieme.TimeMachineScheduler.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
    User Launch Agents: ℹ️
        [running]    com.amazon.music.plist [Click for support]
        [failed]    com.google.GoogleContactSyncAgent.plist [Click for support] [Click for details]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.iobit.MacBoosterMini.plist [Click for support]
        [failed]    com.zeobit.MacKeeper.Helper.plist [Click for support] [Click for details]
        [running]    ws.agile.1PasswordAgent.plist [Click for support]
    User Login Items: ℹ️
        Garmin Express Service    Application  (/Applications/Garmin Express.app/Contents/Library/LoginItems/Garmin Express Service.app)
        iTunesHelper    UNKNOWN Hidden (missing value)
        Messages    Application  (/Applications/Messages.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Skype    Application  (/Applications/Skype.app)
        Charter Security Suite    Application  (/Applications/Charter Security Suite/F-Secure Mac Protection.app)
    Internet Plug-ins: ℹ️
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.2.1.11  [Click for support]
        AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        OfficeLiveBrowserPlugin: Version: 12.3.6 [Click for support]
        Silverlight: Version: 4.0.60310.0 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 Outdated! Update
        QuickTime Plugin: Version: 7.7.3
        AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        iPhotoPhotocast: Version: 7.0
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
        CANONiMAGEGATEWAYDL: Version: 3.0.0.2 [Click for support]
        JavaAppletPlugin: Version: Java 7 Update 71 Check version
    User internet Plug-ins: ℹ️
        WebEx: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        AdBlock
        Searchme [Adware! - Remove]
        Browsing protection
    3rd Party Preference Panes: ℹ️
        Safe Anywhere Mac Settings  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            B&F's Mac: Disk size: 319.21 GB Disk used: 218.88 GB
        Destinations:
            WD Elements [Local]
            Total size: 1.00 TB
            Total number of backups: 142
            Oldest backup: 2010-09-24 03:28:31 +0000
            Last backup: 2015-03-14 14:11:02 +0000
            Size of backup disk: Excellent
                Backup size 1.00 TB > (Disk size 319.21 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             0%    AppleSpell
             0%    fontd
             0%    askpermissiond
    Top Processes by Memory: ℹ️
        90 MB    Finder
        52 MB    WindowServer
        47 MB    Safari
        43 MB    mds_stores
        41 MB    Skype
    Virtual Memory Information: ℹ️
        37 MB    Free RAM
        522 MB    Active RAM
        503 MB    Inactive RAM
        382 MB    Wired RAM
        4.66 GB    Page-ins
        34 MB    Page-outs
    Diagnostics Information: ℹ️
        Mar 14, 2015, 10:56:30 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105630_[redacted].crash
        Mar 14, 2015, 10:56:20 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105620_[redacted].crash
        Mar 14, 2015, 10:56:09 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105609_[redacted].crash
        Mar 14, 2015, 10:55:58 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105558_[redacted].crash
        Mar 14, 2015, 10:55:49 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105549_[redacted].crash
        Mar 14, 2015, 10:55:38 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105538_[redacted].crash
        Mar 14, 2015, 10:55:27 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105527_[redacted].crash
        Mar 14, 2015, 10:55:00 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105500_[redacted].crash
        Mar 14, 2015, 10:54:45 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105445_[redacted].crash
        Mar 14, 2015, 10:54:37 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105437_[redacted].crash
        Mar 14, 2015, 10:54:25 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105425_[redacted].crash
        Mar 14, 2015, 10:54:14 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105414_[redacted].crash
        Mar 14, 2015, 10:54:04 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105404_[redacted].crash
        Mar 14, 2015, 10:53:32 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105332_[redacted].crash
        Mar 14, 2015, 10:53:21 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105321_[redacted].crash
        Mar 14, 2015, 10:53:10 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105310_[redacted].crash
        Mar 14, 2015, 10:30:26 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-03-14-103026_[reda cted].crash
        Mar 14, 2015, 10:16:07 AM    Self test - passed
        Mar 14, 2015, 09:33:17 AM    /Library/Logs/DiagnosticReports/softwareupdated_2015-03-14-093317_[redacted].cp u_resource.diag [Click for details]
        Mar 13, 2015, 02:25:12 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_201 5-03-13-142512_[redacted].crash
        Mar 14, 2015, 10:55:17 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105517_[redacted].crash
        Mar 14, 2015, 10:55:06 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105506_[redacted].crash
        Mar 14, 2015, 10:53:53 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105353_[redacted].crash
        Mar 14, 2015, 10:53:42 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/MacBooster mini_2015-03-14-105342_[redacted].crash
        Mar 13, 2015, 12:35:19 PM    /Library/Logs/DiagnosticReports/iTunes_2015-03-13-123519_[redacted].cpu_resourc e.diag [Click for details]
        Mar 13, 2015, 11:37:52 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Safari_2015-03-13-113752_[reda cted].crash

    I am having the same issue. I am going through some of the things listed above. When doing the Go To Folder portion of the Adware tutorial none of those files existed on my iMac. I will do the rest but was wondering if you can see any clear problems from my EtreCheck report. Thanks!
    Problem description:
    slow imac
    EtreCheck version: 2.1.8 (121)
    Report generated March 24, 2015 at 11:33:34 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
            DELL SE198WFP 1440 x 900 @ 60 Hz
    System Software: ℹ️
        OS X 10.10.3 (14D105g) - Time since boot: 14:29:35
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (47.13 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Internal Memory Card Reader
        Apple Inc. Built-in iSight
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Library/Extensions
        [not loaded]    com.microsoft.VirtualPC.Networking (7.0.0) [Click for support]
        [not loaded]    com.microsoft.VirtualPC.OSServices (7.0.0) [Click for support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.SAVD (1.0.0d1 - SDK 10.6) [Click for support]
        [not loaded]    com.eltima.SyncMate.kext (0.2.4b14) [Click for support]
        [not loaded]    com.flipvideo.IOUSBCameraMassStorage (1.0.1) [Click for support]
        [not loaded]    com.leapfrog.codeless.kext (2) [Click for support]
        [not loaded]    com.leapfrog.driver.LfConnectDriver (1.0.1) [Click for support]
        [not loaded]    com.logmein.driver.LogMeInSoundDriver (1.0.0) [Click for support]
        [loaded]    com.squirrels.airparrot.framebuffer (3 - SDK 10.7) [Click for support]
        [loaded]    com.squirrels.driver.AirParrotSpeakers (1.7 - SDK 10.7) [Click for support]
        [not loaded]    com.wdc.driver.1394HP (1.0.8) [Click for support]
        [not loaded]    com.wdc.driver.IOFireWireWDHID (1.1.2) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.10) [Click for support]
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.cloudphotosd.plist
        [killed]    com.apple.cmfsyncagent.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [failed]    com.apple.marcoagent.plist
        [killed]    com.apple.photolibraryd.plist
        [killed]    com.apple.sbd.plist
        [killed]    com.apple.scopedbookmarkagent.xpc.plist
        6 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.geod.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [failed]    com.apple.smbd.plist [Click for details]
        [killed]    com.apple.wdhelper.plist
        [killed]    org.cups.cupsd.plist
        7 processes killed due to memory pressure
    Launch Agents: ℹ️
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [failed]    syncmateStarter.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.sonos.smbbump.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [failed]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Click for support] [Click for details]
        [failed]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Click for support] [Click for details]
        [failed]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Click for support] [Click for details]
        [running]    com.spotify.webhelper.plist [Click for support]
        [loaded]    uk.co.markallan.clamxav.freshclam.plist [Click for support]
    User Login Items: ℹ️
        Google+ Auto Backup    Application  (/Applications/Google+ Auto Backup.app)
        Google Chrome    Application Hidden (/Applications/Google Chrome.app)
        Actions Server    Application  (/Applications/Actions Server.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        Unity Web Player: Version: UnityPlayer version 4.3.5f1 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.30214.0 - SDK 10.6 [Click for support]
        DirectorShockwave: Version: 12.1.5r155 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
    User internet Plug-ins: ℹ️
        Picasa: Version: 1.0 - SDK 10.6 [Click for support]
        NugsterPlugin: Version: Unknown - SDK 10.6 [Click for support]
        Dashlane: Version: Dashlane 1.0.0 - SDK 10.10 [Click for support]
    Safari Extensions: ℹ️
        Buffer
        QuickTu
        Evernote Web Clipper
        Dashlane
        defaultsearch
        DuckDuckGo
        Save to Pocket
        AdBlock
        Tumblr+
    Audio Plug-ins: ℹ️
        VolumeLogic: Version: Unknown [Click for support]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 499.25 GB Disk used: 452.11 GB
        Destinations:
            Seif Capsule [Network]
            Total size: 997.71 GB
            Total number of backups: 56
            Oldest backup: 2014-09-15 09:31:01 +0000
            Last backup: 2015-03-24 14:59:12 +0000
            Size of backup disk: Too small
                Backup size 997.71 GB < (Disk used 452.11 GB X 3)
    Top Processes by CPU: ℹ️
            35%    WindowServer
            23%    clamscan
            11%    Google Chrome
             2%    mds
             1%    coreaudiod
    Top Processes by Memory: ℹ️
        116 MB    Google Chrome
        115 MB    TweetDeck
        74 MB    Google Chrome Helper EH
        74 MB    Google Chrome Helper
        51 MB    clamscan
    Virtual Memory Information: ℹ️
        90 MB    Free RAM
        979 MB    Active RAM
        772 MB    Inactive RAM
        962 MB    Wired RAM
        47.27 GB    Page-ins
        1.00 GB    Page-outs
    Diagnostics Information: ℹ️
        Mar 23, 2015, 09:23:02 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.preferences.internet accounts.remoteservice_2015-03-23-212302_[redacted].crash
        Mar 23, 2015, 08:55:04 PM    Self test - passed
        Mar 23, 2015, 01:05:28 PM    /Library/Logs/DiagnosticReports/Pages_2015-03-23-130528_[redacted].hang
        Mar 23, 2015, 10:34:13 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-03-23-103413_[reda cted].crash
        Mar 21, 2015, 07:17:12 PM    /Library/Logs/DiagnosticReports/Kernel_2015-03-21-191712_[redacted].panic [Click for details]
        Mar 21, 2015, 01:41:17 PM    /Library/Logs/DiagnosticReports/TweetDeck_2015-03-21-134117_[redacted].cpu_reso urce.diag [Click for details]

  • My MacBook Pro is running very slow with the wheel constantly spinning.  Can anyone please help?!?!

    My MacBook is running very slow and the wheel is constantly spinning.  It's not just using the internet as it takes forever to start, open programs, etc.  It is even taking me a long time to type in this question as the spinning wheel keeps coming up.  Below is the EtreCheck.   I would appreciate it if someone could please help me!
    EtreCheck version: 1.9.15 (52)
    Report generated September 7, 2014 at 11:30:33 PM EDT
    Hardware Information: ?
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 4000 - VRAM: (null)
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 5:3:7
    Disk Information: ?
      TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 499.25 GB (425.17 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-8A8 
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.sony.driver.dsccamFirmwareUpdaterType00 (1 - SDK 10.6) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
    Launch Agents: ?
      [loaded] com.google.keystone.agent.plist Support
      [running] com.sony.SonyAutoLauncher.agent.plist Support
    User Launch Agents: ?
      [failed] com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
    User Login Items: ?
      iTunesHelper
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 14.0.0.176 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      Flash Player: Version: 14.0.0.176 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      o1dbrowserplugin: Version: 5.4.2.18903 Support
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      googletalkbrowserplugin: Version: 5.4.2.18903 Support
    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: ?
          3% WindowServer
          0% mdworker
          0% Microsoft Excel
          0% aosnotifyd
    Top Processes by Memory: ?
      115 MB Microsoft Excel
      115 MB Safari
      70 MB Mail
      68 MB com.apple.WebKit.WebContent
      66 MB com.apple.IconServicesAgent
    Virtual Memory Information: ?
      1.71 GB Free RAM
      1.46 GB Active RAM
      161 MB Inactive RAM
      685 MB Wired RAM
      353 MB Page-ins
      0 B Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming 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 read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //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`" );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 );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;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 14 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.

  • My mac mini is running very slow all of a sudden, how can i restore it's speed?

    my mac mini is running very slow all of a sudden, how can i restore it's speed?

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

Maybe you are looking for