Very slow distinct

Guys,
Please any of you experts, help me re-write the query.. I see the physical IO seems to be extreamly slow with this query.. I think it may be due to the joins. Is there a better way to re-write this ? I think SORT_UNIQUE is holding up the performance of this query.
SELECT DISTINCT ld.lock_id, ev.entity_id, ev.entity_volume_id,
-- to get new evid
ev.last_updated_by, ev.last_updated_date_time, ev.created_by,
ev.created_date_time
FROM entity_volume ev,
entity_volume_lock evl,
lock_detail ld,
period p
WHERE ev.program_id = :b5
AND ld.program_id = :b4
AND ev.volume_type = :b3
AND ld.period_id = ev.period_id
AND evl.entity_id = ev.entity_id
AND evl.lock_id = ld.lock_id
AND ld.period_id = p.period_id
AND p.month_year BETWEEN :b2 AND :b1
Explain plan is as below
Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
SELECT STATEMENT Optimizer Mode=ALL_ROWS          7           1993                     
SORT UNIQUE          7      679      1993                     
FILTER                                        
TABLE ACCESS BY LOCAL INDEX ROWID     ENTITY_VOLUME     1      61      3                     
NESTED LOOPS          7      679      1970                     
NESTED LOOPS          553      19 K     311                     
NESTED LOOPS          135      3 K     41                     
TABLE ACCESS FULL     PERIOD     1      11      2                     
INDEX RANGE SCAN     LOCK_DETAIL_IDX002     1      15      39                     
INDEX RANGE SCAN     ENTITY_VOLUME_LOCK_IDX_002     41      410      2                     
PARTITION RANGE SINGLE                                   KEY     KEY
INDEX RANGE SCAN     ENTITY_VOLUME_IDX_001     1           2                KEY     KEY

I'm not certain why Mr. Beilstein never replied and I believe his claim that "a programmer can almost always bypass the need to do a distinct" may be a little optomistic.
However, consider the two queries below:
SELECT CBONAME CBONAME
FROM (
SELECT 1 ORDNUM, 'MAN_'||TO_CHAR(SYSDATE,'YYYYMMDD')||UPPER('_'||:STRUSER) CBONAME FROM DUAL
UNION ALL
SELECT DISTINCT 2 ORDNUM, BATCHNAME CBONAME FROM LND_STAGESALESTRANSACTION
WHERE UPPER(BATCHNAME) LIKE UPPER('%_'||:STRUSER) OR :ISADMIN = 1
AND SUBSTR(UPPER(BATCHNAME),1,4)='MAN_'
AND (STAGEPROCESSFLAG = 0 OR STAGEPROCESSFLAG = :SHOWPROCESSED)
ORDER BY ORDNUM
SELECT CBONAME CBONAME, SUBSTR(CBONAME,LENGTH(:STRUSER)*-1)
FROM (
SELECT 1 ORDNUM, 'MAN_'||TO_CHAR(SYSDATE,'YYYYMMDD')||UPPER('_'||:STRUSER) CBONAME FROM DUAL
UNION ALL
SELECT 2 ORDNUM, BATCHNAME CBONAME FROM LND_STAGESALESTRANSACTION
WHERE SUBSTR(UPPER(BATCHNAME),1,4)='MAN_'
AND UPPER(SUBSTR(BATCHNAME,LENGTH(:STRUSER)*-1)) = UPPER(:STRUSER) OR :ISADMIN = 1
AND (STAGEPROCESSFLAG = 0 OR STAGEPROCESSFLAG = :SHOWPROCESSED)
GROUP BY BATCHNAME
The first is an example using distinct and like clauses. The second uses group by and substr. The second is twice as fast as the first.

Similar Messages

  • Report running very slow.. taking too much time

    Dear Oracle Report experts,
    I have developed report in oracle reports bulider 10g. while running it from report builder through main menu *** data is coming very SLOW *** within 55 Minuts.
    But, If same query is executing from SQL/PLSQL deverloper it is very fast within 45 second.
    Please suggest any configuration or setting ; is having Idea.
    Thanks
    Muhammad Salim
    Query is as below: generating result in 48 second.
    select cns.consultant,
    sum(cns.nof_pat) noof_pat,
    sum(cns.opd_amnt) opd_amnt,
    sum(cns.discount_amnt) discount_amnt,
    sum(cns.net_amnt) net_amnt,
    sum(cns.dr_share) dr_share,
    sum(cns.hosp_share) hosp_share,
    sum(cns.net_dis) net_dis
    from
    select rec.consultant,
    count(distinct rec.consultant) nof_pat,
    -- rec.receipt_date, bysalim
    pay_mode,
    rec.patient_mrno,rec.patient,
    service_name,rcpt_no,
    company,rec.docno,
    sum(distinct return_amnt) return_amnt,
    sum(distinct rec.opd_amnt) opd_amnt,
    sum(distinct dis.discount_amnt) discount_amnt,
    (sum(distinct nvl(rec.opd_amnt,0))-sum(distinct nvl(dis.discount_amnt,0))/count(rec.consultant)) net_amnt,
    round((((sum(distinct nvl(rec.opd_amnt,0))-sum(distinct nvl(dis.discount_amnt,0))/count(rec.consultant) ) *
    max(dr_per))/100),0) dr_share,
    round((((sum(distinct nvl(rec.opd_amnt,0))-sum(distinct nvl(dis.discount_amnt,0))/count(rec.consultant) ) *
    max(100-dr_per))/100),0) hosp_share,
    count(distinct rec.consultant) net_dis
    from
    select -- bokm_doc_dt receipt_date, bysalim
    bil_recept_no_a rcpt_no,
    fnc_org_sname(bokm_panel_comp_id) company,
    0 return_amnt,
    pr_mrno patient_mrno,pr_fname patient,
    bokm_doc_no docno,
    gcd_desc(bil_pay_mode_a) pay_mode,
    fnc_service_name(rslt_tst_code) service_name,
    dr_name consultant,
    pt_tst_rate opd_amnt,
    cons_share cons_share,
    (select max((nvl(rt_dr_share,0)*(100))/nvl(rt_amount,0))
    from hms_adm_dr_rt rt
    where dr.dr_id = rt.rt_dr_id
    and book.rslt_tst_code = rt.rt_scs_id) dr_per,
    dr_on_rent dr_rent,dr_share
    from hms_pat_pers pat,hms_lab_pat_mst pmst,hms_opd_book book,
    hms_pat_amnt amt,hms_adm_dr dr
    where pat.pr_mrno = pmst.bokm_mrno
    and pmst.bokm_mrno = book.rslt_mrno
    and pmst.bokm_doc_no = book.pt_pat_doc_no
    and pmst.bokm_mrno = amt.bil_mrnum_a
    and pmst.bokm_doc_no = amt.bil_docno_a
    and pmst.bokm_ref_conusltant_id = dr.dr_id
    and amt.bil_rcp_type_a = '075002'
    and pmst.bokm_pat_type in('PVT_OPD','CP_OPD')
    and amt.bil_void_a = 'N'
    and (pmst.bokm_user_dept_code != '039')
    and BOOK.CREATED_ON between '01-OCT-2011' and '17-OCT-2012'
    /* and (pat.pr_curr_cont_id = :P_CONT_ID or :P_CONT_ID = '000')
    and (pat.pr_curr_prvnc_id = :P_PRVNC_ID or :P_PRVNC_ID = '00')
    and (pat.pr_curr_city_id = :P_CITY_ID or :P_CITY_ID = '000')
    and (pat.pr_curr_area = :P_AREA_ID or :P_AREA_ID = '000')
    and (pat.pr_gender = :P_GENDER or :P_GENDER = 'A')
    and (pat.pr_marital_status = :P_MARITAL_STAT or :P_MARITAL_STAT = 'ALL')
    and (to_char(pmst.bokm_panel_comp_id) = :P_PANEL_COMP or :P_PANEL_COMP = 'ALL')
    and (pmst.bokm_ref_conusltant_id = :P_CONS or :P_CONS = 'ALL')
    and (decode(pmst.bokm_panel_comp_id,'1','PVT_IPD','CP_IPD') = :P_PAT_TYPE or :P_PAT_TYPE = 'ALL')
    &LPARA_RCPT_DT */
    ) rec,
    select -- bokm_doc_dt receipt_date, bysalim
    pr_mrno patient_mrno,
    bokm_doc_no docno,
    nvl(bil_disc_amont_a,0) discount_amnt
    from hms_pat_pers pat,hms_lab_pat_mst pmst,hms_opd_book book,
    hms_pat_amnt amt
    where pat.pr_mrno = pmst.bokm_mrno
    and pmst.bokm_mrno = book.rslt_mrno
    and pmst.bokm_doc_no = book.pt_pat_doc_no
    and pmst.bokm_mrno = amt.bil_mrnum_a
    and pmst.bokm_doc_no = amt.bil_docno_a
    and amt.bil_rcp_type_a = '075001'
    and pmst.bokm_pat_type in('PVT_OPD','CP_OPD')
    and amt.bil_void_a = 'N'
    and (pmst.bokm_user_dept_code != '039')
    and BOOK.CREATED_ON between '01-OCT-2011' and '17-OCT-2012'
    /* and (pat.pr_curr_cont_id = :P_CONT_ID or :P_CONT_ID = '000')
    and (pat.pr_curr_prvnc_id = :P_PRVNC_ID or :P_PRVNC_ID = '00')
    and (pat.pr_curr_city_id = :P_CITY_ID or :P_CITY_ID = '000')
    and (pat.pr_curr_area = :P_AREA_ID or :P_AREA_ID = '000')
    and (pat.pr_gender = :P_GENDER or :P_GENDER = 'A')
    and (pat.pr_marital_status = :P_MARITAL_STAT or :P_MARITAL_STAT = 'ALL')
    and (to_char(pmst.bokm_panel_comp_id) = :P_PANEL_COMP or :P_PANEL_COMP = 'ALL')
    and (pmst.bokm_ref_conusltant_id = :P_CONS or :P_CONS = 'ALL')
    and (decode(pmst.bokm_panel_comp_id,'1','PVT_IPD','CP_IPD') = :P_PAT_TYPE or :P_PAT_TYPE = 'ALL')
    and BOOK.CREATED_ON between :P_RCPT_DTFR and :P_RCPT_DTTO
    -- and BOOK.CREATED_ON between :P_RCPT_DTFR and :P_RCPT_DTTO
    &LPARA_RCPT_DT */
    ) dis
    where rec.patient_mrno = dis.patient_mrno (+)
    and rec.docno = dis.docno (+)
    --and patient = 'SHAHMEER'
    group by rec.consultant, --rec.receipt_date, bysalim
    rec.patient_mrno,rec.patient,
    pay_mode,service_name,rec.docno,
    rcpt_no,company
    order by rcpt_no,rec.consultant
    ) cns
    group by cns.consultant
    order by 1
    Edited by: user6431550 on Nov 15, 2012 3:10 AM

    Dear Oracle Report experts,
    I have developed report in oracle reports bulider 10g. while running it from report builder through main menu *** data is coming very SLOW *** within 55 Minuts.
    But, If same query is executing from SQL/PLSQL deverloper it is very fast within 45 second.
    Please suggest any configuration or setting ; is having Idea.
    Thanks
    Muhammad Salim
    Query is as below: generating result in 48 second.
    select cns.consultant,
    sum(cns.nof_pat) noof_pat,
    sum(cns.opd_amnt) opd_amnt,
    sum(cns.discount_amnt) discount_amnt,
    sum(cns.net_amnt) net_amnt,
    sum(cns.dr_share) dr_share,
    sum(cns.hosp_share) hosp_share,
    sum(cns.net_dis) net_dis
    from
    select rec.consultant,
    count(distinct rec.consultant) nof_pat,
    -- rec.receipt_date, bysalim
    pay_mode,
    rec.patient_mrno,rec.patient,
    service_name,rcpt_no,
    company,rec.docno,
    sum(distinct return_amnt) return_amnt,
    sum(distinct rec.opd_amnt) opd_amnt,
    sum(distinct dis.discount_amnt) discount_amnt,
    (sum(distinct nvl(rec.opd_amnt,0))-sum(distinct nvl(dis.discount_amnt,0))/count(rec.consultant)) net_amnt,
    round((((sum(distinct nvl(rec.opd_amnt,0))-sum(distinct nvl(dis.discount_amnt,0))/count(rec.consultant) ) *
    max(dr_per))/100),0) dr_share,
    round((((sum(distinct nvl(rec.opd_amnt,0))-sum(distinct nvl(dis.discount_amnt,0))/count(rec.consultant) ) *
    max(100-dr_per))/100),0) hosp_share,
    count(distinct rec.consultant) net_dis
    from
    select -- bokm_doc_dt receipt_date, bysalim
    bil_recept_no_a rcpt_no,
    fnc_org_sname(bokm_panel_comp_id) company,
    0 return_amnt,
    pr_mrno patient_mrno,pr_fname patient,
    bokm_doc_no docno,
    gcd_desc(bil_pay_mode_a) pay_mode,
    fnc_service_name(rslt_tst_code) service_name,
    dr_name consultant,
    pt_tst_rate opd_amnt,
    cons_share cons_share,
    (select max((nvl(rt_dr_share,0)*(100))/nvl(rt_amount,0))
    from hms_adm_dr_rt rt
    where dr.dr_id = rt.rt_dr_id
    and book.rslt_tst_code = rt.rt_scs_id) dr_per,
    dr_on_rent dr_rent,dr_share
    from hms_pat_pers pat,hms_lab_pat_mst pmst,hms_opd_book book,
    hms_pat_amnt amt,hms_adm_dr dr
    where pat.pr_mrno = pmst.bokm_mrno
    and pmst.bokm_mrno = book.rslt_mrno
    and pmst.bokm_doc_no = book.pt_pat_doc_no
    and pmst.bokm_mrno = amt.bil_mrnum_a
    and pmst.bokm_doc_no = amt.bil_docno_a
    and pmst.bokm_ref_conusltant_id = dr.dr_id
    and amt.bil_rcp_type_a = '075002'
    and pmst.bokm_pat_type in('PVT_OPD','CP_OPD')
    and amt.bil_void_a = 'N'
    and (pmst.bokm_user_dept_code != '039')
    and BOOK.CREATED_ON between '01-OCT-2011' and '17-OCT-2012'
    /* and (pat.pr_curr_cont_id = :P_CONT_ID or :P_CONT_ID = '000')
    and (pat.pr_curr_prvnc_id = :P_PRVNC_ID or :P_PRVNC_ID = '00')
    and (pat.pr_curr_city_id = :P_CITY_ID or :P_CITY_ID = '000')
    and (pat.pr_curr_area = :P_AREA_ID or :P_AREA_ID = '000')
    and (pat.pr_gender = :P_GENDER or :P_GENDER = 'A')
    and (pat.pr_marital_status = :P_MARITAL_STAT or :P_MARITAL_STAT = 'ALL')
    and (to_char(pmst.bokm_panel_comp_id) = :P_PANEL_COMP or :P_PANEL_COMP = 'ALL')
    and (pmst.bokm_ref_conusltant_id = :P_CONS or :P_CONS = 'ALL')
    and (decode(pmst.bokm_panel_comp_id,'1','PVT_IPD','CP_IPD') = :P_PAT_TYPE or :P_PAT_TYPE = 'ALL')
    &LPARA_RCPT_DT */
    ) rec,
    select -- bokm_doc_dt receipt_date, bysalim
    pr_mrno patient_mrno,
    bokm_doc_no docno,
    nvl(bil_disc_amont_a,0) discount_amnt
    from hms_pat_pers pat,hms_lab_pat_mst pmst,hms_opd_book book,
    hms_pat_amnt amt
    where pat.pr_mrno = pmst.bokm_mrno
    and pmst.bokm_mrno = book.rslt_mrno
    and pmst.bokm_doc_no = book.pt_pat_doc_no
    and pmst.bokm_mrno = amt.bil_mrnum_a
    and pmst.bokm_doc_no = amt.bil_docno_a
    and amt.bil_rcp_type_a = '075001'
    and pmst.bokm_pat_type in('PVT_OPD','CP_OPD')
    and amt.bil_void_a = 'N'
    and (pmst.bokm_user_dept_code != '039')
    and BOOK.CREATED_ON between '01-OCT-2011' and '17-OCT-2012'
    /* and (pat.pr_curr_cont_id = :P_CONT_ID or :P_CONT_ID = '000')
    and (pat.pr_curr_prvnc_id = :P_PRVNC_ID or :P_PRVNC_ID = '00')
    and (pat.pr_curr_city_id = :P_CITY_ID or :P_CITY_ID = '000')
    and (pat.pr_curr_area = :P_AREA_ID or :P_AREA_ID = '000')
    and (pat.pr_gender = :P_GENDER or :P_GENDER = 'A')
    and (pat.pr_marital_status = :P_MARITAL_STAT or :P_MARITAL_STAT = 'ALL')
    and (to_char(pmst.bokm_panel_comp_id) = :P_PANEL_COMP or :P_PANEL_COMP = 'ALL')
    and (pmst.bokm_ref_conusltant_id = :P_CONS or :P_CONS = 'ALL')
    and (decode(pmst.bokm_panel_comp_id,'1','PVT_IPD','CP_IPD') = :P_PAT_TYPE or :P_PAT_TYPE = 'ALL')
    and BOOK.CREATED_ON between :P_RCPT_DTFR and :P_RCPT_DTTO
    -- and BOOK.CREATED_ON between :P_RCPT_DTFR and :P_RCPT_DTTO
    &LPARA_RCPT_DT */
    ) dis
    where rec.patient_mrno = dis.patient_mrno (+)
    and rec.docno = dis.docno (+)
    --and patient = 'SHAHMEER'
    group by rec.consultant, --rec.receipt_date, bysalim
    rec.patient_mrno,rec.patient,
    pay_mode,service_name,rec.docno,
    rcpt_no,company
    order by rcpt_no,rec.consultant
    ) cns
    group by cns.consultant
    order by 1
    Edited by: user6431550 on Nov 15, 2012 3:10 AM

  • Query result is very slow

    i have two table master detail, for instance dept and emp
    the situtation is this. i need the recod of those departements who has clerks in specific time hired. i wrote following query. but due to millions of records in two tables its very very slow.
    select * from emp a,dept b
    where a.deptno in (select distinct deptno from emp where job='clerk')
    and hiredate >= '01-jun-2004' and hiredate <='01-jan-2007'
    and a.deptno=b.deptno
    can any body tune it.

    One thing I am seeing, that I find very troubling, is that posters such as the OP on this thread seem to be facing these tasks in a classroom or testing environment where they don't actually have access to Oracle and SQL*Plus.
    They are being asked to tune something that exists only on paper and don't have the tools to provide an explain plan, probably don't even have the ability to do a describe on the table(s) because they don't actually exist.
    If this is the case then the education system is cheating these people because tuning is not done in a room with the lights off by guessing. It is done, and only done, with:
    EXPLAIN PLAN FOR
    DBMS_XPLAN
    TKPROF
    a look at the statistics, etc.
    Here's a real-world example of what is wrong with what I see. Anyone want to guess which of these queries is the most efficient?
    SELECT srvr_id
    FROM servers
    INTERSECT
    SELECT srvr_id
    FROM serv_inst;
    SELECT srvr_id
    FROM servers
    WHERE srvr_id IN (
      SELECT srvr_id
      FROM serv_inst);
    SELECT srvr_id
    FROM servers
    WHERE srvr_id IN (
      SELECT i.srvr_id
      FROM serv_inst i, servers s
      WHERE i.srvr_id = s.srvr_id);
    SELECT DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id = i.srvr_id;
    SELECT /*+ NO_USE_NL(s,i) */ DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id = i.srvr_id;
    SELECT DISTINCT srvr_id
    FROM servers
    WHERE srvr_id NOT IN (
      SELECT srvr_id
      FROM servers
      MINUS
      SELECT srvr_id
      FROM serv_inst);
    SELECT srvr_id
    FROM servers s
    WHERE EXISTS (
      SELECT srvr_id
      FROM serv_inst i
      WHERE s.srvr_id = i.srvr_id);
    WITH q AS (
      SELECT DISTINCT s.srvr_id
      FROM servers s, serv_inst i
      WHERE s.srvr_id = i.srvr_id)
    SELECT * FROM q;
    SELECT DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id(+) = i.srvr_id;
    SELECT srvr_id
    FROM (
      SELECT srvr_id, SUM(cnt) SUMCNT
      FROM (
        SELECT DISTINCT srvr_id, 1 AS CNT
        FROM servers
        UNION ALL
        SELECT DISTINCT srvr_id, 1
        FROM serv_inst)
      GROUP BY srvr_id)
    WHERE sumcnt = 2;
    SELECT DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id+0 = i.srvr_id+0;And yes they all return the exact same result set using the test data.
    The chance that anyone can guess the most efficient query looking at what I just presented is precisely zero.
    Because the query most efficient in 8.1.7.4 is not the most efficient query in 9.2.0.4 which is not the most efficient query in 10.2.0.2.

  • The cursor movement is very 'slow' or 'inertial'

    Hi.
    I bought a mac mini with a magic mouse and connected it to a large LCD TV via HDMI (fullHD). Everything is excellent, save for the fact that the cursor movement is very 'slow' or 'inertial'.

    Hi,
    Whenever you write code, format it to show the scope of BEGIN, LOOP, IF statements, and so on.
    Type these 6 characters
    &#123;code&#125;
    (small letters only, inside curly brackets) before and after the formatted code, to preserve spacing on this site.
    You've discovered why the tecnique you're using is called "slow-by-slow" processing.
    You don't need a cursor. You may not even need PL/SQL.
    Just write an INSERT statement that reference the table from the cursor and the tables from your current INSERT statement.
    Here's one way:
    INSERT
    INTO     t1 (columns)
    SELECT         columns
    FROM     t2
    ,     t3
    WHERE     ...
    AND     (t2.month, t3.sp_name)     IN (
                              SELECT DISTINCT
                                   acct_month
                           ,        salesperson_name
                           FROM        period
                           );Depending on the details of your case, there may be a better way, such as a 3-way join.

  • Why iTunes is running very slow after v10.6.1 update?

    Once i update iTunes to version 10.6.1, it runs very very slow... almost to block OS X.
    i wonder if iTunes is rebuilding the music library or what, because this is very unusual in apps or any OS X software.
    thanks to all can help me in this question.

    Hello rcruzb -
    I don't have enough information about your situation to really deep-dive with you into a sure fix, but I can at least tell you that I was experiencing similar slowness/freezing in iTunes after updating to 10.6 - and it wasn't fixed in 10.6.1.
    I took some steps to isolate my issue, and you might consider taking those same steps (as they might yield a different result for you). Here's what I did to help isolate what caused my issue, along with the inevitable solution I found for me:
    - First, if you haven't done it recently, make sure your library is consolidated and organized automatically. You don't HAVE to do this, but it significantly improves performance in iTunes when the library is all in one spot and search indexing isn't spread all over the machine. Open iTunes, click iTunes (in your menubar), Preferences, Advanced, and ensure "Keep iTunes Media folder organized" and "Copy files to iTunes Media folder when adding to library" are both checked. To consolidate and organize your library, you can select File (in your menubar), Library, Organize Library, then ensure that both "Consolidate Files" and "Reorganize files in the folder 'iTunes Media'" are checked (if the latter option is grayed out, it just means it's already setup properly that way). Depending on the size of your library, this can take some time.
    - Second, you can attempt to rebuild your iTunes Library. This is a simple process which essentially has you create a new library, then take all the content from the old library and pull it back in. This can remedy issues where the iTunes Library itself is bloated, corrupted, or simply trying to search through some broken threads and taking a long time. Rather than flush all of this out here, I'll refer you to the official Apple support document: http://support.apple.com/kb/HT1451
    - Third, and this is what I determined fixed my issue: Turn off iTunes Match and/or Genius Mode. iTunes 10.5 had a known issue where the Genius Mode could become corrupt or would consume massive amounts of RAM, slowing iTunes to a crawl. iTunes Match actually enforces the use of Genius Mode - so I can't tell whether it's one or the other causing the freezing since they run together - so turning off iTunes Match turns off Genius Mode (but not the other way around). If you're using either of these services in iTunes, turn them off and relaunch iTunes. If your situation is anything like mine, you will see a dramatic improvement in the quality and responsiveness of iTunes. If you want to continue using iTunes Match, I'd recommend splitting up your iTunes into two libraries: one for music / iTunes Match / Genius, and one for TV Shows/Podcasts/Movies/Books/iOS syncing. To create a separate library, hold the Option key while clicking the iTunes app in your dock/finder/Launchpad and select "Create New Library". Save it somewhere and be sure to give it a distinctly different name so you don't get confused. Turn iTunes Match on in this new library and let it populate all your music, and use that library for music. When you want other media, hold option again when launching iTunes and say "Choose Library", then select the other.
    I hope this helps! It completely, 100% resolved my issues with iTunes 10.6. I know it's not a sure-thing and may not be a universal solution for everyone, but hopefully the steps above at least give you some things to consider that may have resolve or at least narrow down what's happening. Best of luck.

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

  • Mac Mini boots very slow with Mavericks (after security update)

    Hi,
    my Mac Mini boots very slow after I've installed Maveriks. I did two clean installs by now, seemed to work OK after the second one but after the latest safety update (2014-002) the boot time is up to 5+ minutes. Starting Safari or other software takes addtional time. See below for system specs, Etrecheck and log. Any ideas what could cause this? According to the update history I did install the security update 2014-002 twice on the same day although I cannot remember doing such a thing.
    Thanks Joerg
    Hardware Information:
              Mac mini (Late 2009)
              Mac mini - model: Macmini3,1
              1 2.53 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400 - VRAM: 256 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 0:42:32
    Disk Information:
              Hitachi HTS545032B9SA02 disk0 : (320,07 GB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) / [Startup]: 319,21 GB (225 GB free)
              OPTIARC DVD RW AD-5670S 
    USB Information:
              Mitsumi Electric Hub in Apple Extended USB Keyboard
                        Mitsumi Electric Apple Optical USB Mouse
                        Mitsumi Electric Apple Extended USB Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
    Gatekeeper:
              Mac App Store and identified developers
    User Login Items:
              iTunesHelper
    Internet Plug-ins:
              FlashPlayer-10.6: Version: 13.0.0.201 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.201 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              Default Browser: Version: 537 - SDK 10.9
    Safari Extensions:
              AdBlock: Version: 2.6.28
    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:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   3%          WindowServer
                   1%          fontd
                   0%          Console
                   0%          coreservicesd
                   0%          imagent
    Top Processes by Memory:
              213 MB          Safari
              90 MB          com.apple.IconServicesAgent
              90 MB          com.apple.WebKit.WebContent
              82 MB          mds_stores
              49 MB          Console
    Virtual Memory Information:
              5.33 GB          Free RAM
              1.60 GB          Active RAM
              211 MB          Inactive RAM
              627 MB          Wired RAM
              230 MB          Page-ins
              0 B          Page-outs
    28.04.14 09:48:09,000 bootlog[0]: BOOT_TIME 1398671289 0
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 kernel[0]: Longterm timer threshold: 1000 ms
    28.04.14 09:55:31,000 kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    28.04.14 09:55:31,000 kernel[0]: vm_page_bootstrap: 1867682 free pages and 147550 wired pages
    28.04.14 09:55:31,000 kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    28.04.14 09:55:31,000 kernel[0]: zone leak detection enabled
    28.04.14 09:55:31,000 kernel[0]: "vm_compressor_mode" is 4
    28.04.14 09:55:31,000 kernel[0]: standard timeslicing quantum is 10000 us
    28.04.14 09:55:31,000 kernel[0]: standard background quantum is 2500 us
    28.04.14 09:55:31,000 kernel[0]: mig_table_max_displ = 74
    28.04.14 09:55:31,000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    28.04.14 09:55:31,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for Sandbox
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for Quarantine
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    28.04.14 09:55:31,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    28.04.14 09:55:31,000 kernel[0]: The Regents of the University of California. All rights reserved.
    28.04.14 09:55:31,000 kernel[0]: MAC Framework successfully initialized
    28.04.14 09:55:31,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    28.04.14 09:55:31,000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    28.04.14 09:55:31,000 kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    28.04.14 09:55:31,000 kernel[0]: ACPI: sleep states S3 S4 S5
    28.04.14 09:55:31,000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    28.04.14 09:55:31,000 kernel[0]: [ PCI configuration begin ]
    28.04.14 09:55:31,000 kernel[0]: console relocated to 0xf80010000
    28.04.14 09:55:31,000 kernel[0]: [ PCI configuration end, bridges 5, devices 18 ]
    28.04.14 09:55:31,000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    28.04.14 09:55:31,000 kernel[0]: NVEthernet::start - Built Sep 19 2013 22:20:06
    28.04.14 09:55:31,000 kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    28.04.14 09:55:31,000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    28.04.14 09:55:31,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    28.04.14 09:55:31,000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 34159efffe270ccc; max speed s800.
    28.04.14 09:55:31,000 kernel[0]: rooting via boot-uuid from /chosen: 289A3125-09B8-376B-ACE3-38D61384202E
    28.04.14 09:55:31,000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    28.04.14 09:55:31,000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    28.04.14 09:55:31,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS545032B9SA02 Media/IOGUIDPartitionScheme/Customer@2
    28.04.14 09:55:31,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    28.04.14 09:55:31,000 kernel[0]: BTCOEXIST off
    28.04.14 09:55:31,000 kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    28.04.14 09:55:31,000 kernel[0]: 5.10.131.36
    28.04.14 09:55:31,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    28.04.14 09:48:39,817 com.apple.launchd[1]: *** launchd[1] has started up. ***
    28.04.14 09:48:39,817 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    28.04.14 09:55:30,438 hidd[43]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    28.04.14 09:55:30,439 hidd[43]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    28.04.14 09:55:30,602 com.apple.SecurityServer[25]: Session 100000 created
    28.04.14 09:55:31,684 fseventsd[44]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (3 442 34362)
    28.04.14 09:55:31,738 fseventsd[44]: log dir: /.fseventsd getting new uuid: 4D96DE92-DF6A-4074-A734-C058ACC67177
    28.04.14 09:55:33,000 kernel[0]: VM Swap Subsystem is ON
    28.04.14 09:55:33,000 kernel[0]: Waiting for DSMOS...
    28.04.14 09:55:36,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    28.04.14 09:55:36,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    28.04.14 09:55:36,000 kernel[0]: NVDAStartup: Official
    28.04.14 09:55:36,000 kernel[0]: init
    28.04.14 09:55:36,000 kernel[0]: probe
    28.04.14 09:55:36,000 kernel[0]: start
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    28.04.14 09:55:36,000 kernel[0]: IOBluetoothUSBDFU::probe
    28.04.14 09:55:36,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8216 FirmwareVersion - 0x0207
    28.04.14 09:55:36,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xe000
    28.04.14 09:55:36,000 kernel[0]: NVDANV50HAL loaded and registered
    28.04.14 09:55:36,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    28.04.14 09:55:36,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: Previous Shutdown Cause: 5
    28.04.14 09:55:36,000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    28.04.14 09:55:36,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6280 -- 0x3800 -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: DSMOS has arrived
    28.04.14 09:55:37,000 kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    28.04.14 09:55:38,000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    28.04.14 09:55:38,142 configd[54]: setting hostname to "Susannes-Mac-mini.local"
    28.04.14 09:55:38,147 configd[54]: network changed.
    28.04.14 09:55:38,368 com.apple.SecurityServer[25]: Entering service
    28.04.14 09:55:38,000 kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    28.04.14 09:55:38,000 kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    28.04.14 09:55:39,000 kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    28.04.14 09:55:39,000 kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    28.04.14 09:55:41,920 digest-service[63]: label: default
    28.04.14 09:55:41,921 digest-service[63]:           dbname: od:/Local/Default
    28.04.14 09:55:41,921 digest-service[63]:           mkey_file: /var/db/krb5kdc/m-key
    28.04.14 09:55:41,921 digest-service[63]:           acl_file: /var/db/krb5kdc/kadmind.acl
    28.04.14 09:55:42,335 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    28.04.14 09:55:42,768 loginwindow[38]: Login Window Application Started
    28.04.14 09:55:43,026 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    28.04.14 09:55:43,278 airportd[61]: sandbox cache error 3850
    28.04.14 09:55:43,423 digest-service[63]: sandbox cache error 11: database disk image is malformed
    28.04.14 09:55:43,851 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:55:44,005 com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    28.04.14 09:55:44,942 digest-service[63]: digest-request: uid=0
    28.04.14 09:55:45,441 airportd[61]: airportdProcessDLILEvent: en1 attached (up)
    28.04.14 09:55:45,729 awacsd[57]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    28.04.14 09:55:46,356 awacsd[57]: InnerStore CopyAllZones: no info in Dynamic Store
    28.04.14 09:55:46,370 stackshot[21]: Timed out waiting for IOKit to finish matching.
    28.04.14 09:55:47,289 configd[54]: network changed.
    28.04.14 09:55:47,291 configd[54]: network changed: DNS*
    28.04.14 09:55:47,318 systemkeychain[82]: done file: /var/run/systemkeychaincheck.done
    28.04.14 09:55:47,593 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28.04.14 09:55:47,723 mDNSResponder[35]: D2D_IPC: Loaded
    28.04.14 09:55:47,723 mDNSResponder[35]: D2DInitialize succeeded
    28.04.14 09:55:47,727 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    28.04.14 09:55:48,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xe000 ****
    28.04.14 09:55:48,846 networkd[98]: networkd.98 built Aug 24 2013 22:08:46
    28.04.14 09:55:48,926 digest-service[63]: digest-request: netr probe 0
    28.04.14 09:55:48,927 digest-service[63]: digest-request: init request
    28.04.14 09:55:49,050 digest-service[63]: digest-request: init return domain: BUILTIN server: SUSANNES-MAC-MINI indomain was: <NULL>
    28.04.14 09:55:49,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    28.04.14 09:55:55,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    28.04.14 09:55:55,395 WindowServer[80]: Server is starting up
    28.04.14 09:55:55,554 WindowServer[80]: Session 256 retained (2 references)
    28.04.14 09:55:55,554 WindowServer[80]: Session 256 released (1 references)
    28.04.14 09:55:55,619 WindowServer[80]: Session 256 retained (2 references)
    28.04.14 09:55:55,689 WindowServer[80]: init_page_flip: page flip mode is on
    28.04.14 09:55:56,015 mds[34]: (Normal) FMW: FMW 0 0
    28.04.14 09:55:56,075 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    28.04.14 09:55:56,238 WindowServer[80]: Found 27 modes for display 0x00000000 [24, 3]
    28.04.14 09:55:56,569 WindowServer[80]: Found 1 modes for display 0x00000000 [1, 0]
    28.04.14 09:55:56,571 WindowServer[80]: mux_initialize: Couldn't find any matches
    28.04.14 09:55:56,572 WindowServer[80]: Found 27 modes for display 0x00000000 [24, 3]
    28.04.14 09:55:56,778 locationd[40]: Location icon should now be in state 'Inactive'
    28.04.14 09:55:56,964 WindowServer[80]: Found 1 modes for display 0x00000000 [1, 0]
    28.04.14 09:55:56,995 WindowServer[80]: WSMachineUsesNewStyleMirroring: false
    28.04.14 09:55:56,997 WindowServer[80]: Display 0x764bdc00: GL mask 0x1; bounds (0, 0)[1280 x 1024], 27 modes available
    Main, Active, on-line, enabled, boot, Vendor 4dd9, Model 2f70, S/N 0, Unit 0, Rotation 0
    UUID 0x6077c6f135c4c44ddc359cba2050401d
    28.04.14 09:55:56,997 WindowServer[80]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    28.04.14 09:55:56,998 WindowServer[80]: WSSetWindowTransform: Singular matrix
    28.04.14 09:55:57,421 WindowServer[80]: Display 0x764bdc00: GL mask 0x1; bounds (0, 0)[1280 x 1024], 27 modes available
    Main, Active, on-line, enabled, boot, Vendor 4dd9, Model 2f70, S/N 0, Unit 0, Rotation 0
    UUID 0x6077c6f135c4c44ddc359cba2050401d
    28.04.14 09:55:57,421 WindowServer[80]: Display 0x003f003d: GL mask 0x2; bounds (2304, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    28.04.14 09:55:57,421 WindowServer[80]: CGXPerformInitialDisplayConfiguration
    28.04.14 09:55:57,421 WindowServer[80]:   Display 0x764bdc00: Unit 0; Vendor 0x4dd9 Model 0x2f70 S/N 0 Dimensions 13.31 x 10.63; online enabled, Bounds (0,0)[1280 x 1024], Rotation 0, Resolution 1
    28.04.14 09:55:57,422 WindowServer[80]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    28.04.14 09:55:57,592 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180C560 Susannes-Mac-mini.local. (AAAA) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180C9F0 C.C.C.0.7.2.E.F.F.F.E.9.5.1.6.3.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180E160 Susannes-Mac-mini.local. (Addr) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180E5F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    28.04.14 09:55:59,615 WindowServer[80]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x0000428b, unit 0, caps QEX|MIPMAP, vram 256 MB
    28.04.14 09:55:59,715 WindowServer[80]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    28.04.14 09:55:59,716 WindowServer[80]: GLCompositor enabled for tile size [256 x 256]
    28.04.14 09:55:59,716 WindowServer[80]: CGXGLInitMipMap: mip map mode is on
    28.04.14 09:55:59,726 WindowServer[80]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:55:59,801 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:56:00,154 configd[54]: network changed: v4(en0+:192.168.178.24) DNS+ Proxy+ SMB
    28.04.14 09:56:00,166 configd[54]: setting hostname to "susannes-mini.fritz.box"
    28.04.14 09:56:01,357 awacsd[57]: Exiting
    28.04.14 09:56:02,738 WindowServer[80]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc9bb513090) - enabling OpenGL
    28.04.14 09:56:03,337 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,383 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,397 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,448 ntpd[106]: proto: precision = 1.000 usec
    28.04.14 09:56:03,489 launchctl[126]: com.apple.findmymacmessenger: Already loaded
    28.04.14 09:56:03,785 com.apple.SecurityServer[25]: Session 100004 created
    28.04.14 09:56:04,311 digest-service[63]: digest-request: uid=0
    28.04.14 09:56:04,312 digest-service[63]: digest-request: init request
    28.04.14 09:56:04,316 digest-service[63]: digest-request: init return domain: MACMINI-270CCC server: SUSANNES-MINI indomain was: <NULL>
    28.04.14 09:56:04,363 digest-service[63]: digest-request: uid=0
    28.04.14 09:56:04,364 digest-service[63]: digest-request: init request
    28.04.14 09:56:04,368 digest-service[63]: digest-request: init return domain: SUSANNES-MINI server: SUSANNES-MINI indomain was: <NULL>
    28.04.14 09:56:04,370 UserEventAgent[127]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:56:05,219 loginwindow[38]: Login Window Started Security Agent
    28.04.14 09:56:05,648 SecurityAgent[142]: This is the first run
    28.04.14 09:56:05,649 SecurityAgent[142]: MacBuddy was run = 0
    28.04.14 09:56:05,672 SecurityAgent[142]: User info context values set for susannescherwinski
    28.04.14 09:56:06,399 loginwindow[38]: Login Window - Returned from Security Agent
    28.04.14 09:56:06,427 loginwindow[38]: USER_PROCESS: 38 console
    28.04.14 09:56:06,000 kernel[0]: AppleKeyStore:Sending lock change 0
    28.04.14 09:56:06,970 com.apple.launchd.peruser.501[145]: Background: Aqua: Registering new GUI session.
    28.04.14 09:56:06,996 com.apple.launchd.peruser.501[145]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    28.04.14 09:56:06,998 com.apple.launchd.peruser.501[145]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    28.04.14 09:56:07,002 launchctl[147]: com.apple.pluginkit.pkd: Already loaded
    28.04.14 09:56:07,002 launchctl[147]: com.apple.sbd: Already loaded
    28.04.14 09:56:07,029 distnoted[149]: # distnote server agent  absolute time: 479.663146784   civil time: Mon Apr 28 09:56:07 2014   pid: 149 uid: 501  root: no
    28.04.14 09:56:07,530 UserEventAgent[148]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    28.04.14 09:56:07,732 com.apple.SecurityServer[25]: Session 100006 created
    28.04.14 09:56:07,760 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    28.04.14 09:56:07,793 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:07,820 sharingd[170]: Starting Up...
    28.04.14 09:56:07,954 WindowServer[80]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:56:08,649 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:09,364 com.apple.IconServicesAgent[201]: IconServicesAgent launched.
    28.04.14 09:56:09,577 accountsd[202]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    28.04.14 09:56:09,719 com.apple.SecurityServer[25]: Session 100009 created
    28.04.14 09:56:10,587 WiFiKeychainProxy[182]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    28.04.14 09:56:10,588 WiFiKeychainProxy[182]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    28.04.14 09:56:10,847 SystemUIServer[156]: Cannot find executable for CFBundle 0x7fb68855c320 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    28.04.14 09:56:10,864 SystemUIServer[156]: Cannot find executable for CFBundle 0x7fb68847aab0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    28.04.14 09:56:12,097 imagent[189]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:12,122 imagent[189]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    28.04.14 09:56:12,123 imagent[189]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    28.04.14 09:56:12,163 soagent[184]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:12,181 soagent[184]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:12,184 soagent[184]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:12,417 secd[207]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    28.04.14 09:56:12,417 secd[207]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    28.04.14 09:56:12,639 secd[207]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    28.04.14 09:56:12,639 secd[207]:  securityd_xpc_dictionary_handler WiFiKeychainProx[182] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    28.04.14 09:56:12,944 com.apple.time[148]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    28.04.14 09:56:22,465 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,038 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,156 soagent[184]: Killing soagent.
    28.04.14 09:56:23,156 NotificationCenter[181]: SOHelperCenter main connection interrupted
    28.04.14 09:56:23,159 NotificationCenter[181]: SOHelperCenter main connection interrupted
    28.04.14 09:56:23,160 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:184)
    28.04.14 09:56:23,160 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:184)
    28.04.14 09:56:23,314 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,316 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:24,403 parentalcontrolsd[216]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    28.04.14 09:56:33,245 com.apple.time[148]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    28.04.14 09:56:33,310 soagent[217]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:33,318 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:33,467 com.apple.dock.extra[212]: No endpoint returned trying to load UnreadCountController.bundle, suspending
    28.04.14 09:56:33,493 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:33,494 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:44,319 soagent[217]: Killing soagent.
    28.04.14 09:56:44,320 com.apple.dock.extra[212]: SOHelperCenter main connection interrupted
    28.04.14 09:56:44,322 com.apple.dock.extra[212]: SOHelperCenter main connection interrupted
    28.04.14 09:56:44,324 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:217)
    28.04.14 09:56:44,324 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:217)
    28.04.14 10:00:56,532 WindowServer[80]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    28.04.14 10:00:57,256 WindowServer[80]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.72 seconds (server forcibly re-enabled them after 1.00 seconds)
    28.04.14 10:00:59,103 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x42d] flags: 0x8 binding: FileInfoBinding [0x1f3] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    28.04.14 10:00:59,104 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:64 scale: 1
    28.04.14 10:00:59,143 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x3df] flags: 0x8 binding: FileInfoBinding [0x2e5] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    28.04.14 10:00:59,144 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:64 scale: 1
    28.04.14 10:00:59,208 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x1f5] flags: 0x8 binding: FileInfoBinding [0x42f] - extension: mp3, UTI: public.mp3, fileType: MPG3.
    28.04.14 10:00:59,208 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: mp3, UTI: public.mp3, fileType: MPG3 request size:64 scale: 1
    28.04.14 10:01:03,377 mds[34]: (Normal) Volume: volume:0x7f9c5c863000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.S2FNIL
    28.04.14 10:01:17,708 System Events[269]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    28.04.14 10:01:17,709 System Events[269]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.
    28.04.14 10:01:24,175 Safari[219]: ERROR: ForceShrinkPersistentStore_NoLock -delete- We do not have a BLOB or TEXT column type.  Instead, we have 5.

    Anybody?
    Did I something wrong? Too many lines of log? Wrong category? Enlighten me. Thx.

  • AP1231G-A-K9 access points - very slow throughput - Is TKIP the issue?

    I recently setup our small office network using the following setup:
    Cablemodem <--> router <--> 1231AP(role root bridge with wireless clients) <-> 1231AP(role non-root bridge with wireless clients)
    Code on both APs: 12.3(8)JEE
    Office network generally has less than 3 wireless clients connected at any one time to either AP.
    AP's are a mere 50' apart; clients are all less than 30' from either AP; they all show excellent signal and connected at 54mbps signaling rates.
    All is/has been working very well & very stable with the exception of speed. We have business class service from RR, approx 25mbps dl, 2mbps ul. Any hardwired client to the router switch ports are able to download at speeds averaging 23mbps. Any wireless client connected to either AP is never able to exceed download speeds of 5mbps. With no other wireless clients connected except my one test client, I was not able to exceed 5mbps throughput from either AP that I connected to.
    I can confirm that the ethernet connection between the router and root bridge is up at 100mbps-FD and not showing any errors:
    ap#sh interfaces FastEthernet0
    FastEthernet0 is up, line protocol is up
      Hardware is PowerPC405GP Ethernet, address is 0013.60cf.bb29 (bia 0013.60cf.bb29)
      MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      Full-duplex, 100Mb/s, MII
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input 00:00:00, output 00:00:00, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/160/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 5000 bits/sec, 0 packets/sec
      5 minute output rate 1000 bits/sec, 1 packets/sec
         8054605 packets input, 3141009145 bytes
         Received 46005 broadcasts, 0 runts, 0 giants, 0 throttles
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 watchdog
         0 input packets with dribble condition detected
         4076106 packets output, 411952731 bytes, 0 underruns
         0 output errors, 0 collisions, 4 interface resets
         0 babbles, 0 late collision, 0 deferred
         0 lost carrier, 0 no carrier
         0 output buffer failures, 0 output buffers swapped out
    Wandering thru the cli on either AP shows that all wireless clients are indeed connected at 54mbps to their respective AP and the two AP's are connected happily at 54mbps signaling:
    Address           : 0013.1a37.b3e0     Name             : ap
    IP Address        : 192.168.0.120      Interface        : Dot11Radio 0
    Device            : 11g-bridge         Software Version : 12.3
    CCX Version       : NONE
    State             : Assoc              Parent           : Our Parent        
    SSID              : Tsunami
    VLAN              : 0
    Hops to Infra     : 0                  Association Id   : 44
    Tunnel Address    : 0.0.0.0
    Key Mgmt type     : WPA PSK            Encryption       : TKIP
    Current Rate      : 54.0               Capability       : WMM ShortHdr ShortSlot
    Supported Rates   : 1.0 2.0 5.5 6.0 9.0 11.0 12.0 18.0 24.0 36.0 48.0 54.0
    Voice Rates       : disabled
    Signal Strength   : -51  dBm           Connected for    : 75169 seconds
    Signal to Noise   : 26  dB            Activity Timeout : 14 seconds
    Power-save        : Off                Last Activity    : 1 seconds ago
    Apsd DE AC(s)     : NONE
    Packets Input     : 1050695            Packets Output   : 296536   
    Bytes Input       : 474651248          Bytes Output     : 96734573 
    Duplicates Rcvd   : 0                  Data Retries     : 63646    
    Decrypt Failed    : 0                  RTS Retries      : 0        
    MIC Failed        : 0                  MIC Missing      : 0        
    Packets Redirected: 0                  Redirect Filtered: 0
    Here is a config snippet from the AP non-root bridge with wireless clients:
    dot11 ssid Tsunami
       authentication open
       authentication key-management wpa
       guest-mode
       infrastructure-ssid optional
       wpa-psk ascii 7 (snipped)
    bridge irb
    interface Dot11Radio0
    no ip address
    no ip route-cache
    encryption mode ciphers tkip
    ssid Tsunami
    speed basic-1.0 2.0 5.5 6.0 9.0 11.0 12.0 18.0 24.0 36.0 48.0 54.0
    station-role non-root bridge wireless-clients
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    interface FastEthernet0
    no ip address
    no ip route-cache
    duplex auto
    speed auto
    bridge-group 1
    bridge-group 1 spanning-disabled
    interface BVI1
    ip address dhcp client-id FastEthernet0
    no ip route-cache
    bridge 1 route ip
    (The AP root-bridge with wireless clients config is identical to this config with the exception of the station-role and a static IP on the BVI1 interface.)
    Are these very slow thoughput speeds normal of this hardware combination?
    I did much searching/googling and found claims that by eliminating TKIP it almost doubles the actual wireless speeds our clients can obtain. Is there any truth to this?
    Any suggestions or recommendations without changing hardware would be very welcome.
    Thanks in Advance!
    D.
    =============

    Ok, thanks for the explanation - I understand. But even at a 22mbps signaling rate shouldn't I be seeing throughputs greater than 5-5.5mbps especially since this location is literally 100% free of any outside interference and the interfaces definitely show the clients and non-root bridge (when connected) all being at the highest rate of 54mbps? I tried even in the same room, approximately 40' away, total line of sight, no obstructions, between my laptop and the root AP.
    I disconnected the non-root bridge and connected directly to the root bridge during my testing. I was still only able to achieve approx 5.5mbps download. Adding back in the non-root bridge and re-connecting to it I notice slightly lower throughput, approx 5mbps. During testing, my laptop was the only device connected to the network, all other clients were shut off.
    Here are the int stats (I've never reset the counters):
    Root Bridge:
    RATE 1.0 Mbps
    Rx Packets:           2178725 /  49    Tx Packets:                   39 /   0
    Rx Bytes:            335124036 /7595    Tx Bytes:                   4965 /   0
    RTS Retries:               61 /   0    Data Retries:                  5 /   0
    Non-Root-Bridge:
    RATE 1.0 Mbps
    Rx Packets:           2323120 /  50    Tx Packets:                  141 /   0
    Rx Bytes:            336455923 /7595    Tx Bytes:                  17869 /   0
    RTS Retries:                2 /   0    Data Retries:                 56 /   0
    All the other rates, 2-12mbps show single or double digit packet/byte counts until I get to the 36mbps section of each interface:
    ap#sh int Dot11Radio0 stati
            DOT11 Statistics        (Cumulative Total/Last 5 Seconds):
    (snipped for brevity)
    Root Bridge:
    RATE 36.0 Mbps
    Rx Packets:            915395 /   1    Tx Packets:              2345589 /   9
    Rx Bytes:            93420936 /  70    Tx Bytes:             3370791285 / 874
    RTS Retries:                0 /   0    Data Retries:             573981 /   4
    RATE 48.0 Mbps
    Rx Packets:           2163192 /   2    Tx Packets:               216861 /   0
    Rx Bytes:            222455730 / 404    Tx Bytes:              182817967 /   0
    RTS Retries:                0 /   0    Data Retries:             106808 /   0
    RATE 54.0 Mbps
    Rx Packets:            987986 /   0    Tx Packets:               168923 /   0
    Rx Bytes:            190467269 /   0    Tx Bytes:               61665042 /   0
    RTS Retries:                0 /   0    Data Retries:              34424 /   0
    Non-Root Bridge:
    RATE 36.0 Mbps
    Rx Packets:           2368679 /   0    Tx Packets:               965419 /   0
    Rx Bytes:            3396819830 /   0    Tx Bytes:               90880825 /   0
    RTS Retries:                0 /   0    Data Retries:             242686 /   0
    RATE 48.0 Mbps
    Rx Packets:            341870 /   0    Tx Packets:              2156282 /   1
    Rx Bytes:            216497093 /   0    Tx Bytes:              215775536 / 210
    RTS Retries:                0 /   0    Data Retries:             478619 /   0
    RATE 54.0 Mbps
    Rx Packets:           1469926 /  15    Tx Packets:              2529678 /  15
    Rx Bytes:            411722698 /1122    Tx Bytes:             1366306113 /5159
    RTS Retries:                0 /   0    Data Retries:             198532 /   0
    I will try disabling the rates below 12mbps and re-test.
    I would like to try disabling all encryption and try as well.
    Do you know if the AP's will associate if there is zero encryption?

  • Window 8.1 Running very slow

    Dear Team
    I am using window 8.1 Pro & office 2013 ,which is running very slow in system , kindly suggest me what  should i do regarding this problem
    Regards
    Saurabh
    Cont No-9997255621

    I had a similar issue with 8.1 early on, looked at task manager and disk was at 100% most of the time upgraded to a newer Hard drive problem was solved, the first hard drive was a slower and smaller cache drive.

  • When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue

    When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue.

    Hi Jdentremont,
    Lync client gets user photos by first querying the Address Book Web Query (ABWQ) service on the server, which is exposed through the Distribution List Expansion web service. The client receives
    the image file and then copies it to the user's cache to avoid downloading the image each time it needs to be displayed. The attribute values returned from the query are also stored in the cached Address Book Service entry for the user. The Address Book Service
    deletes all cached images every 24 hours, which means that it can take up to 24 hours for new user images to be updated in the cache on the server.
    To troubleshoot your problem, please follow the steps below:
    1.  Navigate to
     “X:\share\1-WebServices-1\ABfiles\000000000\000000000” folder. (ABS file share)
    You should see some photo files in this folder as the following screenshot.
    2. Delete all the files in this folder.
    3. On test PC, delete local cache files.
    %userprofile%\AppData\Local\Microsoft\Office\15.0\Lync\[email protected]
    4. Sign-in Lync with the test account.
    5. Go back to the ABS file share, check if there is any Photo file in the folder.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Live Cam Voice on HP DV8305 -- Video image very slow

    I installed Live! Cam Voice on my HP DV8305 succussfully, it works, but the video image is very slow. it needs about 30sec to capture a frame, sometime just stucked. I changed the Display Adaptive Driver, used differrent USB IF, checked my CPU and Memery usage, my HD space, use differrent IM -- skype, MSN, .... Any one can help?

    As further information, the issue seems to be with the exposure setting. When I turn auto exposure off, then set exposure down as low as it will go, the picture darkens, but the frame rate goes up. I don't have this problem with my Logitech QuickCam Orbit -- I'm not sure if the problem is with the firmware, or if the CMOS sensor in the Live! Cam Voice is just smaller.

  • Snow Leopard - very slow restart / reboot and Boot Camp restart fail

    Hi
    After Snow Leopard installation on my Macbook Pro I have a very slow restart. I logged this immediately after install and waited till 10.6.1 was issued and installed but still have the same problems. Hope some one can help.
    For an normal restart or reboot I have the grey screen for about 25 secs and then the blue screen hangs for about 2 mins 30 secs before loading desktop. This is longer than Leopard and clearly not what Snow Leopard is meant to be. I have installed on an iMac as well and can see the new normal fast boot.
    I also have Windows on it's own partition and use in Boot Camp. I have used this successfully under Leopard.
    When I restart from Windows using the Start button and restart, Windows shuts down and then the mac starts up but gets stuck indefinitely on the blue screen. I have waited up to 25 mins then forced a shut down.
    However if I restart from Windows using the Boot Camp icon in the taskbar and choose the restart from MacOSX it shuts down windows and restarts the mac in record time!! about 25 secs grey screen and 25 secs blue screen. I can't get this in normal mac mode! - Bizarre.
    I have run Disk Utility, repaired permissions, run Tech Tool, Onyx, reset PRAM, deleted startup items plists and removed startup items from System Preferences Account.
    I have monitored the Console app for all the startup conditions noted above and will post below. In the logs of the normal mac reboot you can see something to do with Security Agent taking over 2 mins to load. Maybe that is a clue, but I don't understand these messages. Please note that the iStatsmenu app was installed after snow leopard and I had these slow startups before it's installation.
    If anyone technical can understand what the **** is going on here I would really appreciate your feedback.
    Regards
    Eric
    system.log
    Sep 13 18:09:01 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 13 18:09:08 localhost mDNSResponder[17]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Sep 13 18:09:09 localhost pcscd[28]: Non-smartcard device launched pcscd [Vendor: 0X3F0, Product: 0X5711]
    Sep 13 18:09:17: --- last message repeated 1 time ---
    Sep 13 18:09:17 localhost configd[15]: network configuration changed.
    Sep 13 18:09:17 eric-lawrences-MBP-2 configd[15]: setting hostname to "eric-lawrences-MBP-2.local"
    Sep 13 18:09:17 eric-lawrences-MBP-2 bootlog[60]: BOOT_TIME: 1252829340 0
    Sep 13 18:09:18 eric-lawrences-MBP-2 fseventsd[54]: could not open <</Volumes/ERICGLPC/.fseventsd/fseventsd-uuid>> (No such file or directory)
    Sep 13 18:09:18 eric-lawrences-MBP-2 fseventsd[54]: log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: 493B2D00-47B9-4820-96FB-EF447F07CCDA
    Sep 13 18:09:20 eric-lawrences-MBP-2 com.apple.usbmuxd[44]: usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    Sep 13 18:09:20 eric-lawrences-MBP-2 sudo[78]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 13 18:09:21 eric-lawrences-MBP-2 blued[61]: Apple Bluetooth daemon started
    Sep 13 18:09:21 eric-lawrences-MBP-2 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[50]: Login Window Application Started
    Sep 13 18:09:24 eric-lawrences-MBP-2 loginwindow[50]: Login Window Started Security Agent
    Sep 13 18:09:25 eric-lawrences-MBP-2 iStatLocalDaemon[66]: Waiting for connections on port 5204.
    Sep 13 18:09:27 eric-lawrences-MBP-2 mDNSResponder[17]: SIGHUP: Purge cache
    Sep 13 18:09:31 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 13 18:11:00 eric-lawrences-MBP-2 loginwindow[50]: Login Window - Returned from Security Agent
    Sep 13 18:11:00 eric-lawrences-MBP-2 loginwindow[50]: USER_PROCESS: 50 console
    Sep 13 18:11:01 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[121] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Sep 13 18:11:10 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[121] (com.apple.Kerberos.renew.plist[137]): Exited with exit code: 1
    Sep 13 18:11:11 eric-lawrences-MBP-2 ServerScanner[134]: Not scanning because node /Active Directory/All Domains is in searchPath
    Sep 13 18:11:27 eric-lawrences-MBP-2 com.apple.WindowServer[85]: Sun Sep 13 18:11:27 eric-lawrences-MBP-2.local WindowServer[85] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Sep 13 18:11:27 eric-lawrences-MBP-2 WindowServer[85]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Sep 13 18:11:29 eric-lawrences-MBP-2 SystemUIServer[126]: MenuCracker 2.0 (/Library/Application Support/iStat local/extras/MenuCracker.menu)\n See http://sourceforge.net/projects/menucracker\n MenuCracker is now loaded. Ready to accept new menu extras. Ignore the failure message that follows.
    Sep 13 18:11:29 eric-lawrences-MBP-2 SystemUIServer[126]: failed to instantiate and get the principal class of bundle: NSBundle </Library/Application Support/iStat local/extras/MenuCracker.menu> (loaded)
    Sep 13 18:11:29 eric-lawrences-MBP-2 SystemUIServer[126]: MenuCracker: Allowing "iStatMenusDateAndTimes".
    Sep 13 18:11:36 eric-lawrences-MBP-2 SystemUIServer[126]: MenuCracker: Allowing "iStatMenusNetwork".
    secure.log
    Sep 13 18:09:08 localhost com.apple.SecurityServer[23]: Session 0x5fbff962 created
    Sep 13 18:09:09 localhost com.apple.SecurityServer[23]: Entering service
    Sep 13 18:09:17 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'config.modify.com.apple.CoreRAID.admin' by client '/System/Library/PrivateFrameworks/CoreRAID.framework/Versions/A/Resources/Core RAIDServer' for authorization created by '/System/Library/PrivateFrameworks/CoreRAID.framework/Versions/A/Resources/Core RAIDServer'
    Sep 13 18:09:24 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Session 0x236025 created
    Sep 13 18:09:24 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Session 0x236025 attributes 0x30
    Sep 13 18:09:24 eric-lawrences-MBP-2 loginwindow[50]: Login Window Started Security Agent
    Sep 13 18:09:25 eric-lawrences-MBP-2 SecurityAgent[103]: User info context values set for ericgl
    Sep 13 18:09:26 eric-lawrences-MBP-2 SecurityAgent[103]: Login Window login proceeding
    Sep 13 18:11:00 eric-lawrences-MBP-2 SecurityAgent[103]: Login Window done
    Sep 13 18:11:00 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'system.login.console' by client '/System/Library/CoreServices/loginwindow.app' for authorization created by '/System/Library/CoreServices/loginwindow.app'
    Sep 13 18:11:00 eric-lawrences-MBP-2 loginwindow[50]: Login Window - Returned from Security Agent
    Sep 13 18:11:01 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'system.login.done' by client '/System/Library/CoreServices/loginwindow.app' for authorization created by '/System/Library/CoreServices/loginwindow.app'
    Sep 13 18:11:09 eric-lawrences-MBP-2 /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[145]: Starting up.
    Sep 13 18:11:14 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'system.print.admin' by client '/System/Library/Printers/Libraries/makequeuesagent' for authorization created by '/System/Library/Printers/Libraries/makequeuesagent'
    Sep 13 18:11:44: --- last message repeated 1 time ---
    all messages
    13/09/09 6:09:07 PM kernel npvhash=4095
    13/09/09 6:09:07 PM kernel PAE enabled
    13/09/09 6:09:07 PM kernel 64 bit mode enabled
    13/09/09 6:09:07 PM kernel Darwin Kernel Version 10.0.0: Fri Jul 31 22:47:34 PDT 2009; root:xnu-1456.1.25~1/RELEASE_I386
    13/09/09 6:09:07 PM kernel vmpagebootstrap: 508922 free pages and 15366 wired pages
    13/09/09 6:09:07 PM kernel standard timeslicing quantum is 10000 us
    13/09/09 6:09:07 PM kernel migtable_maxdispl = 73
    13/09/09 6:09:07 PM kernel AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    13/09/09 6:09:07 PM kernel AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    13/09/09 6:09:07 PM kernel calling mpopolicyinit for TMSafetyNet
    13/09/09 6:09:07 PM kernel Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    13/09/09 6:09:07 PM kernel calling mpopolicyinit for Quarantine
    13/09/09 6:09:07 PM kernel Security policy loaded: Quarantine policy (Quarantine)
    13/09/09 6:09:07 PM kernel calling mpopolicyinit for Sandbox
    13/09/09 6:09:07 PM kernel Security policy loaded: Seatbelt sandbox policy (Sandbox)
    13/09/09 6:09:07 PM kernel Copyright (c) 1982, 1986, 1989, 1991, 1993
    13/09/09 6:09:07 PM kernel The Regents of the University of California. All rights reserved.
    13/09/09 6:09:07 PM kernel MAC Framework successfully initialized
    13/09/09 6:09:07 PM kernel using 10485 buffer headers and 4096 cluster IO buffer headers
    13/09/09 6:09:07 PM kernel IOAPIC: Version 0x20 Vectors 64:87
    13/09/09 6:09:07 PM kernel ACPI: System State [S0 S3 S4 S5] (S3)
    13/09/09 6:09:07 PM kernel mbinit: done (64 MB memory set for mbuf pool)
    13/09/09 6:09:07 PM kernel rooting via boot-uuid from /chosen: DA111E02-C1F5-3C6F-AB90-AD27A5B932BE
    13/09/09 6:09:07 PM kernel Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    13/09/09 6:09:07 PM kernel com.apple.AppleFSCompressionTypeZlib load succeeded
    13/09/09 6:09:07 PM kernel AppleIntelCPUPowerManagementClient: ready
    13/09/09 6:09:07 PM kernel FireWire (OHCI) TI ID 8025 built-in now active, GUID 0017f2fffe7f970e; max speed s800.
    13/09/09 6:09:07 PM kernel Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT2 @2/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/FUJITSU MHW2120BH Media/IOGUIDPartitionScheme/Merged_Untitled@2
    13/09/09 6:09:07 PM kernel BSD root: disk0s2, major 14, minor 2
    13/09/09 6:09:07 PM kernel USBMSC Identifier (non-unique): MY66AB92R404J7 0x3f0 0x5711 0x100
    13/09/09 6:09:07 PM kernel USBMSC Identifier (non-unique): 01974248FFFF 0x59f 0x951 0x0
    13/09/09 6:09:07 PM kernel [Bluetooth::CSRHIDTransition] switchToHCIMode (legacy)
    13/09/09 6:09:07 PM kernel [Bluetooth::CSRHIDTransition] transition complete.
    13/09/09 6:09:07 PM kernel CSRUSBBluetoothHCIController::setupHardware super returned 0
    13/09/09 6:09:07 PM kernel AppleIntelCPUPowerManagement: initialization complete
    13/09/09 6:09:07 PM kernel AppleYukon2: Marvell Yukon Gigabit Adapter 88E8053 Singleport Copper SA
    13/09/09 6:09:07 PM kernel AppleYukon2: RxRingSize <= 1024, TxRingSize 256, RXMAXLE 1024, TXMAXLE 768, STMAXLE 3328
    13/09/09 6:09:01 PM com.apple.launchd[1] * launchd[1] has started up. *
    13/09/09 6:09:08 PM kernel yukon: Ethernet address 00:16:cb:a1:8f:b7
    13/09/09 6:09:08 PM kernel systemShutdown false
    13/09/09 6:09:08 PM mDNSResponder[17] mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    13/09/09 6:09:08 PM com.apple.SecurityServer[23] Session 0x5fbff962 created
    13/09/09 6:09:09 PM com.apple.SecurityServer[23] Entering service
    13/09/09 6:09:10 PM kernel Previous Shutdown Cause: 5
    13/09/09 6:09:10 PM kernel DSMOS has arrived
    13/09/09 6:09:10 PM kernel Atheros: mac 12.2 phy 8.1 radio 12.0
    13/09/09 6:09:17 PM configd[15] network configuration changed.
    13/09/09 6:09:17 PM configd[15] setting hostname to "eric-lawrences-MBP-2.local"
    13/09/09 6:09:17 PM kernel AirPort_AthrFusion: Ethernet address 00:17:f2:e6:a8:d1
    13/09/09 6:09:17 PM kernel IO80211Controller::dataLinkLayerAttachComplete(): adding AppleEFINVRAM notification
    13/09/09 6:09:17 PM bootlog[60] BOOT_TIME: 1252829340 0
    13/09/09 6:09:18 PM fseventsd[54] could not open <</Volumes/ERICGLPC/.fseventsd/fseventsd-uuid>> (No such file or directory)
    13/09/09 6:09:18 PM fseventsd[54] log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: 493B2D00-47B9-4820-96FB-EF447F07CCDA
    13/09/09 6:09:19 PM kernel AirPort: Link Down on en1. Reason 1 (Unspecified).
    13/09/09 6:09:19 PM kernel AirPort: Link Up on en1
    13/09/09 6:09:20 PM kernel AirPort: RSN handshake complete on en1
    13/09/09 6:09:20 PM com.apple.usbmuxd[44] usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    13/09/09 6:09:20 PM sudo[78] root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    13/09/09 6:09:21 PM blued[61] Apple Bluetooth daemon started
    13/09/09 6:09:21 PM /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[50] Login Window Application Started
    13/09/09 6:09:22 PM kernel Warning - com.apple.driver.InternalModemSupport declares no kernel dependencies; using com.apple.kernel.6.0.
    13/09/09 6:09:23 PM kernel IOBluetoothBNEPDriver: Ethernet address 00:17:f2:9f:b7:a5
    13/09/09 6:09:24 PM com.apple.SecurityServer[23] Session 0x236025 created
    13/09/09 6:09:24 PM com.apple.SecurityServer[23] Session 0x236025 attributes 0x30
    13/09/09 6:09:24 PM loginwindow[50] Login Window Started Security Agent
    13/09/09 6:09:25 PM Firewall[100] krb5kdc is listening from :::88 proto=6
    13/09/09 6:09:25 PM Firewall[100] krb5kdc is listening from 0.0.0.0:88 proto=6
    13/09/09 6:09:25 PM Firewall[100] iStatLocalDaemon is listening from 0.0.0.0:5204 proto=6
    13/09/09 6:09:25 PM Firewall[100] iStatLocalDaemon is listening from ::ffff:0.0.0.0:5204 proto=6
    13/09/09 6:09:25 PM SecurityAgent[103] User info context values set for ericgl
    13/09/09 6:09:26 PM SecurityAgent[103] Login Window login proceeding
    13/09/09 6:09:27 PM mDNSResponder[17] SIGHUP: Purge cache
    13/09/09 6:09:31 PM Firewall[100] krb5kdc is listening from :::88 proto=6
    13/09/09 6:09:31 PM Firewall[100] krb5kdc is listening from 0.0.0.0:88 proto=6
    13/09/09 6:09:31 PM configd[15] network configuration changed.
    13/09/09 6:09:35 PM Firewall[100] krb5kdc is listening from :::88 proto=6
    13/09/09 6:09:35 PM Firewall[100] krb5kdc is listening from 0.0.0.0:88 proto=6
    13/09/09 6:11:00 PM SecurityAgent[103] Login Window done
    13/09/09 6:11:00 PM loginwindow[50] Login Window - Returned from Security Agent
    13/09/09 6:11:00 PM loginwindow[50] USER_PROCESS: 50 console
    13/09/09 6:11:01 PM com.apple.launchd.peruser.501[121] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    13/09/09 6:11:10 PM com.apple.launchd.peruser.501[121] (com.apple.Kerberos.renew.plist[137]) Exited with exit code: 1
    13/09/09 6:11:11 PM ServerScanner[134] Not scanning because node /Active Directory/All Domains is in searchPath
    13/09/09 6:11:27 PM com.apple.WindowServer[85] Sun Sep 13 18:11:27 eric-lawrences-MBP-2.local WindowServer[85] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13/09/09 6:11:27 PM WindowServer[85] kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13/09/09 6:11:29 PM SystemUIServer[126] MenuCracker 2.0 (/Library/Application Support/iStat local/extras/MenuCracker.menu)
    See http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menu extras. Ignore the failure message that follows.
    13/09/09 6:11:29 PM SystemUIServer[126] failed to instantiate and get the principal class of bundle: NSBundle </Library/Application Support/iStat local/extras/MenuCracker.menu> (loaded)
    13/09/09 6:11:29 PM SystemUIServer[126] MenuCracker: Allowing "iStatMenusDateAndTimes".
    13/09/09 6:11:36 PM SystemUIServer[126] MenuCracker: Allowing "iStatMenusNetwork".
    failed reboot from windows - note date and time wrong
    Sep 13 19:00:10 eric-lawrences-MBP-2 sudo[200]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 13 19:00:10 eric-lawrences-MBP-2 WindowServer[85]: bootstraplookip failed: Unknown service name
    Sep 14 05:26:46 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 14 05:26:53 localhost mDNSResponder[18]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Sep 14 05:26:54 localhost pcscd[28]: Non-smartcard device launched pcscd [Vendor: 0X3F0, Product: 0X5711]
    Sep 14 05:27:02: --- last message repeated 1 time ---
    Sep 14 05:27:02 localhost configd[14]: network configuration changed.
    Sep 14 05:27:02 eric-lawrences-MBP-2 configd[14]: setting hostname to "eric-lawrences-MBP-2.local"
    Sep 14 05:27:02 eric-lawrences-MBP-2 bootlog[62]: BOOT_TIME: 1252870005 0
    Sep 14 05:27:03 eric-lawrences-MBP-2 fseventsd[56]: checkvol_last_modtime:XXX failed to get mount time (25; &mount_time == 0x1000b5358)
    Sep 14 05:27:03 eric-lawrences-MBP-2 fseventsd[56]: log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: 1C45E673-8EEA-4ACF-B0F2-BAE1FB843D2B
    Sep 14 05:27:05 eric-lawrences-MBP-2 com.apple.usbmuxd[46]: usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    Sep 14 05:27:05 eric-lawrences-MBP-2 sudo[82]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 14 05:27:06 eric-lawrences-MBP-2 blued[63]: Apple Bluetooth daemon started
    Sep 14 05:27:06 eric-lawrences-MBP-2 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[52]: Login Window Application Started
    Sep 14 05:27:11 eric-lawrences-MBP-2 iStatLocalDaemon[68]: Waiting for connections on port 5204.
    Sep 14 05:27:11 eric-lawrences-MBP-2 configd[14]: network configuration changed.
    Sep 14 05:27:12 eric-lawrences-MBP-2 mDNSResponder[18]: SIGHUP: Purge cache
    Sep 14 05:27:12 eric-lawrences-MBP-2 loginwindow[52]: Login Window Started Security Agent
    Sep 13 19:33:18 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 13 19:33:25 localhost DirectoryService[11]: Improper shutdown detected
    Sep 13 19:33:39 localhost mDNSResponder[17]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    fast reboot from boot camp icon in Windows - note date and time wrong
    Sep 14 05:46:42 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 14 05:46:53 localhost mDNSResponder[18]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Sep 14 05:46:53 localhost pcscd[31]: Non-smartcard device launched pcscd [Vendor: 0X3F0, Product: 0X5711]
    Sep 14 05:46:54: --- last message repeated 1 time ---
    Sep 14 05:46:54 localhost configd[15]: network configuration changed.
    Sep 14 05:46:54 eric-lawrences-MBP-2 configd[15]: setting hostname to "eric-lawrences-MBP-2.local"
    Sep 14 05:46:56 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 14 05:46:57 eric-lawrences-MBP-2 bootlog[65]: BOOT_TIME: 1252871201 0
    Sep 14 05:46:58 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 14 05:47:01 eric-lawrences-MBP-2 fseventsd[59]: could not open <</Volumes/ERICGLPC/.fseventsd/fseventsd-uuid>> (No such file or directory)
    Sep 14 05:47:01 eric-lawrences-MBP-2 fseventsd[59]: log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: CA5F549C-7E51-4D0B-BEB6-7B91A7544AE2
    Sep 14 05:47:01 eric-lawrences-MBP-2 sudo[82]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 14 05:47:03 eric-lawrences-MBP-2 com.apple.usbmuxd[49]: usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    Sep 14 05:47:03 eric-lawrences-MBP-2 blued[66]: Apple Bluetooth daemon started
    Sep 14 05:47:04 eric-lawrences-MBP-2 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[55]: Login Window Application Started
    Sep 14 05:47:09 eric-lawrences-MBP-2 iStatLocalDaemon[71]: Waiting for connections on port 5204.
    Sep 14 05:47:09 eric-lawrences-MBP-2 mDNSResponder[18]: SIGHUP: Purge cache
    Sep 14 05:47:10 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 14 05:47:10 eric-lawrences-MBP-2 loginwindow[55]: Login Window Started Security Agent
    Sep 14 05:47:11 eric-lawrences-MBP-2 loginwindow[55]: Login Window - Returned from Security Agent
    Sep 14 05:47:11 eric-lawrences-MBP-2 loginwindow[55]: USER_PROCESS: 55 console
    Sep 14 05:47:11 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[109] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Sep 13 19:47:17 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[109] (com.apple.AddressBook.abd): The following job tried to hijack the service "com.apple.AddressBook.abd" from this job: [0x0-0x5005].com.apple.AddressBook.abd
    Sep 13 19:47:24 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[109] (com.apple.Kerberos.renew.plist[131]): Exited with exit code: 1
    Sep 13 19:47:24 eric-lawrences-MBP-2 ServerScanner[128]: Not scanning because node /Active Directory/All Domains is in searchPath
    Sep 13 19:47:38 eric-lawrences-MBP-2 SystemUIServer[114]: MenuCracker 2.0 (/Library/Application Support/iStat local/extras/MenuCracker.menu)\n See http://sourceforge.net/projects/menucracker\n MenuCracker is now loaded. Ready to accept new menu extras. Ignore the failure message that follows.
    Sep 13 19:47:38 eric-lawrences-MBP-2 SystemUIServer[114]: failed to instantiate and get the principal class of bundle: NSBundle </Library/Application Support/iStat local/extras/MenuCracker.menu> (loaded)
    Sep 13 19:48:03 eric-lawrences-MBP-2 WindowServer[85]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Sep 13 19:48:03 eric-lawrences-MBP-2 com.apple.WindowServer[85]: Sun Sep 13 19:48:03 eric-lawrences-MBP-2.local WindowServer[85] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.

    Hi guys
    Thanks for your contributions. I have made little progress on this issue since posting.
    Just as added info, I did a re-install of Snow leopard from install DVD and upgrade again to 10.6.1 and no change to the startup behaviours. Same pattern as before, although the first restart was fast and probably how it is meant to be, then the slow ones reappeared.
    I also had a thought that somehow it may be related to the nominated startup disk. There were posts on other boards about similar issues with Leopard where the hanging start was found to be related to the computer not knowing which startup disk to use. I thought maybe as it works when using the boot camp icon from Windows but not the restart button, it may be related, but in OSX and Windows both are set to startup in OSX on HD. So no further joy.
    Maybe someone else will come along who can understand the Console logs. Why does the loginwindow and Security Agent take so long?
    Do you guys have any clues from your Console system logs? Does yours hang on loginwindow?
    The fact that there are so few people with the same problem suggests to me that there is a third party device/preference/ hidden file somewhere that is having an effect and it's not an Apple issue.
    I am getting close to wiping the hard drive and starting again....but live in hope.
    Cheers

  • Paint performance with JScrollPane very slow in jdk 1.4?

    I got a simple program that overrides paintComponent on a JPanel. Then draws lots of lines, rectangles and some strings. The panel is then added to a scrollpane.
    The scrolling is very smooth in java 1.3.1, but very slow in 1.4.2
    the paintComponent takes between 16ms and 30ms with java 1.3.1 but 70-200ms with java 1.4.2.
    I tried turning of antialising etc.. but no help. Whats the "improvement" they made in jdk 1.4?

    Ok I made a simple example, which draws around 5000 elements.
    Sourcecode is here: http://www.mcmadsen.dk/files/ScrollPaneTest.java
    I did several testruns on java 1.4.2 and java 1.3.1, heres the "avarage" result:
    Java 1.4.2:
         Current: 140ms High: 203ms Avg: 144ms Low: 125ms
    Java 1.3.1:
         Current: 62ms High: 219ms Avg: 68ms Low: 47ms
    The paintComponent() looks like this:
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    long offset=System.currentTimeMillis();
    PaintElement paintElementTmp;
    for(int i=0;i<paintElements.size();i++)
    paintElementTmp=(PaintElement)paintElements.elementAt(i);
    g.setColor(paintElementTmp.getBackground());
    g.fillRect(paintElementTmp.getX(),paintElementTmp.getY(),paintElementTmp.getWidth(),paintElementTmp.getHeight());
    g.setColor(paintElementTmp.getForeground());
    g.drawString(paintElementTmp.getText(),paintElementTmp.getX(),paintElementTmp.getY());
    long done=System.currentTimeMillis();
    long current=done-offset;
    sum+=current;
    if(current>high)high=current;
    if(low>current)low=current;
    count++;
    System.out.println("Current: "+current+"ms High: "+high+"ms Avg: "+(sum/count)+"ms Low: "+low+"ms");
    I tried all the renderinghints, but no difference (from the default settings). Also the scrolling is very slow and stops all the time in java 1.4.
    Any ideas on how to get java 1.4 to perform as java 1.3.1?
    Thanks

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

  • IPAD2 very slow after IOS 8 upgrade

    After IOS 8 upgrade many aplications ( Safari, Facebook, etc) load  very, very slow (comparing with 7 version) , with a significant delay of more than 10 seconds...
    Who can I solve this problem? Any workaround?
    PD
    Apple should better test the software before delivering.
    Thanks.

    Here's the list of the most annoying issues that affect me since updating my iPad 2 64GB w/Cellular iPad to IOS 8:
    EXTREMELY SLOW - When opening apps, or switching between them - We are talking just the built-in apps. Mail, Safari, Settings....
    Extremely slow Wi-Fi AND broadband. The Wi-Fi is the worst though. Horrible. Page load times are 2 to 4x slower than my wife's iPad.
    Battery life reduced by at least 25%. Used to make it all day long, now I am having to plug it in.
    Heat - It is working so hard that the processor is heating up. That can't be healthy for it, and surely the majority of the power issues stem from this.
    Copy/Paste not functioning correctly between browser windows. Oh this is frustrating. I just want to paste the URL of one website I am on to Facebook, for instance. Even though I COPY, it's pasting in info I clipped a earlier in the day to one browser tab, but if I open another one, it will paste the correct information. You never know what you are going to get.
    Cannot post a photo to facebook by hitting the camera icon when leaving a reply or making a post (using web browser version)... It starts the upload, then just stops. I *CAN* go to photos, then SHARE it to facebook, but that doesn't allow me to post a photo along with a reply.
    Multiple app crashes per day. This I can deal with. It's nothing new, it's just more frequent. Safari and Mail seem to be the major culprits. It wouldn't be so bad except it takes 2-4 seconds to reopen the crashed app. Sometimes as much as 10 seconds.
    And that's just the annoying ones....

Maybe you are looking for

  • I have a problem to  extract data from oracle dump file (.dmp) using oracle database or any other tools.

    There is IMP utility which provides me data as graphical way. But i need extract data in such a way so that i could able to use in my application. thanks, mohan

  • Delete photos in iphoto via automator

    I've been looking for days for a way to delete photos that are in iphoto via automator. I'm working on a script that will import pictures from a server to iphoto album, then play the slideshow of the album on our HDTV setup... It's all working except

  • Want to implement CFM in BI 7

    Hi Experts, I want to implement CFM Module in BI 7. Can anyone tell me what standard reports are provided by SAP and i need some document where i can find what all sub modules are to be implemented under CFM. Thanks in adv. Bhavna.

  • Time between dates excluding Weekends and Holidays

    I am fairly new to Power Pivot and I am having trouble with this formula.  I need my Cycle Time Days column to capture the days between CreatedDataTime and ClosedDateTime excluding Weekends and Holidays.  I have a tab that has the holidays but I can'

  • Can anyone explain why

    Can anyone explain why when I signed up to BT broadband some 4 years ago the estimated line speed I would get was estimated at 3.5Mbps (I was actually getting between 1 and 2 and every so often 2.5). Recently I've noticed a drop in speed, last week t