SetTableLocation EXTREMELY SLOW IN ORACLE

<p>
Hi I am using the code below to change my database provider at runtime. <br />
Unfortunately this line <code>ReportDocument.ReportClientDocument.DatabaseController.SetTableLocation</code> is extremely slow trying to change table location in Oracle. It takes 2 or more seconds per table so it is unacceptable for us.
Please I need a solution as soon as possible.<br />
It is weird, becaus with SqlServer it works fine! so I don't understand what's the problem with CrystalReports and Oracle.<br />
Ther is anyone who have a solution?<br />
We are using: CrystalReports 12, Oracle 10, 11.<br />
Thank you very much.
</p>
<code>
public partial class _Default : System.Web.UI.Page<br />
{<br />
      protected void Page_Load(object sender, EventArgs e)<br />
      {<br />
            ReportDocument report = this.ChangeConnectionInfo();   <br />    
            this.CrystalReportViewer1.ReportSource=report;<br />
            this.CrystalReportViewer1.RefreshReport();<br />
      }<br />
    <br /><br />
      private ReportDocument ChangeConnectionInfo()<br />
      {<br />
            ReportDocument boReportDocument = new ReportDocument();<br />
            string reportFileName = Server.MapPath("CrystalReport1.rpt");<br />
            //*EDIT* Change the path and report name to the report you want to change.<br />
            boReportDocument.Load(reportFileName, OpenReportMethod.OpenReportByTempCopy);<br />
<br />
            //Create a new Database Table to replace the reports current table.<br />
            CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();<br />
<br />
            //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object<br />
            PropertyBag boMainPropertyBag = new PropertyBag();<br />
            //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties<br />
            //In the main property bag (boMainPropertyBag)<br />
            PropertyBag boInnerPropertyBag = new PropertyBag();<br />
<br />
            //Set the attributes for the boInnerPropertyBag<br />
            boInnerPropertyBag.Add("Data Source", "oracle1");<br />
            boInnerPropertyBag.Add("Locale Identifier", "3082");<br />
            boInnerPropertyBag.Add("OLE DB Services", "-5");<br />
            boInnerPropertyBag.Add("Provider", "MSDAORA");<br />
            boInnerPropertyBag.Add("Use DSN Default Properties", "False");<br />
<br />
            //Set the attributes for the boMainPropertyBag<br />
            boMainPropertyBag.Add("Database DLL", "crdb_ado.dll");<br />
            boMainPropertyBag.Add("QE_DatabaseName", "");<br />
            boMainPropertyBag.Add("QE_DatabaseType", "OLE DB (ADO)");<br />
            //Add the QE_LogonProperties we set in the boInnerPropertyBag Object<br />
            boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);<br />
            boMainPropertyBag.Add("QE_ServerDescription", "oracle1");<br />
            boMainPropertyBag.Add("QE_SQLDB", "True");<br />
            boMainPropertyBag.Add("SSO Enabled", "False");<br />
<br />
            //Create a new ConnectionInfo object<br />
            CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();<br />
            //Pass the database properties to a connection info object<br />
            boConnectionInfo.Attributes = boMainPropertyBag;<br />
            //Set the connection kind<br />
            boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;<br />
            //*EDIT* Set the User Name and Password if required.<br />
            boConnectionInfo.UserName = "oracle";<br />
            boConnectionInfo.Password = "oracle";<br />
            //Pass the connection information to the table<br />
            boTable.ConnectionInfo = boConnectionInfo;<br />
<br />
            //Get the Database Tables Collection for your report<br />
            CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;<br />
            boTables = boReportDocument.ReportClientDocument.DatabaseController.Database.Tables;<br />
        <br />
            //For each table in the report:<br />
            // - Set the Table Name properties.<br />
            // - Set the table location in the report to use the new modified table<br />
            boTable.Name = "TABLE1";<br />
            boTable.QualifiedName = "SCHEMA1.TABLE1";<br />
            boTable.Alias = "TABLE1";<br />
<br />
<br />
        <span class="style1">    //<br />
            //THIS LINE IS EXTREMELY SLOW IN ORACLE<br />
            //<br />
            boReportDocument.ReportClientDocument.DatabaseController.SetTableLocation(boTables[0], boTable);<br />
<br /></span>
            boReportDocument.VerifyDatabase();<br />
        <br />
<br />
            return boReportDocument;<br />
      }<br />
}<br />
</code>

I have a very similar issue using Crystal XI, and now more recently XI R2 updated  through SP6.
My database connections for the report utilize ODBC, which is how our application talks to the database, and provides a connection to crystal.
Oracle version is 10g R2, patched on client with 10.3.
I have a common databaes, in which I have views on many tables.  The views depict a collection, and when the report is to run on a different collection I need to change the views on all of the tables (including those in subreports), as well as provide the credentials for connection.
I'm using VStudio2008 C++ with PutLocation( )
First using GetLocation() to find the initial location, then PutLocation to change it
using
IDatabaseTablePtr table;
try {
     strcpy(tableLocation, table->GetLocation());
// make my changes to the table's location (the view)
     table->PutLocation(tableLocation);
catch (_com_error& e) {
// if problems, handle and display errors.
HandleError(NULL, e);
I can have upwards of 20 tables/views in a report, and this can take 1/2 to a full minute to accomplish.
In addition, I optionally provide a user the ability to add criteria and sorting to the report; and perform a table/column collection to show them to the user for seleciton.  This same process is used on all views (including those in subreports), so proper data lists can be provided from the correct views.
Does anyone have a solution for this?
Edited by: BobOfPlanet on Mar 3, 2010 5:58 PM

Similar Messages

  • CR XI & XI R2 - PutLocation() Extremely Slow on Oracle Database

    Hello,
    I have an issue very similar to others posted in this forum, but was asked to start a new thread.
    I'm using Crystal XI and XI R2,updated with SP6.
    I develop using C++ on VS2008 using the crystal COM object.
    I have common database tables, in which I have views on these tables. The views depict a collection, and when the report is to run on a different collection I need to change the views on all of the tables (including those in subreports), as well as provide the credentials for connection.
    I'm using Oracle 10g, and changing a couple of properties using the following sequence for each table to change the login information and the table's current view (each view is a portion of the overall table):
    IDatabaseTablePtr table = tables->GetItem(tableN);          
    table->SetLogOnInfo(TheApp.GetDataSource(), TheApp.GetDatabase(), userID, pwd);
    char tableLocation[201];
    char tempTable[201], newTable[201];
    strcpy(tableLocation, table->GetLocation());
    // make new table name, put into newTable
    table->PutLocation(newTable);
    if (!table->TestConnectivity())
      ShowCrystalRE_Error(job);
    Stepping through in my debugger, the SetLogOnInfo seems very quick, it's the PutLocation( ) that seems to be taking alot of time, several seconds per call, whereas the other calls are as quick as I can step through my code.
    Any help would be greatly appreciated.
    This is extremely fast on SQL Server, only noticeably slow on Oracle.
    My database connections for the report utilize ODBC (The ORACLE installed driver, not the MS driver), which is how our application talks to the database, and provides a connection to crystal.
    I can have upwards of 20 tables/views in a report, and this can take 1/2 to a full minute to accomplish.
    In addition, I optionally provide a user the ability to add criteria and sorting to the report; and perform a table/column collection to show them to the user for seleciton. This same process is used on all views (including those in subreports), so proper data lists can be provided from the correct views.
    Does anyone have a solution for this?
    Edited by: BobOfPlanet on Mar 3, 2010 7:36 PM

    Ludek, thanks for the response.
    I think it might be best if I cite your response and comment on it.
    1) Only CR 10.5 and CR 2008 (12.x) are supported in .NET 2008.
    I'm using VS2008 with C, not .Net.   Everything works fine, including all of the API calls, it is only the performance of this particular call to PutLocation( ) that is slow using Crystal engine XI.
    2) You actually appear to be using the RDC (craxdrt.dll) in .NET, which is also not supported in .NET - any version of .NET. See this article for details and also see this blog.
    See #1 above, not using .NET.
    3) You are using SetLogOnInfo. This method was deprecated in version 9 of Crystal Reports and you now must use the connection properties bag. See this article for more details.
         I'm previewing the article you cited above, iew the Connection Property to see if this will work for me.
    If you somehow manage to overcome the above issues, you will have to also resolve the issue of how and which CR runtime to distribute. RDC? CR for .NET? Both?
          For distribution, I copied the 4 MSM files from the installation to my Installshield Redistributables, select all four to be included in my package, the license is the only one requiring a keycode, which I took as the product code used to do my install (as instructed by Macrovision/Business Objects support several years ago when we first upgraded to Crystal XI and I did our interface rewrite to use the COM object.
    CrystalReports11_RDC_Designtime.msm
    CrystalReports11_RDC_License.msm
    CrystalReports11_RDC_Reportengine.msm
    CrystalReports11_RDC_Runtime.msm
    With the recent upgrade to SP4 (which made Crystal XI into XI R2) and then SP6, I found the following which I've started using since March 2nd in an attempt to resolve the Performance issue outlined in this thread.
    CrystalReports11_5_RDC_Designtime.msm
    CrystalReports11_5_RDC_License.msm
    CrystalReports11_5_RDC_Reportengine.msm
    CrystalReports11_5_RDC_Runtime.msm
    Do you have any further insight while I preview the "Report Designer Component 9" PDF you cited?
    Thanks again in advance,
    Bob

  • Oracle ODBC and DAO extremely slow

    Hi
    I'm using Microsoft DAO 3.6 with an Oracle ODBC connection (version 9.2) in an VB6 application.
    Opening an updateable dynaset is extremely slow, I have measured the performance with Oracle ODBC, Microsoft Oracle ODBC and Microsoft SQL-Server ODBC as follows:
    Oracle ODBC: 1952 ms
    MS Oracle ODBC: 360 ms
    MS SQL-Server ODBC: 40 ms (connection to a MS SQL-Server)
    If I use the SQLpassthrough option the result is about 10 ms in all 3 cases, but the dynaset is readonly !
    The testing program is as follows:
    Option Explicit
    Private Declare Function timeGetTime Lib "winmm.dll" () As Long
    Private Sub Form_Load()
    Dim wsdata As DAO.Workspace
    Dim db As DAO.Database
    Dim dbconn As String
    Dim rs As DAO.Recordset
    Dim start As Long
    dbconn = "ODBC;DSN=AdhocitORA;UID=adhocit;PWD=adhocit;"
    Set wsdata = DBEngine.Workspaces(0)
    Set db = wsdata.OpenDatabase("", False, False, dbconn)
    start = timeGetTime
    Set rs = db.OpenRecordset("Select * from Afdeling", dbOpenDynaset)
    rs.MoveLast
    rs.MoveFirst
    rs.Close
    Set rs = Nothing
    MsgBox "Time " & timeGetTime - start
    End Sub
    Is there any setting in the Oracle ODBC, that need to be adjusted ??
    Erling

    Why are you doing a moveLast followed by a moveFirst? That's going to force Oracle to retrieve all the records in the recordset. If there are a lot of records, you'll probably see a benefit if you increase the prefetch in the Oracle ODBC DSN configuration.
    Justin

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

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

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

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

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

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

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

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

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

  • Macbook Pro 2011 extremely slow wondering if hard drive failure

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

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

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

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

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

  • Macbook Pro extremely slow since Yosemite update. Spinning wheel of death is constantly up.

    Problem description:
    Yosemite is extremely slow on MacBook Pro. Spinning wheel of death is constantly up. every click takes at least 5-15 seconds to effect
    Please help!
    EtreCheck version: 2.0.11 (98)
    Report generated November 21, 2014 at 12:31:09 PM WAST
    Hardware Information: ℹ️
        MacBook Pro (Retina, 15-inch, Early 2013) (Verified)
        MacBook Pro - model: MacBookPro10,1
        1 2.7 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Not upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en0: 802.11 a/b/g/n
    Video Information: ℹ️
        Intel HD Graphics 4000 -
        NVIDIA GeForce GT 650M - VRAM: 1024 MB
            Color LCD spdisplays_2880x1800Retina
            LED Cinema Display 1920 x 1200
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Uptime: 4:31:15
    Disk Information: ℹ️
        APPLE SSD SD512E disk0 : (500.28 GB)
        S.M.A.R.T. Status: Verified
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            surfing (disk1) /  [Startup]: 499.06 GB (103.13 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 499.42 GB Online
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple, Inc. Keyboard Hub
            Primax Electronics Apple Optical USB Mouse
            Apple Inc. Apple Keyboard
        Apple Inc. Apple LED Cinema Display
        Apple Inc. Display iSight
        Apple Inc. Display Audio
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.27 27 - SDK 10.6) Support
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hidhook (9.0 24237.1028877) Support
        [not loaded]    com.parallels.kext.hypervisor (9.0 24237.1028877) Support
        [not loaded]    com.parallels.kext.netbridge (9.0 24237.1028877) Support
        [not loaded]    com.parallels.kext.usbconnect (9.0 24237.1028877) Support
        [not loaded]    com.parallels.kext.vnic (9.0 24237.1028877) Support
            /Applications/Toast 10 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.BluRaySupport (1.1.6) Support
        [not loaded]    com.roxio.TDIXController (1.7) Support
            /System/Library/Extensions
        [not loaded]    com.Huawei.driver.HuaweiDataCardDriver (4.0.8) Support
    Startup Items: ℹ️
        HWNetMgr: Path: /Library/StartupItems/HWNetMgr
        HWPortDetect: Path: /Library/StartupItems/HWPortDetect
        Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [running]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist Support
        [loaded]    com.xrite.device.softwareupdate.plist Support
    Launch Daemons: ℹ️
        [invalid?]    com.adobe.SwitchBoard.plist Support
        [not loaded]    com.gopro.stereomodestatus.plist Support
        [loaded]    com.microsoft.office.licensing.helper.plist Support
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist Support
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist Support
        [running]    com.xrite.device.xrdd.plist Support
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [loaded]    com.adobe.ARM.[...].plist Support
        [running]    com.nchsoftware.expressinvoice.agent.plist Support
        [loaded]    com.parallels.mobile.startgui.launchagent.plist Support
    User Login Items: ℹ️
        Dropbox    Application (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 11.7.700.225 - SDK 10.6 Support
        EPPEX Plugin: Version: 10.0 Support
        AdobePDFViewerNPAPI: Version: 10.1.12 Support
        AdobePDFViewer: Version: 10.1.12 Support
        Flash Player: Version: 11.7.700.225 - SDK 10.6 Mismatch! Adobe recommends 15.0.0.223
        Default Browser: Version: 600 - SDK 10.10
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.3.5 - SDK 10.6 Support
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
        fbplugin_1_0_3: Version: (null) Support
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        BlueHarvest  Support
        GoPro  Support
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            surfing: Disk size: 499.06 GB Disk used: 395.92 GB
        Destinations:
            Friday [Local]
            Total size: 2.00 TB
            Total number of backups: 3
            Oldest backup: 2014-11-20 11:35:19 +0000
            Last backup: 2014-11-21 05:45:30 +0000
            Size of backup disk: Excellent
                Backup size 2.00 TB > (Disk size 499.06 GB X 3)
    Top Processes by CPU: ℹ️
             7%    WindowServer
             3%    firefox
             1%    plugin-container
             1%    SystemUIServer
             0%    fontd
    Top Processes by Memory: ℹ️
        790 MB    firefox
        704 MB    Mail
        670 MB    com.apple.WebKit.WebContent
        344 MB    Image Capture Extension
        344 MB    Finder
    Virtual Memory Information: ℹ️
        4.70 GB    Free RAM
        7.56 GB    Active RAM
        3.34 GB    Inactive RAM
        1.56 GB    Wired RAM
        5.67 GB    Page-ins
        0 B    Page-outs

    HELP!!!! i think i have the same problem... what do i do??
    Problem description:
    Spinning wheel of death- slow unresponsive computer
    EtreCheck version: 2.1.8 (121)
    Report generated March 10, 2015 at 3:47:01 AM WAT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,2
        1 2.5 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 117
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:15:15
    Disk Information: ℹ️
        APPLE HDD HTS545050A7E362 disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 498.88 GB (305.14 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 499.25 GB Online
        HL-DT-ST DVDRW  GS41N 
    USB Information: ℹ️
        CME Xkey
        Akai Professional AMX
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.rane.driver.sl2.10.6 (1.0.0f3) [Click for support]
        [not loaded]    com.rane.driver.sl4.10.6 (1.0.1f3 - SDK 10.6) [Click for support]
        [loaded]    com.serato.usb.kext (2.3.0) [Click for support]
        [not loaded]    jp.co.pioneer.driver.DDJ-SZAudio (1.0.0 - SDK 10.6) [Click for support]
        [not loaded]    jp.co.pioneer.driver.DJM-900SRTAudio (1.0.1 - SDK 10.6) [Click for support]
    Launch Agents: ℹ️
        [loaded]    com.intego.backupassistant.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]
        [running]    com.fitbit.galileod.plist [Click for support]
        [running]    com.intego.BackupAssistant.daemon.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.rane.sl2.daemon.plist [Click for support]
        [running]    com.rane.sl4.daemon.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Android File Transfer Agent    Application  (/Users/[redacted]/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app)
        DDJ-SZ AutoLauncher    Application  (/Applications/Pioneer/DDJ-SZ/DDJ-SZ Setup.app/Contents/Resources/DDJ-SZ AutoLauncher.app)
        Fitbit Connect Menubar Helper    Application  (/Applications/Fitbit Connect.app/Contents/MacOS/Fitbit Connect Menubar Helper.app)
        DJM-900SRT AutoLauncher    Application  (/Applications/Pioneer/DJM-900SRT/DJM-900SRT Setup.app/Contents/Resources/DJM-900SRT AutoLauncher.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        Default Browser: Version: 600 - SDK 10.10
    Audio Plug-ins: ℹ️
        DVCPROHDAudio: Version: 1.3.2
        SeratoVirtualAudioPlugIn: Version: 1.0.11 [Click for support]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        Java  [Click for support]
        SL 2 Audio Control Panel  [Click for support]
        SL 4 Audio Control Panel  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
            13%    coreaudiod
            10%    Live
             6%    WindowServer
             1%    loginwindow
             0%    fontd
    Top Processes by Memory: ℹ️
        228 MB    Live
        94 MB    Finder
        73 MB    Safari
        73 MB    bird
        73 MB    ocspd
    Virtual Memory Information: ℹ️
        121 MB    Free RAM
        1.79 GB    Active RAM
        1.62 GB    Inactive RAM
        713 MB    Wired RAM
        5.87 GB    Page-ins
        44 MB    Page-outs
    Diagnostics Information: ℹ️
        Mar 10, 2015, 03:32:52 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/cloudd_2015-03-10-033252_[reda cted].crash [Click for details]
        Mar 10, 2015, 03:30:24 AM    Self test - passed
        Mar 10, 2015, 02:20:27 AM    /Library/Logs/DiagnosticReports/Soundtrack Pro_2015-03-10-022027_[redacted].cpu_resource.diag [Click for details]
        Mar 10, 2015, 12:26:28 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Serato DJ_2015-03-10-002628_[redacted].crash
        Mar 10, 2015, 12:24:07 AM    /Library/Logs/DiagnosticReports/blued_2015-03-10-002407_[redacted].crash

  • Why is my MacBook Pro extremely slow

    Hi.
    My MacBook Pro has recently began to run extremely slow. I have tried several clean up guides from you tube, but so far nothing has helped.
    My battery is completely dead, so I only run with the charger connected.
    I have done the etreecheck and here are the results:
    Problem description:
    My Mac is running extremely slow
    EtreCheck version: 2.1.6 (109)
    Report generated 17. jan. 2015 kl. 14.51.16 CET
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Early 2011) (Technical Specifications)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
      Battery Health: Replace Now - Cycle count 80
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Time since boot: 7 days 3:2:21
    Disk Information: ℹ️
      TOSHIBA MK5065GSXF disk0 : (500,11 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 498.88 GB (301.81 GB free)
      Encrypted AES-XTS Unlocked
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.9) [Support]
      [not loaded] com.NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.9) [Support]
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMData (1.3.0) [Support]
      [not loaded] com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.0) [Support]
      [not loaded] com.bryton.driver.Rider (1 - SDK 10.6) [Support]
      [not loaded] com.novamedia.driver.IceraUSB_MSD_Bypass (1.3.0) [Support]
      [not loaded] com.zte.driver.cdc_ecm_qmi (1.0.0d1) [Support]
      [not loaded] com.zte.driver.cdc_usb_bus (1.0.0d1) [Support]
    Launch Agents: ℹ️
      [loaded] com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
      [failed] com.adobe.fpsaud.plist [Support] [Details]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [loaded] com.oracle.java.JavaUpdateHelper.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
    User Login Items: ℹ️
      iTunesHelper UNKNOWN Hidden (missing value)
      BrytonBridge2 Program Hidden (/Applications/BrytonBridge2/BrytonBridge2.app)
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
      FlashPlayer-10.6: Version: 16.0.0.257 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 10.1.13 [Support]
      AdobePDFViewer: Version: 10.1.13 [Support]
      Flash Player: Version: 16.0.0.257 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      WidevineMediaOptimizer: Version: 6.0.0.12607 - SDK 10.7 [Support]
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Support]
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
    User internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.2 [Support]
    Safari Extensions: ℹ️
      Norton Internet Security [Cached]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Java  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 498.88 GB Disk used: 197.07 GB
      Destinations:
      Data [Network]
      Total size: 2.00 TB
      Total number of backups: 94
      Oldest backup: 2011-10-03 14:00:42 +0000
      Last backup: 2015-01-17 13:47:50 +0000
      Size of backup disk: Excellent
      Backup size 2.00 TB > (Disk size 498.88 GB X 3)
    Top Processes by CPU: ℹ️
          4% WindowServer
          2% Safari
          1% AppleSpell
          0% configd
          0% notifyd
    Top Processes by Memory: ℹ️
      206 MB iPhoto
      129 MB Mail
      103 MB Safari
      87 MB com.apple.WebKit.WebContent
      77 MB mds_stores
    Virtual Memory Information: ℹ️
      59 MB Free RAM
      1.56 GB Active RAM
      1.52 GB Inactive RAM
      1.03 GB Wired RAM
      3.56 GB Page-ins
      35 MB Page-outs
    Hope someone will be able to help and guide me through a clean up.

    nothing seems out of order, apart from the useless Norton Internet Security.
    though, since you don't have lots of RAM, consider rebooting the Mac everyso often ( "Time since boot: 7 days 3:2:21").
    "  Battery Health: Replace Now": indeed, the battery is dead
    Did it start getting slow since Yosemite upgrade? (the new OS does tend to slow things down)

  • Macbook Pro Extremely Slow - Help please.

    Hi, my Macbook pro has been extremely slow lately. I can't have more than a couple applications open, without it being extremely slow and not functional. Here's an etrechek that I did:
    Problem description:
    Macbook pro (2011) running extremely slow… Not sure why.
    EtreCheck version: 2.1.8 (121)
    Report generated March 28, 2015 at 4:23:14 PM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 1185
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 384 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10 (14A389) - Time since boot: 28 days 0:4:4
    Disk Information: ℹ️
        TOSHIBA MK3265GSXF disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 318.84 GB (84.49 GB free)
                Core Storage: disk0s2 319.21 GB Online
        MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
        Apple Computer, Inc. IR Receiver
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.68) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.68) [Click for support]
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.accountsd.plist
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.bird.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.cmfsyncagent.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.lookupd.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.pluginkit.pkd.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.rcd.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.sbd.plist
        [killed]    com.apple.scopedbookmarkagent.xpc.plist
        [killed]    com.apple.secd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.syncdefaultsd.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        22 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.diagnosticd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.GSSCred.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.installd.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-monthly.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    org.cups.cupsd.plist
        20 processes killed due to memory pressure
    Launch Agents: ℹ️
        [loaded]    com.citrix.AuthManager_Mac.plist [Click for support]
        [running]    com.citrix.ReceiverHelper.plist [Click for support]
        [running]    com.citrix.ServiceRecords.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [failed]    com.rim.BBAlbumArtCacher.plist [Click for support]
        [running]    com.rim.BBLaunchAgent.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [running]    com.fitbit.galileod.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [failed]    com.rim.BBDaemon.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
        [loaded]    com.divx.agent.postinstall.plist [Click for support]
        [failed]    com.facebook.videochat.[redacted].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        Fitbit Connect Menubar Helper    Application  (/Applications/Fitbit Connect.app/Contents/MacOS/Fitbit Connect Menubar Helper.app)
        WDDriveUtilityHelper    Application  (/Applications/WD Drive Utilities.app/Contents/WDDriveUtilityHelper.app)
        WDSecurityHelper    Application  (/Applications/WD Security.app/Contents/WDSecurityHelper.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 10.1.3 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivXBrowserPlugin: Version: 2.2 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 Outdated! Update
        QuickTime Plugin: Version: 7.7.3
        CitrixICAClientPlugIn: Version: 11.7.0 - SDK 10.7 [Click for support]
        SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 10.1.3 [Click for support]
        DirectorShockwave: Version: 11.6.3r633 [Click for support]
    Safari Extensions: ℹ️
        DivX Plus Web Player HTML5 <video>
    3rd Party Preference Panes: ℹ️
        Citrix ShareFile Sync  [Click for support]
        DivX  [Click for support]
        Flash Player  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 318.84 GB Disk used: 234.35 GB
        Destinations:
            Expansion Drive [Local]
            Total size: 0 B
            Total number of backups: 0
            Oldest backup: -
            Last backup: -
            Size of backup disk: Too small
                Backup size 0 B < (Disk used 234.35 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             1%    Fitbit Connect Menubar Helper
             1%    loginwindow
             1%    sysmond
             1%    NotificationCenter
    Top Processes by Memory: ℹ️
        299 MB    loginwindow
        125 MB    Google Chrome
        90 MB    Finder
        30 MB    launchservicesd
        27 MB    WindowServer
    Virtual Memory Information: ℹ️
        295 MB    Free RAM
        777 MB    Active RAM
        697 MB    Inactive RAM
        1.59 GB    Wired RAM
        233.69 GB    Page-ins
        6.21 GB    Page-outs
    Diagnostics Information: ℹ️
        Mar 28, 2015, 03:47:24 PM    /Library/Logs/DiagnosticReports/Terminal_2015-03-28-154724_[redacted].hang
        Mar 28, 2015, 03:45:21 PM    /Library/Logs/DiagnosticReports/???_2015-03-28-154521_[redacted].cpu_resource.d iag [Click for details]

    While 4GB may have been fine with Snow Leopard or Lion, that was 4 years ago.
    If you have never done a clean install consider doing one. Backup, clone, setup a USB installer and wipe the system. Or wait for the new internal 500GB drive (so you are back to using about 50%) to do a clean install and run Setup Assistant. You would be surprised how even just that can feel and run.
    RAM is pretty much a given so when you do, look at putting a 500GB SSD in there as well.

  • Changing database location per Table at runtime is extremely slow in viewer

    We are using the Crystal Reports 2008sp2 Viewer in windows forms .NET
    application to display various reports based on a Pervasive database.  The
    C# code dynamically changes the database table locations at run time.  The
    location needs to be set for each table since the location may be different
    for each table in the report. 
    We have tried to methods to change the location.
    1) Set  the Table.Location property in the ReportDocument.Database.Tables
    collection.
    foreach (Table table in rd.Database.Tables)
    Table.Location = "New Path";
    2) Set the TableLogOnInfo properties.
          TableLogOnInfo logonInfo = new TableLogOnInfo();
          logonInfo = table.LogOnInfo;
          logonInfo.ConnectionInfo.ServerName = dataPath;
          logonInfo.ConnectionInfo.LogonProperties[0] = new NameValuePair2("Data
    File", dataPath);
          logonInfo.ConnectionInfo.LogonProperties[0] = new NameValuePair2("Data
    File Search Path", path);
          table.ApplyLogOnInfo(logonInfo);
    Both of these methods work, but have extremely slow performance.  Both
    methods take between 2 and 3 seconds to execute per table.  Since many of
    our reports have 20 - 30 table references ( sometimes more ), this can add
    an additional 1-2 minutes to the display of a report.
    It seems that the Crystal viewer object is doing some sort of verification
    every time the database location is changed.  We have noted that as the
    location is changed, the database is being accessed by the viewer.  Please
    advise as to how to stop this behavior.  Is there a way to set the location
    without the viewer verifying the change?
    This problem is turning reports that run in the 2008 Report Designer in 3 seconds into reports that take
    many minutes to run.  We will hear nothing but screaming from our 300 customers.
    Thanks for any help.
    Bill Smith

    Hello,
    I have a very similar issue but with Crystal XI and XI R2.
    I'm using Oracle 10g, and changing a couple of properties using the following sequence for each table to change the login information and the table's current view (each view is a portion of the overall table):
    IDatabaseTablePtr table = tables->GetItem(tableN);          
    table->SetLogOnInfo(TheApp.GetDataSource(), TheApp.GetDatabase(), userID, pwd);
    char tableLocation[201];
    char tempTable[201], newTable[201];
    strcpy(tableLocation, table->GetLocation());
    // make new table name, put into newTable
    table->PutLocation(newTable);
    if (!table->TestConnectivity())
      ShowCrystalRE_Error(job);
    Stepping through in my debugger, the SetLogOnInfo seems very quick, it's the PutLocation( ) that seems to be taking alot of time.
    Any help would be greatly appreciated.
    This is extremely fast on SQL Server, only noticeably slow on Oracle.

  • Zooming animation is extremely slow in IE7 and IE8

    Hi,
    version: OracleAS MapViewer Version: Ver1033p5_B080908
    zooming effect is extremely slow in IE7 and IE8 (FF, Safari, Chrome do it fast!)
    thanks,
    Branislav

    I believe you can blame IE's incredibly slow JavaScript engine for this. That's my experience. There's not much the Mapviewer developers can do about that really.
    I had hoped, that IE8 had improved on that, but there hasn't really been any visible differences.
    Jacob

  • Index rebuilding slow in Oracle 10g

    We are trying to build indexes in Oracle 10g and its extremely slow. Any pointers to find out what the problem is and then fixing it?
    I am using a syntax like:
    alter index INDEX_NAME rebuild tablespace TABLESPACE_NAME online compute statistics parallel;
    Should online and parallel together be an issue? (I don't necessarily need to do online, I just removed online and started again, but not sure how it will go)

    user8294047 wrote:
    We are trying to build indexes in Oracle 10g and its extremely slow. Any pointers to find out what the problem is and then fixing it?
    I am using a syntax like:
    alter index INDEX_NAME rebuild tablespace TABLESPACE_NAME online compute statistics parallel;
    Should online and parallel together be an issue? (I don't necessarily need to do online, I just removed online and started again, but not sure how it will go)In addition to the advices you've already got regarding index rebuilding in general:
    If you're using the ONLINE rebuild option it might take a while if there are active transactions on the table, since it waits until no transactions are active to start the rebuild process, the same applies to the completion of the ONLINE operation.
    Of course, you should get an "ORA-00054 resource busy" error when this is the case when using the normal (offline) rebuild option without the ONLINE keyword.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Webfolder access to XML stored in database is extremly slow (XP)

    Hello,
    I made a webfolder to access my XML-documents stored in the database over explorer. My OS is XP. But the access is extremly slow. When I access the documents from a Windows2000 computer the access is fast. Has anybody an idea what could be the reason for this??
    Any help appreciated.
    Anna

    None of them go throug the proxy server. Oracle suggests to install some XP-Patches what I have done. Now the webfolder access is normal. It is an XP ServicePack1 - problem.
    Thanks.
    Anna

Maybe you are looking for

  • Windows 8.1 - Microsoft Office 2013 Program Issues

    After 8.1 Windows and Malicious software updates installed, I cannot open my MS Office 2013 programs without the Error with shortcut coming up and "The item Outlook.exe that the shortcut refers to has been changed or moved, so the shortcut will no lo

  • Dropping videos into movies library but goes to music library on ipad

    I drap and drop home made videos (in .MOV) format into the Library labeled Movies. They show up on movies list okay. When I sync IPAD, movies go to my music library not movies.

  • Error while installing SAP NetWeaver 2004s SR2

    Hi, We are installing SAP NW2004s SR2 on  Linux/Oracle. In the 18th step of "Execute Service"("Create Secure Store"), we are getting an error <i>CJS 30050 - Cannot create the secure store. See output of log file SecureStoreCreate.log. Exception in th

  • Taskflow navigation case to same page.

    In my application, I have a taskflow with a control flow case which navigates to the same fragment. I can't get it to work. If I change the navigation case to navigate to another fragment, it works. Is there a known problem with navigation to the sam

  • Cpu_count

    hi does this parameter (cpu_count) show the number of cpu used by my oracle system or its just the number of cpu it can see on the system? how can i know the number of cpu used by my system?