What would cause my imac to run slow

Loading apps like Mail and Safari appear to take a few seconds longer than normal.
Also there is a significant delay when opening e-mails.

Disregard the recommendation to leave 10% free drive space. Disregard any recommendation that suggests leaving free any percentage. OSX needs ~10GB free, plus you need to leave adequate room for expansion of your files. Only you can know how much is necessary. Right now, if you have at least around 15-20GB free, then drive space is not an issue.
The suggestion to repair Disk Permissions is also useless. If you're running Lion or above, then disregard the suggestion to clear out your Desktop.
Open Activity Monitor in Utilties and post a screenshot like the one below of the bottom only of the System Memory tab.
Open up Disk Utility in Utilities and select the drive to see if SMART status is verified or not.
Also in Activity Monitor, switch to the CPU tab>All Process to see if anything is using an inordinate amount of CPU. Also, see if something is using an inordinate amount of Real Memory.

Similar Messages

  • What would cause my iMac to be slow to start up?

    My iMac (intel) has become very slow to start up. Sometimes I have to shut down and try the start up a second time before it will complete the start up.

    Hi..
    Not enough free space on the startup disk can cause your iMac to slow down over time.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure there's a minimum of 15% free disk space.
    iMac, Mac OS X (10.5.4)
    Remove any items in System Preferences > Accounts > Login Items
    Same for     /Library/StartupItems

  • What would cause Safari to stop running Adobe Flashplayer?

    What would cause Safari to stop running Adobe Flashplayer? It's on my computer. It works with other browsers. Most websites don't complain. When I ask them to show me stuff, however,  it comes out looking like a math problem written in Turkish or Romanian.
    What about pdf files? Same thing.

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Security
    and check the box marked Allow other plug-ins.

  • What would cause an IMAC to recognize one printer on a wireless network and not recognize another printer?

    What would cause an IMAC to recognize one printer on a wireless network and not another printer?  I have a smaller HP and a an HP 4600.  The computer recognizes the smaller printer but not the bigger printer even though the printer in Settings and shows up on Settings, but I cannot print to it. 

    Do you have a printer driver installed for it? When you open the Print dialog have you selected it from the Printer dropdown menu at the top of the dialog?
    Do you know that the printer is working and is properly installed (Added?)

  • What would cause my iMac's desktop resolution to briefly readjust whenever I switch from my user to another?

    I recently started to notice that whenever I switch from one user account to another on my recently purchased iMac, the resolution of my desktop wallpaper very briefly readjusts.  Both users have the same default resolution and are using wallpaper that came standard with Mavericks.  Does anyone have any suggestions as to what could be causing this?
    Thanks!

    Hello there, Conor68.
    The following Knowledge Base article provides some great recommendations for troubleshooting display issues on your Mac:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    Once you're reviewed the recommendations in regards to updates, this portion of the section on "No video or no signal, image distortion, "snow," or flickering" is useful:
    Reset the system
    You can reset the Mac's parameter RAM and SMC.
    Reset the resolution
    Start by resetting the Mac's parameter RAM. If the display does not come up, was previously set to an unsupported resolution, and still results in no video:
    Start up in Safe Mode.
    From the Apple () menu, choose System Preferences.
    Choose Displays from the View menu to open the preferences pane.
    Select any resolution and refresh rate that your display supports.
    Restart your computer.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Parallel hint causes a query to run slower?

    I have an insert...select query where the select is a join between a table with one billion rows (although there is a where clause on an indexed column that restricts it to "only" 300 million), a table with 30 million rows, and a table with about 100,000 rows, where the result is about 20 rows. When I first ran it, it took about 2 hours. I added a Parallel hint, and explain plan showed that it was being used (and v$session showed that I had about 30 additional connections while it ran). but not it takes four hours.
    Is there a reason parallel processing would cause a query to run slower?
    insert /*+ append */ into employees_by_age_group
      pay_plan
    , age_range
    , pay_level
    , fy
    , employee_count
    select /*+ parallel */
           emp.pay_plan
         , to_char(d.min_age) || '-' || to_char(d.max_age) as age_range
         , emp.pay_level
         , pay.fy
         , count(pay.employee_id) as employee_count
    from
      select /*+ index(pay_info pay_info_index_on_site) */
             employee_id
           , extract(year from (dte_ppe_end + 92)) as fy
           , count(employee_id) as num_recs
      from pay_info
      where extract(month from dte_ppe_end) = 10
      and   extract(day from dte_ppe_end) between 14 and 27
      and   substr(pay_type, 1, 1) IN ('A', 'B', 'C')
      and   site like 'Z%'
      group by employee_id, extract(year from (dte_ppe_end + 92))
    ) pay
    join
      select employee_id
           , pay_plan
           , pay_grade
           , pay_step
           , file_date
      from
        select /*+ index(employee_info employee_info_index_on_site) */
               employee_id
             , pay_level
             , file_date
             , max(file_date)
               over (partition by extract(year from (file_date + 61)))
               as last_file_date
        from employee_info
        where site like 'Z%'
      where file_date = last_file_date
    ) emp
    on (
         emp.employee_id = pay.employee_id
         and extract(year from emp.file_date) = pay.fy - 1
    join (
           select employee_id
                , dob
           from (
                  select employee_id
                       , date_birth
                       , row_number() over (partition by employee_id order by date_file desc) as r
                  from employee_birthdates
                  where site like 'Z%'
           where r = 1
         ) dob
    on dob.employee_id = pay.employee_id
    join
                select 20 as min_age, 24 as max_age from dual
      union all select 25 as min_age, 29 as max_age from dual
      union all select 30 as min_age, 34 as max_age from dual
      union all select 35 as min_age, 39 as max_age from dual
      union all select 40 as min_age, 44 as max_age from dual
      union all select 45 as min_age, 49 as max_age from dual
      union all select 50 as min_age, 54 as max_age from dual
      union all select 55 as min_age, 59 as max_age from dual
      union all select 60 as min_age, 64 as max_age from dual
      union all select 65 as min_age, 69 as max_age from dual
      union all select 70 as min_age, 74 as max_age from dual
      union all select 75 as min_age, 79 as max_age from dual
      union all select 80 as min_age, 84 as max_age from dual
      union all select 85 as min_age, 89 as max_age from dual
      union all select 90 as min_age, 94 as max_age from dual
      union all select 95 as min_age, 99 as max_age from dual
    ) d
    group by emp.pay_plan, d.min_age, d.max_age, emp.pay_level, pay.fy;

    Paul - here are three different explain plans
    First, the original one (without the parallel hint):
    INSERT STATEMENT  ALL_ROWS                                              Cost: 26,684,255  Bytes: 114  Cardinality: 1                     
      35 LOAD AS SELECT EMPLOYEES_BY_AGE_GROUP                  
        34 HASH GROUP BY                                                    Cost: 26,684,255  Bytes: 114  Cardinality: 1                 
          33 NESTED LOOPS                                                   Cost: 26,684,254  Bytes: 114  Cardinality: 1               
            14 HASH JOIN                                                    Cost: 26,684,222  Bytes: 108  Cardinality: 1             
              9 MERGE JOIN                                                  Cost: 4,408,803  Bytes: 8,322  Cardinality: 146           
                3 VIEW DONBOT_DBA.                                          Cost: 114,863  Bytes: 29,625,180  Cardinality: 987,506         
                  2 WINDOW SORT PUSHED RANK                                 Cost: 114,863  Bytes: 35,550,216  Cardinality: 987,506       
                    1 TABLE ACCESS FULL TABLE EMPLOYEE_BIRTHDATES           Cost: 108,983  Bytes: 35,550,216  Cardinality: 987,506     
                8 SORT JOIN                                                 Cost: 4,293,940  Bytes: 3,645  Cardinality: 135         
                  7 VIEW DONBOT_DBA.                                        Cost: 4,293,939  Bytes: 3,645  Cardinality: 135       
                    6 SORT GROUP BY                                         Cost: 4,293,939  Bytes: 4,185  Cardinality: 135     
                      5 TABLE ACCESS BY INDEX ROWID TABLE PAY_INFO          Cost: 4,293,938  Bytes: 4,185  Cardinality: 135   
                        4 INDEX RANGE SCAN INDEX PAY_INFO_INDEX_ON_SITE     Cost: 487,124  Cardinality: 402,683,034 
              13 VIEW DONBOT_DBA                                            Cost: 22,275,300  Bytes: 1,160,143,257  Cardinality: 22,747,907           
                12 WINDOW SORT                                              Cost: 22,275,300  Bytes: 841,672,559  Cardinality: 22,747,907         
                  11 TABLE ACCESS BY INDEX ROWID TABLE EMPLOYEE_INFO        Cost: 22,137,046  Bytes: 841,672,559  Cardinality: 22,747,907       
                    10 INDEX RANGE SCAN INDEX EMPLOYEE_INFO_INDEX_ON_SITE   Cost: 50,419  Cardinality: 38,019,281     
            32 VIEW DONBOT_DBA
              31 UNION-ALL           
                15 FAST DUAL  Cost: 2  Cardinality: 1         
                16 FAST DUAL  Cost: 2  Cardinality: 1         
                17 FAST DUAL  Cost: 2  Cardinality: 1         
                18 FAST DUAL  Cost: 2  Cardinality: 1         
                19 FAST DUAL  Cost: 2  Cardinality: 1         
                20 FAST DUAL  Cost: 2  Cardinality: 1         
                21 FAST DUAL  Cost: 2  Cardinality: 1         
                22 FAST DUAL  Cost: 2  Cardinality: 1         
                23 FAST DUAL  Cost: 2  Cardinality: 1         
                24 FAST DUAL  Cost: 2  Cardinality: 1         
                25 FAST DUAL  Cost: 2  Cardinality: 1         
                26 FAST DUAL  Cost: 2  Cardinality: 1         
                27 FAST DUAL  Cost: 2  Cardinality: 1         
                28 FAST DUAL  Cost: 2  Cardinality: 1         
                29 FAST DUAL  Cost: 2  Cardinality: 1         
                30 FAST DUAL  Cost: 2  Cardinality: 1          Next, one with the parallel hint:
    INSERT STATEMENT  ALL_ROWS                                                                              Cost: 26,507,111  Bytes: 114  Cardinality: 1                                       
      51 LOAD AS SELECT EMPLOYEES_BY_AGE_GROUP
        50 PX COORDINATOR                                          
          49 PX SEND QC (RANDOM) PARALLEL_TO_SERIAL SYS.:TQ10005 :Q1005                                     Cost: 26,507,111  Bytes: 114  Cardinality: 1                                 
            48 HASH GROUP BY PARALLEL_COMBINED_WITH_PARENT :Q1005                                           Cost: 26,507,111  Bytes: 114  Cardinality: 1                               
              47 PX RECEIVE PARALLEL_COMBINED_WITH_PARENT :Q1005                                            Cost: 26,507,111  Bytes: 114  Cardinality: 1                             
                46 PX SEND HASH PARALLEL_TO_PARALLEL SYS.:TQ10004 :Q1004                                    Cost: 26,507,111  Bytes: 114  Cardinality: 1                           
                  45 HASH GROUP BY PARALLEL_COMBINED_WITH_PARENT :Q1004                                     Cost: 26,507,111  Bytes: 114  Cardinality: 1                         
                    44 NESTED LOOPS PARALLEL_COMBINED_WITH_PARENT :Q1004                                    Cost: 26,507,111  Bytes: 114  Cardinality: 1                       
                      25 HASH JOIN PARALLEL_COMBINED_WITH_PARENT :Q1004                                     Cost: 26,507,109  Bytes: 108  Cardinality: 1                     
                        17 PX RECEIVE PARALLEL_COMBINED_WITH_PARENT :Q1004                                  Cost: 4,301,500  Bytes: 4,104  Cardinality: 72                   
                          16 PX SEND HASH PARALLEL_TO_PARALLEL SYS.:TQ10003 :Q1003                          Cost: 4,301,500  Bytes: 4,104  Cardinality: 72                 
                            15 HASH JOIN PARALLEL_COMBINED_WITH_PARENT :Q1003                               Cost: 4,301,500  Bytes: 4,104  Cardinality: 72               
                              7 BUFFER SORT PARALLEL_COMBINED_WITH_CHILD :Q1003           
                                6 PX RECEIVE PARALLEL_COMBINED_WITH_PARENT :Q1003                           Cost: 4,293,939  Bytes: 1,809  Cardinality: 67           
                                  5 PX SEND BROADCAST PARALLEL_FROM_SERIAL SYS.:TQ10000                     Cost: 4,293,939  Bytes: 1,809  Cardinality: 67         
                                    4 VIEW DONBOT_DBA.                                                      Cost: 4,293,939  Bytes: 1,809  Cardinality: 67       
                                      3 SORT GROUP BY                                                       Cost: 4,293,939  Bytes: 2,077  Cardinality: 67     
                                        2 TABLE ACCESS BY INDEX ROWID TABLE PAY_INFO                        Cost: 4,293,938  Bytes: 2,077  Cardinality: 67   
                                          1 INDEX RANGE SCAN INDEX PAY_INFO_INDEX_ON_SITE                   Cost: 487,124  Cardinality: 199,756,151 
                              14 VIEW PARALLEL_COMBINED_WITH_PARENT DONBOT_DBA. :Q1003                      Cost: 7,561  Bytes: 29,625,180  Cardinality: 987,506             
                                13 WINDOW SORT PUSHED RANK PARALLEL_COMBINED_WITH_PARENT :Q1003             Cost: 7,561  Bytes: 35,550,216  Cardinality: 987,506           
                                  12 PX RECEIVE PARALLEL_COMBINED_WITH_PARENT :Q1003                        Cost: 7,561  Bytes: 35,550,216  Cardinality: 987,506         
                                    11 PX SEND HASH PARALLEL_TO_PARALLEL SYS.:TQ10002 :Q1002                Cost: 7,561  Bytes: 35,550,216  Cardinality: 987,506       
                                      10 WINDOW CHILD PUSHED RANK PARALLEL_COMBINED_WITH_PARENT :Q1002      Cost: 7,561  Bytes: 35,550,216  Cardinality: 987,506     
                                        9 PX BLOCK ITERATOR PARALLEL_COMBINED_WITH_CHILD :Q1002             Cost: 7,557  Bytes: 35,550,216  Cardinality: 987,506   
                                          8 TABLE ACCESS FULL TABLE PARALLEL_COMBINED_WITH_PARENT EMPLOYEE_BIRTHDATES :Q1002     Cost: 7,557  Bytes: 35,550,216  Cardinality: 987,506 
                        24 BUFFER SORT PARALLEL_COMBINED_WITH_CHILD :Q1004                 
                          23 PX RECEIVE PARALLEL_COMBINED_WITH_PARENT :Q1004                                Cost: 22,205,605  Bytes: 575,504,145  Cardinality: 11,284,395                 
                            22 PX SEND HASH PARALLEL_FROM_SERIAL SYS.:TQ10001                               Cost: 22,205,605  Bytes: 575,504,145  Cardinality: 11,284,395               
                              21 VIEW DONBOT_DBA.                                                           Cost: 22,205,605  Bytes: 575,504,145  Cardinality: 11,284,395             
                                20 WINDOW SORT                                                              Cost: 22,205,605  Bytes: 417,522,615  Cardinality: 11,284,395           
                                  19 TABLE ACCESS BY INDEX ROWID TABLE EMPLOYEE_INFO                        Cost: 22,137,046  Bytes: 417,522,615  Cardinality: 11,284,395         
                                    18 INDEX RANGE SCAN INDEX EMPLOYEE_INFO_INDEX_ON_SITE                   Cost: 50,419  Cardinality: 18,859,958       
                      43 VIEW PARALLEL_COMBINED_WITH_PARENT DONBOT_DBA. :Q1004                              Cost: 32  Bytes: 6  Cardinality: 1                     
                        42 UNION-ALL PARALLEL_COMBINED_WITH_PARENT :Q1004                 
                          26 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          27 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          28 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          29 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          30 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          31 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          32 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          33 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          34 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          35 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          36 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          37 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          38 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          39 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          40 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                 
                          41 FAST DUAL PARALLEL_COMBINED_WITH_PARENT :Q1004         Cost: 2  Cardinality: 1                  Finally, one without the parallel hint, and without the index hint on PAY_TABLE:
    INSERT STATEMENT  ALL_ROWS                                              Cost: 23,348,654  Bytes: 114  Cardinality: 1                   
      34 LOAD AS SELECT ARMYMP.EMPLOYEES_BY_AGE                
        33 HASH GROUP BY                                                    Cost: 23,348,654  Bytes: 114  Cardinality: 1               
          32 NESTED LOOPS                                                   Cost: 23,348,653  Bytes: 114  Cardinality: 1             
            13 HASH JOIN                                                    Cost: 23,348,621  Bytes: 108  Cardinality: 1           
              8 MERGE JOIN                                                  Cost: 1,073,202  Bytes: 8,322  Cardinality: 146         
                3 VIEW DONBOT_DBA.                                          Cost: 114,863  Bytes: 29,625,180  Cardinality: 987,506       
                  2 WINDOW SORT PUSHED RANK                                 Cost: 114,863  Bytes: 35,550,216  Cardinality: 987,506     
                    1 TABLE ACCESS FULL TABLE EMPLOYEE_BIRTHDATES           Cost: 108,983  Bytes: 35,550,216  Cardinality: 987,506   
                7 SORT JOIN                                                 Cost: 958,339  Bytes: 3,645  Cardinality: 135       
                  6 VIEW DONBOT_DBA.                                        Cost: 958,338  Bytes: 3,645  Cardinality: 135     
                    5 SORT GROUP BY                                         Cost: 958,338  Bytes: 4,185  Cardinality: 135   
                      4 TABLE ACCESS FULL TABLE PAY_INFO                    Cost: 958,337  Bytes: 4,185  Cardinality: 135 
              12 VIEW DONBOT_DBA.                                           Cost: 22,275,300  Bytes: 1,160,143,257  Cardinality: 22,747,907         
                11 WINDOW SORT                                              Cost: 22,275,300  Bytes: 841,672,559  Cardinality: 22,747,907       
                  10 TABLE ACCESS BY INDEX ROWID TABLE EMPLOYEE_INFO        Cost: 22,137,046  Bytes: 841,672,559  Cardinality: 22,747,907     
                    9 INDEX RANGE SCAN INDEX EMPLOYEE_INFO_UIC              Cost: 50,419  Cardinality: 38,019,281   
            31 VIEW DONBOT_DBA.                                             Cost: 32  Bytes: 6  Cardinality: 1           
              30 UNION-ALL         
                14 FAST DUAL  Cost: 2  Cardinality: 1       
                15 FAST DUAL  Cost: 2  Cardinality: 1       
                16 FAST DUAL  Cost: 2  Cardinality: 1       
                17 FAST DUAL  Cost: 2  Cardinality: 1       
                18 FAST DUAL  Cost: 2  Cardinality: 1       
                19 FAST DUAL  Cost: 2  Cardinality: 1       
                20 FAST DUAL  Cost: 2  Cardinality: 1       
                21 FAST DUAL  Cost: 2  Cardinality: 1       
                22 FAST DUAL  Cost: 2  Cardinality: 1       
                23 FAST DUAL  Cost: 2  Cardinality: 1       
                24 FAST DUAL  Cost: 2  Cardinality: 1       
                25 FAST DUAL  Cost: 2  Cardinality: 1       
                26 FAST DUAL  Cost: 2  Cardinality: 1       
                27 FAST DUAL  Cost: 2  Cardinality: 1       
                28 FAST DUAL  Cost: 2  Cardinality: 1       
                29 FAST DUAL  Cost: 2  Cardinality: 1        I am surprised the cost without the index is less than the cost with it, considering that it is replacing a Table Access By Index Rowid with a Table Access Full on a table with 1 billion (1000 million) records.
    Igor - two questions:
    One - I cannot find "Materialize" in the hints in the SQL Reference anywhere. What does it do?
    Two - does replacing subqueries with With clauses make that much of a difference?

  • My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.

    My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.
    Etrecheck says:
    Problem description:
    Imac late 2009 running slow
    EtreCheck version: 2.2 (132)
    Report generated 5/3/15, 4:33 PM
    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.3 (14D136) - Time since boot: 5:5:56
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (308.35 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Western Digital My Book 111A 1 TB
            disk1s1 (disk1s1) <not mounted> : 32 KB
            My Book (disk1s3) /Volumes/My Book : 1.00 TB (226.58 GB free)
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/hosts - Count: 30
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Toast 10 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.roxio.TDIXController (1.7) [Click for support]
            /Library/Application Support/LogMeIn/drivers
        [loaded]    com.logmein.driver.LogMeInSoundDriver (4.1.48f99) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.13) [Click for support]
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.13) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBCDCACMData (1.3.8) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.8) [Click for support]
        [not loaded]    com.novamedia.driver.IceraUSB_MSD_Bypass (1.3.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (3.0.13) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (3.0.13) [Click for support]
        [not loaded]    com.option.driver.Option72 (2.15.0) [Click for support]
        [not loaded]    com.option.driver.OptionHS (3.26.0) [Click for support]
        [not loaded]    com.option.driver.OptionMSD (1.21.0) [Click for support]
        [not loaded]    com.option.driver.OptionQC (1.11.0) [Click for support]
        [not loaded]    com.pctools.iantivirus.kfs (1.0.1) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.45) [Click for support]
        [not loaded]    com.vodafone.driver (3.0.9) [Click for support]
        [not loaded]    com.zte.driver.cdc_ecm_qmi (1.0.1) [Click for support]
        [not loaded]    com.zte.driver.cdc_usb_bus (1.0.1) [Click for support]
        [not loaded]    de.novamedia.driver.NMSmartplugSCSIDevice (1.0.1) [Click for support]
        [not loaded]    de.novamedia.oem.vodafone.vtp.huawei.cdc (0.0.2) [Click for support]
            /System/Library/Extensions/NMHuaweiPhonesVTPCDC.kext/Contents/Resources
        [not loaded]    de.novamedia.driver.NMUSBCDCACMData.VTP (3.2.6) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (3.0.13) [Click for support]
            /System/Library/Extensions/Vodafone.kext/Contents/Plugins
        [not loaded]    com.vodafone.driver.Data (3.0.9) [Click for support]
            /Volumes/My Book/Extras/WD +TURBO Installer.app
        [not loaded]    com.wdc.driver.1394HP (1.0.9) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.11) [Click for support]
    Startup Items: ℹ️
        AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
        Qmaster: Path: /Library/StartupItems/Qmaster
        VirtualPCOSServices: Path: /Library/StartupItems/VirtualPCOSServices
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudphotosd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.photolibraryd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        10 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [failed]    com.apple.mtrecorder.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.wdhelper.plist
        8 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [failed]    com.logmein.LMILaunchAgentFixer.plist [Click for support] [Click for details]
        [running]    com.logmein.logmeingui.plist [Click for support]
        [running]    com.logmein.logmeinguiagent.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagentatlogin.plist [Click for support]
        [running]    de.novamedia.VodafoneDeviceObserver.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.adobe.versioncueCS3.plist [Click for support]
        [loaded]    com.adobe.versioncueCS4.plist [Click for support]
        [failed]    com.apple.spirecorder.plist
        [loaded]    com.bombich.ccc.plist [Click for support]
        [running]    com.logmein.logmeinserver.plist [Click for support]
        [loaded]    com.logmein.raupdate.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    jp.co.canon.MasterInstaller.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Mail    Application  (/Applications/Mail.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        iAntiVirus    Application Hidden (/Applications/iAntiVirus/iAntiVirus.app)
    Internet Plug-ins: ℹ️
        LogMeInSafari64: Version: 1.0.730 [Click for support]
        Unity Web Player: Version: UnityPlayer version 3.5.3f3 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeIn: Version: 1.0.730 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.730 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        EPPEX Plugin: Version: 10.0 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    Audio Plug-ins: ℹ️
        DVCPROHDAudio: Version: 1.2
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS2  [Click for support]
        Adobe Version Cue CS3  [Click for support]
        Adobe Version Cue CS4  [Click for support]
        Déjà Vu  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
        SixtyFourSwitcher  [Click for support]
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 499.25 GB Disk used: 190.89 GB
        Destinations:
            My Book [Local]
            Total size: 1.00 TB
            Total number of backups: 13
            Oldest backup: 2015-04-21 19:59:59 +0000
            Last backup: 2015-05-02 19:49:37 +0000
            Size of backup disk: Adequate
                Backup size 1.00 TB > (Disk used 190.89 GB X 3)
    Top Processes by CPU: ℹ️
            12%    iavd
             5%    iAntiVirus
             5%    WindowServer
             5%    diskimages-helper
             1%    mdworker(5)
    Top Processes by Memory: ℹ️
        537 MB    kernel_task
        266 MB    Google Chrome Helper(4)
        111 MB    Google Chrome
        74 MB    ocspd
        74 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.45 GB    Free RAM
        2.55 GB    Used RAM
        59 MB    Swap Used
    Diagnostics Information: ℹ️
        May 3, 2015, 11:26:23 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-05-03-112623_[ redacted].cpu_resource.diag [Click for details]
        May 3, 2015, 11:22:17 AM    Self test - passed

    Thanks for all the replies.
    I've now installed the ad blocker, thrown away the unwanted files, and thrown away a copy of Firefox that Adware said had a problematic extension.
    Things are better, but still slow.
    Activity Monitor shows that with just Mail, Chrome and Excel running, 2.9GB of my 4GB RAM is used. Opening InDesign (always slow) increase that to 3.2GB. But the graph stays green.
    Console shows several potential problems but I don't know if any are significant. In any case I will call my Mac store tomorrow to ask their advice about RAM.
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3383189 oid:3383189 ino:3383189 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5 -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3375445 oid:3375445 ino:3375445 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages
    04/05/2015 18:52:10.564 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:11.090 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:12.727 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:52:13.021 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:52:13.022 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:52:14.284 helpd[296]: Cannot find executable for CFBundle 0x7fb412caabe0 </Library/Documentation/Help/iWorkFunctionsHelp.help> (not loaded)
    04/05/2015 18:52:15.085 helpd[296]: Cannot find executable for CFBundle 0x7fb412d1f540 </Library/Documentation/Help/X422MFPHelp.help> (not loaded)
    04/05/2015 18:52:17.455 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:17.456 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.737 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.738 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:23.292 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:31.811 AddressBookManager[428]: Validate metadata timed out, cancelling
    04/05/2015 18:52:33.395 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.396 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.467 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:33.573 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.574 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.922 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.923 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.068 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:34.068 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.354 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:35.161 icbaccountsd[430]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fe8584355d0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    04/05/2015 18:52:35.597 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.598 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.612 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:35.613 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3111641 oid:3111641 ino:3111641 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3078032 oid:3078032 ino:3078032 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected] -- /Users/leopard/Library/Mail/V2/[email protected]
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3096791 oid:3096791 ino:3096791 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox -- /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3112877 oid:3112877 ino:3112877 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3105498 oid:3105498 ino:3105498 fsEvents:1 /Users/leopard/Library/Mail/V2/Mailboxes -- /Users/leopard/Library/Mail/V2/Mailboxes
    04/05/2015 18:52:39.465 sandboxd[328]: ([430]) icbaccountsd(430) deny mach-lookup com.apple.CrashReporterSupportHelper
    04/05/2015 18:52:42.205 com.apple.backupd[433]: Starting automatic backup
    04/05/2015 18:52:43.308 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:50.022 com.apple.backupd[433]: Backing up to /dev/disk1s3: /Volumes/My Book/Backups.backupdb
    04/05/2015 18:53:40.588 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: server returned error: 404 for URL http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3
    04/05/2015 18:53:40.589 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: Failed to load announcements document: Error Domain=GEOErrorDomain Code=-601 "The operation couldn’t be completed. (GEOErrorDomain error -601.)" UserInfo=0x7fba42c4deb0 {NSErrorFailingURLStringKey=http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3, HTTP Status Code=404}
    04/05/2015 18:53:40.989 com.apple.xpc.launchd[1]: (com.apple.quicklook[440]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:53:41.159 nbagent[439]: XPC Activity invoked with state=0
    04/05/2015 18:53:41.160 nbagent[439]: XPC Activity invoked with state=2
    04/05/2015 18:53:41.329 storeaccountd[317]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff9a8580770> connection from pid 439 with interface <AccountServiceInterface: 0x7ff9a8598880> (PID 439)
    04/05/2015 18:53:41.739 periodic-wrapper[441]: Running daily periodic task.
    04/05/2015 18:53:43.613 storeaccountd[317]: ADI: {
        "Accept-Ranges" = bytes;
        "Cache-Control" = "max-age=14400";
        Connection = "Keep-Alive";
        "Content-Encoding" = gzip;
        "Content-Language" = "en-us";
        "Content-Length" = 793;
        "Content-Type" = "application/x-apple-plist";
        Date = "Mon, 04 May 2015 17:53:43 GMT";
        Etag = "\"e20-5071070ddab80\"";
        Expires = "Mon, 04 May 2015 21:53:43 GMT";
        "Keep-Alive" = "timeout=15, max=281";
        "Last-Modified" = "Tue, 04 Nov 2014 23:01:18 GMT";
        Server = Apache;
    04/05/2015 18:53:44.006 sandboxd[328]: ([447]) nbstated(447) deny ipc-posix-shm-read-data com.apple.AppleDatabaseChanged
    04/05/2015 18:53:58.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    04/05/2015 18:53:58.472 mdworker[366]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.474 mdworker[435]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[436]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[437]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.478 CoreServicesUIAgent[359]: unexpected message <OS_xpc_error: <error: 0x7fff76be0c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76be0f70> { length = 18, contents = "Connection invalid" }
    }>
    04/05/2015 18:53:58.478 mdworker[438]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.558 fseventsd[42]: Logging disabled completely for device:1: /Volumes/Recovery HD
    04/05/2015 18:53:58.565 mds[55]: (Volume.Normal:2464) volume:0x7f96c413b000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    04/05/2015 18:53:58.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    04/05/2015 18:56:38.724 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:39.031 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:39.031 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:40.704 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:40.977 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:40.977 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:43.160 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:43.428 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:43.428 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:00.920 WindowServer[154]: CGXDisplayDidWakeNotification [729933074334]: posting kCGSDisplayDidWake
    04/05/2015 18:57:00.920 WindowServer[154]: handle_will_sleep_auth_and_shield_windows: Deferring.
    04/05/2015 18:57:01.086 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: notification observer: com.apple.iChat   notification: __CFNotification 0x7fd522414040 {name = _NSDoNotDisturbDisabledNotification}
    04/05/2015 18:57:01.235 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:    NC Disabled: NO
    04/05/2015 18:57:01.241 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:   DND Enabled: NO
    04/05/2015 18:57:01.242 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: Updating enabled: YES   (Topics: (
    04/05/2015 18:57:06.630 com.apple.backupd[433]: Will copy (547 KB) from Macintosh HD
    04/05/2015 18:57:06.720 com.apple.backupd[433]: Found 14392 files (112.99 GB) needing backup
    04/05/2015 18:57:06.728 com.apple.backupd[433]: 136.19 GB required (including padding), 118.1 GB available
    04/05/2015 18:57:09.840 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:10.119 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:10.119 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:12.387 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:12.668 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:12.669 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.340 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:14.619 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:14.619 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.620 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-02-204937 containing 782.8 MB; 118.88 GB now available, 136.19 GB required
    04/05/2015 18:57:22.106 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-03-181125 containing 31.6 MB; 118.92 GB now available, 136.19 GB required
    04/05/2015 18:57:22.108 com.apple.backupd[433]: Removed 2 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:57:22.281 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:22.562 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:22.562 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:47.959 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-25-125849 containing 2.94 GB; 121.86 GB now available, 136.19 GB required
    04/05/2015 18:57:47.960 com.apple.backupd[433]: Removed 3 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:01.552 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-26-110446 containing 6.31 GB; 128.17 GB now available, 136.19 GB required
    04/05/2015 18:58:01.554 com.apple.backupd[433]: Removed 4 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-27-095120 containing 110.88 GB; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted 5 backups containing 120.95 GB total; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Backup date range was shortened: oldest backup is now Apr 28, 2015
    04/05/2015 18:59:01.076 com.apple.xpc.launchd[1]: (com.apple.quicklook[533]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:59:09.015 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:10.846 nsurlstoraged[308]: purgeEntireFileSystemStore - failed to rename the current cache dir /Users/leopard/Library/Containers/com.apple.mail/Data/Library/Caches/com.apple. mail/fsCachedData to new cache dir /var/folders/wv/x9z7l4911p33dv8jyv6nby6m0000gn/T/fsCachedData_remove.  Errno=18
    04/05/2015 18:59:14.837 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:51.249 spindump[412]: Saved spin report for System Preferences version 14.0 (14.0) to /Library/Logs/DiagnosticReports/System Preferences_2015-05-04-185951_Paul-Breedens-imac-5.spin
    04/05/2015 19:00:05.000 kernel[0]: process WindowServer[154] caught causing excessive wakeups. Observed wakeups rate (per sec): 157; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 66094
    04/05/2015 19:00:05.871 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Root[544]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService
    04/05/2015 19:00:05.875 SubmitDiagInfo[340]: Couldn't load config file from on-disk location. Falling back to default location. Reason: Won't serialize in _readDictionaryFromJSONData due to nil object
    04/05/2015 19:00:11.473 spindump[412]: Saved wakeups_resource.diag report for WindowServer version ??? (???) to /Library/Logs/DiagnosticReports/WindowServer_2015-05-04-190011_Paul-Breedens-im ac-5.wakeups_resource.diag
    04/05/2015 19:00:56.197 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 19:00:56.530 iconservicesd[59]: Failed to move temp file /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata.tmp to /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata with error: Error Domain=NSCocoaErrorDomain Code=516 "“B9FF2D6E-5D0C-1218-402C-B706F28B0A68.isdata.tmp” couldn’t be moved to “com.apple.iconservices.store” because an item with the same name already exists." UserInfo=0x7fb949c13070 {NSSourceFilePathErrorKey=/Library/Caches/com.apple.iconservices.store/B9FF2D6E -5D0C-1218-402C-B706F28B0A68.isdata.tmp, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0 C-1218-402C-B706F28B0A68.isdata, NSFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C -B706F28B0A68.isdata.tmp, NSUnderlyingError=0x7fb949c11ba0 "The operation couldn’t be completed. File exists"}
    04/05/2015 19:00:57.204 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.211 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: CGSConnectionByID: 0 is not a valid connection ID.
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: Invalid Connection ID 0
    04/05/2015 19:01:02.753 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.824 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:02.837 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.896 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:08.015 com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.7940DB53-496F-47D2-87E2-C3EE3CBF1E27[545]) Service exited due to signal: Killed: 9
    04/05/2015 19:01:19.128 apsd[75]: Illegal subject name missing 'courier.push.apple.com' (2.5.4.3): ({
        label = "2.5.4.6";
        "localized label" = "2.5.4.6";
        type = string;
        value = US;
        label = "2.5.4.8";
        "localized label" = "2.5.4.8";
        type = string;
        value = California;
        label = "2.5.4.7";
        "localized label" = "2.5.4.7";
        type = string;
        value = Cupertino;
        label = "2.5.4.10";
        "localized label" = "2.5.4.10";
        type = string;
        value = "Apple Inc.";
        label = "2.5.4.3";
        "localized label" = "2.5.4.3";
        type = string;
        value = "courier.sandbox.push.apple.com";
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.3 instead of 10.10.3. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 0   CarbonCore                          0x93ff9291 ___Gestalt_SystemVersion_block_invoke + 135
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 1   libdispatch.dylib                   0x9a9460b5 dispatch_once_f + 251
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 2   libdispatch.dylib                   0x9a9470d8 dispatch_once + 31
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 3   CarbonCore                          0x93f7269d _Gestalt_SystemVersion + 1050
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 4   CarbonCore                          0x93f717c0 Gestalt + 150
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 5   AdobeAFL                            0x016ebfae _ZN5adobe3afl12MacFileUtils13AFileToFSSpecERKNS0_5AFileER6FSSpec + 5254
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 6   ???                                 0x8feb70b3 0x0 + 2414571699
    04/05/2015 19:01:28.908 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 19:01:28.952 Adobe InDesign CS5[550]: The function ‘CGSFlushWindow’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGSFlushWindowContentRegion' instead.
    04/05/2015 19:01:29.229 Mail[309]: XOAUTH2 requires user
    04/05/2015 19:01:29.229 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    Hope this isn't too much ... thanks again for everyone's input.

  • My IMac is running slow! Safari freezes all the time. What can I do to get it moving faster??

    My iMac is running slow. When searching in safari it freezes and I have to shut it down several times before it will search. Apps are running slow. What can I do to fix?

    EtreCheck version: 2.0.11 (98)
    Report generated November 25, 2014 at 8:10:49 PM CST
    Hardware Information: ℹ️
      iMac (27-inch, Mid 2011) (Verified)
      iMac - model: iMac12,2
      1 2.7 GHz Intel Core i5 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 2:32:20
    Disk Information: ℹ️
      WDC WD1001FALS-403AA0 disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 999.35 GB (436.42 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5690H 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. iPhone
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Western Digital My Passport 07A8 1 TB
      S.M.A.R.T. Status: Verified
      EFI (disk1s1) <not mounted> : 210 MB
      My Passport for Mac (disk1s2) /Volumes/My Passport for Mac : 999.83 GB (843.09 GB free)
      Apple Internal Memory Card Reader
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Startup Items: ℹ️
      iCoreService: Path: /Library/StartupItems/iCoreService
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [running] com.kodak.BonjourAgent.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [loaded] com.trendmicro.itis.loginmgr.agent.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.ea.origin.ESHelper.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.trendmicro.itis.icore.agent.plist Support
    User Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.kodak.KODAK AiO Firmware Updater.plist Support
      [loaded] com.kodak.KODAK AiO Software Updater.plist Support
      [loaded] com.kodak.Registration.plist Support
      [running] com.kodak.StatisticCollection.plist Support
    User Login Items: ℹ️
      Steam UNKNOWN (missing value)
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Origin UNKNOWN (missing value)
      TmLoginMgr Application (/Library/Application Support/TrendMicro/TmccMac/TmLoginMgr.app)
      TmLoginMgr Application (/Library/Application Support/TrendMicro/TmccMac/TmLoginMgr.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 15.0.0.239 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      Flash Player: Version: 15.0.0.239 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 Support
      Unity Web Player: Version: UnityPlayer version 4.3.5f1 - SDK 10.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    User Internet Plug-ins: ℹ️
      Picasa: Version: 1.0 - SDK 10.4 Support
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          8% iTunes
          7% WindowServer
          5% usbmuxd
          3% mds
          1% coreaudiod
    Top Processes by Memory: ℹ️
      339 MB iTunes
      150 MB com.apple.MediaLibraryService
      107 MB Safari
      86 MB Messages
      73 MB mds_stores
    Virtual Memory Information: ℹ️
      120 MB Free RAM
      1.65 GB Active RAM
      1.61 GB Inactive RAM
      822 MB Wired RAM
      21.26 GB Page-ins
      25 MB Page-outs

  • Please help, my iMac is running slow and plenty of memory available?

    Please help, my iMac is running slow and plenty of memory available? I tried reading some of these forums to see what to do, I have already deleted all of my downloads that were stored in the downloads file. Not sure what to do next, I ran the etrecheck and here is the following info from the scan:
    EtreCheck version: 2.2 (132)
    Report generated 4/20/15, 2:55 PM
    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.
    Click the [Click to remove] links for help removing adware.
    Hardware Information: ℹ️
        iMac (27-inch, Mid 2011) (Technical Specifications)
        iMac - model: iMac12,2
        1 2.7 GHz Intel Core i5 CPU: 4-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 0/DIMM1
                Empty  
            BANK 1/DIMM1
                Empty  
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        AMD Radeon HD 6770M - VRAM: 512 MB
            iMac 2560 x 1440
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 5:29:18
    Disk Information: ℹ️
        ST31000528AS disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 999.35 GB (872.44 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        OPTIARC DVD RW AD-5690H 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Adware: ℹ️
        Genieo, InstallMac Adware! [Click to remove]
        More adware files Adware! [Click to remove]
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.cmfsyncagent.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.gamed.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.scopedbookmarkagent.xpc.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        15 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.wdhelper.plist
        7 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [running]    com.dced8a8837572b7b.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [not loaded]    com.dced8a8837572b7b.daemon.plist [Click for support]
        [running]    com.dced8a8837572b7b.helper.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support] [Click for details]
        [loaded]    com.genieo.completer.download.plist  Adware! [Click to remove]
        [loaded]    com.genieo.completer.update.plist  Adware! [Click to remove]
        [running]    com.google.Chrome.framework.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [failed]    com.webtools.update.agent.plist [Click for support] [Click for details]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        AdobeResourceSynchronizer    Application  (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Support/AdobeResourceSynchronizer.app)
        Google Chrome    Application Hidden (/Applications/Google Chrome.app)
    Internet Plug-ins: ℹ️
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.0.0.85 BETA  - SDK 10.7 [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
    Safari Extensions: ℹ️
        Omnibar  Adware! [Click to remove]
        MacMin
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             3%    AddressBookSourceSync
             3%    Google Chrome Helper(10)
             3%    Google Chrome
             2%    mdworker(5)
             1%    WindowServer
    Top Processes by Memory: ℹ️
        729 MB    Google Chrome Helper(10)
        481 MB    kernel_task
        119 MB    Google Chrome
        115 MB    Mail
        74 MB    softwareupdated
    Virtual Memory Information: ℹ️
        58 MB    Free RAM
        3.94 GB    Used RAM
        218 MB    Swap Used
    Diagnostics Information: ℹ️
        Apr 20, 2015, 09:21:25 AM    Self test - passed

    So I looked up the info on OWC as suggested and found the correct memory to upgrade but not sure how much to get and which option? I wanted to know how much space I have available to upgrade so I don't buy something that's more than what can be used. I'm not sure if I need 4GB or 8GB of ram? Also there are two options with every memory choice for instance:
    8.0GB PC3-10600 1333MHZ SO Kit (4GB + 4GB) w/Lifetime Limited Warranty
    Same Day
    $78.79
    8.0GB PC3-10600 SO-DIMM 204 Pin w/Lifetime Limited Warranty
    Same Day
    $82.79
    Not sure what the difference is in the two and which I would need to purchase? Thank you for all your help!

  • What would cause the original I Pad shut itself off while playing games or online? it is not a battery issue or time issue. When I turn it back on it goes to were I was  when I was online ,but have to start games over.

    What would cause the original I Pad shut itself off while playing games or online? it is not a battery issue or time issue. When I turn it back on it goes to were I was  when I was online ,but have to start games over.

    The original iPad has a slow processor and only 256 MB of memory so it often runs into low-memory failures.
    Double click the home button and dismiss all of the recents - I do that weekly.
    Then reboot by holding both the power and home buttons until the apple logo appears, ignore the red slider - I also do that weekly.
    Both seem to help to reduce the low-memory faults that occur.

  • What would make my iMac start to smoke?

    While working on,my computer tonight it shut down.  t had been working fine but just simply lost power.  When I turned it on, it was smoking!  I turned it off immediately but there was quite a lot of smoke...scared me to death.  What would cause that to happen?  How long before I can turn it back on?   Is there permanent damage to the computer?  t did not feel not at all which it sometimes does.

    I so much appreciate yours and Allan's  vwrious options and suggestions.  Ive been giving tne situation some careful thought and, while I can't really afford a new computer (who can? ) I think taking the plunge is probably the wisest thing to do.  I don't think this computer is fixable, but even if it were, the cost would be significant and I would still have an iMac that is just over five years old.  I"m thinking I would rather put possible repair costs towards a new ome. 
    My decision now is do I want a other iMac or should I get a laptop?  The laptops are expensive but for a variety of reasons I think it would better serve my current and future needs.  My only concern is that I have some vision problems that will probably make it necessary to get tne 15  inch and, yikes, is it expensive!!! 
    I must say, as I have since I got my first computer 15 years ago, I would never have made it without these Apple boards.  I have had the best help and advice from everyone here...much better than calling Apple, although they are good as well.  Thanks again for your help....beware, though, that when I get the new computer, you may be in even greater demand!

  • What would cause the printer to only print text in microsoft word but no images

    i have a  hp deskjet D1320 printer, windows xp operating system, and i have always printed greeting cards from microsoft word by inserting an image and then printing it with the printer set to duplex(2sided)printing option, so after you print the image you flip the card around and then print the text on the inside of the card. now the printer does not print any images when i insert the image and then click print it just runs 1 piece of paper through the printer and stops but it will still print text just fine, does anyone know what would cause this type of an issue?
                                                                  thank-you,
                                                                                     hwnugent

    Hi there hwnugent,
    Try downloading and running the print and scan doctor located here:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03275041&cc=us&dlc=en&lc=en
    It can fix a lot on its own and if not give a better idea of what is going on. Let us know the results.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • My Computer freezes and the screen turns white. What would cause this?

    My mac miniComputer freezes and the screen turns white. What would cause this?

    Here is what was in the utilities for my console.
    10/22/13 9:41:59.000 AM kernel[0]: CoreStorage: fsck_cs has finished for group "3FD474FF-B711-4557-9B01-67EB19C49BDA" with status 0x00
    10/22/13 9:41:59.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD HTS541010A9E662 Media/IOGUIDPartitionScheme/Macintosh HD@2/CoreStoragePhysical/CoreStorageGroup/Macintosh HD
    10/22/13 9:41:59.000 AM kernel[0]: BSD root: disk1, major 1, minor 4
    10/22/13 9:41:59.000 AM kernel[0]: jnl: unknown-dev: replay_journal: from: 65415680 to: 68414464 (joffset 0x13218000)
    10/22/13 9:41:59.000 AM kernel[0]: IOThunderboltSwitch<0xffffff80159d4a00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    10/22/13 9:41:59.000 AM kernel[0]: IOThunderboltSwitch<0xffffff80159d4a00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    10/22/13 9:41:59.000 AM kernel[0]: USBMSC Identifier (non-unique): 10000E000C7F9033 0x59f 0x621 0x0, 2
    10/22/13 9:41:59.000 AM kernel[0]: jnl: unknown-dev: journal replay done.
    10/22/13 9:41:59.000 AM kernel[0]: Kernel is LP64
    10/22/13 9:41:59.000 AM kernel[0]: hfs: Removed 6 orphaned / unlinked files and 475 directories
    10/22/13 9:41:59.000 AM kernel[0]: BCM5701Enet: Ethernet address a8:20:66:0d:fc:25
    10/22/13 9:41:59.000 AM kernel[0]: AirPort_Brcm4331: Ethernet address 20:c9:d0:97:55:7f
    10/22/13 9:41:59.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    10/22/13 9:41:59.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    10/22/13 9:42:06.456 AM com.apple.kextd[12]: not watching F3408C38-5457-3475-AD1D-D360F815C3AD -> no volume lock to grant
    10/22/13 9:42:06.547 AM fseventsd[59]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (86493 21 86554)
    10/22/13 9:42:06.584 AM hidd[58]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    10/22/13 9:42:06.586 AM hidd[58]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    10/22/13 9:42:06.590 AM kdc[56]: label: default
    10/22/13 9:42:06.590 AM kdc[56]:     dbname: od:/Local/Default
    10/22/13 9:42:06.590 AM kdc[56]:     mkey_file: /var/db/krb5kdc/m-key
    10/22/13 9:42:06.590 AM kdc[56]:     acl_file: /var/db/krb5kdc/kadmind.acl
    10/22/13 9:42:06.598 AM airportd[74]: _processDLILEvent: en1 attached (down)
    10/22/13 9:42:06.640 AM coreservicesd[76]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    10/22/13 9:42:06.682 AM mDNSResponder[50]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    10/22/13 9:42:06.000 AM kernel[0]: Previous Shutdown Cause: 3
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    10/22/13 9:42:06.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    10/22/13 9:42:06.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828A FirmwareVersion - 0x0066
    10/22/13 9:42:06.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff80168d6c00 ****
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff80168d6c00
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    10/22/13 9:42:06.000 AM kernel[0]: DSMOS has arrived
    10/22/13 9:42:06.000 AM kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    10/22/13 9:42:06.000 AM kernel[0]: createVirtIf(): ifRole = 1
    10/22/13 9:42:06.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    10/22/13 9:42:06.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff801682f000
    10/22/13 9:42:06.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    10/22/13 9:42:06.000 AM kernel[0]: Created virtif 0xffffff801682f000 p2p0
    10/22/13 9:42:06.000 AM kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00001d08
    10/22/13 9:42:07.714 AM configd[18]: setting hostname to "kathy-winters-mac-mini-3.local"
    10/22/13 9:42:07.000 AM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    10/22/13 9:42:07.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    10/22/13 9:42:07.717 AM configd[18]: network changed.
    10/22/13 9:42:08.210 AM fseventsd[59]: log dir: /.fseventsd getting new uuid: 5C426A11-1379-4AD6-AFD9-DF4963B9C3CB
    10/22/13 9:42:08.000 AM kernel[0]: macx_swapon SUCCESS
    10/22/13 9:42:09.264 AM mds[49]: (Normal) FMW: FMW 0 0
    10/22/13 9:42:09.446 AM com.apple.SecurityServer[15]: Session 100000 created
    10/22/13 9:42:10.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 10-Megabit, Half-duplex, No flow-control, Debug [796d,0101,0de1,0300,0021,0000]
    10/22/13 9:42:14.849 AM appleeventsd[64]: main: Starting up
    10/22/13 9:42:16.255 AM com.apple.usbmuxd[39]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    10/22/13 9:42:19.119 AM com.apple.SecurityServer[15]: Entering service
    10/22/13 9:42:19.177 AM systemkeychain[79]: done file: /var/run/systemkeychaincheck.done
    10/22/13 9:42:19.185 AM configd[18]: network changed: DNS*
    10/22/13 9:42:19.187 AM mDNSResponder[50]: D2D_IPC: Loaded
    10/22/13 9:42:19.187 AM mDNSResponder[50]: D2DInitialize succeeded
    10/22/13 9:42:19.223 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 5 seconds
    10/22/13 9:42:19.621 AM netbiosd[83]: Unable to start NetBIOS name service:
    10/22/13 9:42:20.363 AM kdc[56]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    10/22/13 9:42:20.629 AM apsd[70]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/22/13 9:42:20.629 AM apsd[70]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/22/13 9:42:20.993 AM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    10/22/13 9:42:21.081 AM digest-service[105]: label: default
    10/22/13 9:42:21.081 AM digest-service[105]:     dbname: od:/Local/Default
    10/22/13 9:42:21.081 AM digest-service[105]:     mkey_file: /var/db/krb5kdc/m-key
    10/22/13 9:42:21.081 AM digest-service[105]:     acl_file: /var/db/krb5kdc/kadmind.acl
    10/22/13 9:42:21.083 AM digest-service[105]: digest-request: uid=0
    10/22/13 9:42:21.104 AM corestoraged[99]: 0x7fff720a4180 unlockLVF: LVF=E089D621-8D4E-44B9-82E5-DBFC72F26660, "AES-XTS", status = "Unlocked"
    10/22/13 9:42:21.106 AM rpcsvchost[109]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    10/22/13 9:42:21.109 AM digest-service[105]: digest-request: init request
    10/22/13 9:42:21.113 AM digest-service[105]: digest-request: init return domain: BUILTIN server: KATHY-WINTERS-MAC-MINI-3
    10/22/13 9:42:21.301 AM coreservicesd[76]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    10/22/13 9:42:21.305 AM com.apple.kextcache[113]: /: helper partitions appear up to date.
    10/22/13 9:42:21.801 AM awacsd[68]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    10/22/13 9:42:21.804 AM awacsd[68]: InnerStore CopyAllZones: no info in Dynamic Store
    10/22/13 9:42:22.008 AM locationd[54]: NOTICE,Location icon should now be in state 0
    10/22/13 9:42:22.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    10/22/13 9:42:22.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    10/22/13 9:42:22.000 AM kernel[0]: MacAuthEvent en1   Auth result for: d8:c7:c8:5b:d5:d0  MAC AUTH succeeded
    10/22/13 9:42:22.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    10/22/13 9:42:22.000 AM kernel[0]: AirPort: Link Up on en1
    10/22/13 9:42:22.000 AM kernel[0]: en1: BSSID changed to d8:c7:c8:5b:d5:d0
    10/22/13 9:42:22.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    10/22/13 9:42:22.195 AM loginwindow[53]: Login Window Application Started
    10/22/13 9:42:22.244 AM WindowServer[114]: Server is starting up
    10/22/13 9:42:22.247 AM WindowServer[114]: Session 256 retained (2 references)
    10/22/13 9:42:22.247 AM WindowServer[114]: Session 256 released (1 references)
    10/22/13 9:42:22.254 AM WindowServer[114]: Session 256 retained (2 references)
    10/22/13 9:42:22.705 AM WindowServer[114]: init_page_flip: page flip mode is on
    10/22/13 9:42:23.271 AM kdc[56]: KDC started
    10/22/13 9:42:23.578 AM configd[18]: network changed: v4(en1+:173.250.178.195) DNS+ Proxy+ SMB
    10/22/13 9:42:23.581 AM WindowServer[114]: mux_initialize: Couldn't find any matches
    10/22/13 9:42:23.586 AM configd[18]: setting hostname to "d-173-250-178-195.dhcp4.washington.edu"
    10/22/13 9:42:23.589 AM UserEventAgent[11]: CFPreferences: user home directory for user mobile at  is unavailable. User domains will be volatile.
    10/22/13 9:42:23.590 AM UserEventAgent[11]: Captive: en1: Probing 'University of Washington'
    10/22/13 9:42:23.599 AM WindowServer[114]: GLCompositor enabled for tile size [256 x 256]
    10/22/13 9:42:23.599 AM WindowServer[114]: CGXGLInitMipMap: mip map mode is on
    10/22/13 9:42:23.607 AM UserEventAgent[11]: Captive: Online (not captive)
    10/22/13 9:42:23.609 AM configd[18]: network changed: v4(en1!:173.250.178.195) DNS Proxy SMB
    10/22/13 9:42:23.632 AM WindowServer[114]: WSMachineUsesNewStyleMirroring: true
    10/22/13 9:42:23.632 AM WindowServer[114]: MPServiceForDisplayDevice: Invalid device alias (0)
    10/22/13 9:42:23.632 AM WindowServer[114]: Display 0x1c80d8d2: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 472, Model 235, S/N 23505592, Unit 2, Rotation 0
    UUID 0x00000472000002352350559200000000
    10/22/13 9:42:23.633 AM WindowServer[114]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    10/22/13 9:42:23.633 AM WindowServer[114]: 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 0xffffffffffffffffffffffff003f003d
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x5 for display 0x1c80d8d2
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x6 for display 0x003f003c
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x7 for display 0x003f003d
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x1c80d8d2: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 472, Model 235, S/N 23505592, Unit 2, Rotation 0
    UUID 0x00000472000002352350559200000000
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    10/22/13 9:42:23.638 AM WindowServer[114]: CGXPerformInitialDisplayConfiguration
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x1c80d8d2: MappedDisplay Unit 2; Vendor 0x472 Model 0x235 S/N 592467346 Dimensions 20.51 x 11.54; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    10/22/13 9:42:24.078 AM ntpd[100]: proto: precision = 1.000 usec
    10/22/13 9:42:24.338 AM WindowServer[114]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, accelerator 0x00004193, unit 0, caps QEX|QGL|MIPMAP, vram 1156 MB
    10/22/13 9:42:24.338 AM WindowServer[114]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    10/22/13 9:42:24.342 AM loginwindow[53]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:24.628 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 10 seconds
    10/22/13 9:42:24.873 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:24.882 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:25.125 AM com.apple.launchd[1]: (com.apple.xprotectupdater[36]) Exited with code: 252
    10/22/13 9:42:25.410 AM WindowServer[114]: Created shield window 0x8 for display 0x1c80d8d2
    10/22/13 9:42:25.410 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:25.427 AM launchctl[126]: com.apple.findmymacmessenger: Already loaded
    10/22/13 9:42:25.441 AM com.apple.SecurityServer[15]: Session 100004 created
    10/22/13 9:42:25.472 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:25.542 AM configd[18]: network changed: v4(en0+:128.95.5.135, en1) DNS! Proxy! SMB
    10/22/13 9:42:25.548 AM configd[18]: setting hostname to "d-128-95-5-135.dhcp4.washington.edu"
    10/22/13 9:42:25.567 AM locationd[134]: NOTICE,Location icon should now be in state 0
    10/22/13 9:42:25.573 AM UserEventAgent[127]: cannot find useragent 1102
    10/22/13 9:42:25.600 AM loginwindow[53]: Login Window Started Security Agent
    10/22/13 9:42:25.667 AM SecurityAgent[136]: This is the first run
    10/22/13 9:42:25.667 AM SecurityAgent[136]: MacBuddy was run = 0
    10/22/13 9:42:25.676 AM WindowServer[114]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x1c80d8d2 device: 0x103f34110  isBackBuffered: 1 numComp: 3 numDisp: 3
    10/22/13 9:42:25.869 AM SecurityAgent[136]: User info context values set for kathywinter
    10/22/13 9:42:25.990 AM WindowServer[114]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:26.013 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:26.026 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:26.295 AM loginwindow[53]: Login Window - Returned from Security Agent
    10/22/13 9:42:26.298 AM loginwindow[53]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    10/22/13 9:42:26.308 AM loginwindow[53]: USER_PROCESS: 53 console
    10/22/13 9:42:26.321 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:26.755 AM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: UserName
    10/22/13 9:42:26.755 AM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: GroupName
    10/22/13 9:42:26.756 AM com.apple.launchd.peruser.501[148]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    10/22/13 9:42:26.760 AM loginwindow[53]: Connection with distnoted server was invalidated
    10/22/13 9:42:26.765 AM distnoted[154]: # distnote server agent  absolute time: 42.067362814   civil time: Tue Oct 22 09:42:26 2013   pid: 154 uid: 501  root: no
    10/22/13 9:42:27.409 AM UserEventAgent[153]: cannot find fw daemon port 1102
    10/22/13 9:42:27.844 AM com.apple.SecurityServer[15]: Session 100005 created
    10/22/13 9:42:28.028 AM WindowServer[114]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:28.048 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:28.168 AM mds[49]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/22/13 9:42:28.169 AM mds[49]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/22/13 9:42:31.327 AM timezoned[183]: bootstrap_look_up failed (44e)
    10/22/13 9:42:31.336 AM timezoned[183]: bootstrap_look_up failed (44e)
    10/22/13 9:42:34.612 AM mds[49]: Unable to talk to lsboxd
    10/22/13 9:42:34.674 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 20 seconds
    10/22/13 9:42:34.768 AM com.apple.time[153]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    10/22/13 9:42:37.163 AM awacsd[68]: Exiting
    10/22/13 9:42:38.863 AM com.apple.launchd.peruser.501[148]: (com.apple.AddressBook.abd) Throttling respawn: Will start in 9 seconds
    10/22/13 9:42:42.685 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.685 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.714 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.714 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.733 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.733 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.752 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.752 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.771 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.771 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.789 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.789 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.808 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.808 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.827 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.827 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.845 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.845 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.864 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.864 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:43.000 AM kernel[0]: Sophos Anti-Virus on-access kext activated
    10/22/13 9:42:46.750 AM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[131]) Exit timeout elapsed (20 seconds). Killing
    10/22/13 9:42:49.603 AM SystemUIServer[175]: CGSCopyWindowShape: pid (175) passed NULL window
    10/22/13 9:42:49.603 AM SystemUIServer[175]: could not update menu bar region, 1000
    10/22/13 9:42:49.603 AM SystemUIServer[175]: CGSSetWindowTransformAtPlacement: Singular matrix [0.000 0.000 0.000 0.000]
    10/22/13 9:42:49.817 AM coreaudiod[197]: Enabled automatic stack shots because audio IO is inactive
    10/22/13 9:42:53.000 AM kernel[0]: jnl: disk2s6: flushing fs disk buffer returned 0x5
    10/22/13 9:42:54.715 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 40 seconds

  • I just purchased the 4S and am having trouble with it at least once a day says Invalid Sim, what would cause this and how do I fix it

    I just purchased the I 4S and at least once a day, it will say Invalid Sim, what would cause this and how do I fix it?

    Then, if there's any data on the drive that you want to keep, you have to back up before you do anything else -- assuming it's still possible.
    Basically you have three options:
    1. Install a copy of the Mac OS on an external hard drive, boot from it, and copy the data from the internal drive.
    2. Start the problem Mac in FireWire target mode (command-T at startup) and connect it to a working Mac with a FireWire cable. The internal drive will mount as a FireWire device.
    3. Remove the internal drive and mount in an external enclosure on another Mac.
    Once you've backed up, follow the sequence in the support article linked below. The article is somewhat outdated. Where it refers to booting from an installation disc, you should boot from your recovery partition (if running Lion) by holding down the key combination command-R at the chime.
    Mac OS X: Gray screen appears during startup

  • What would cause iphone to not turn on?

    Recently my iphone 5 started freezing up when left charging overnight. I must hold home and power button for ten seconds to wake up. What would cause this?

    Standard troubleshooting...
    Try a reset by pressing the home and sleep buttons until you see the Apple logo, ignoring the slider if, it comes up. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    Remove all apps from Recently Used list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Tap and hold any icon in this list until they wiggle
    - Press the red (-) to delete all apps from this list.
    - Press the home button twice when done.
    If still a problem restore with your backup.
    If still a problem restore as new, i.e. without your backup. See how it runs with nothing synced to it.
    If still a problem, it's likely a hardware issue.

Maybe you are looking for