Create Snapshot is very slow

I run a job every day with OMBPlus to take a snapshot of all our OWB 10gR2 projects. This to easily recover unwanted changes in objects.
Taking the snapshot is extreamly slow. we have 15 projects, approx. 250 mappings in total. taking the snapshot took 14 hours!
The script runs OMBPlus-Code like this:
OMBCREATE SNAPSHOT 'TEST' SET PROPERTIES (DESCRIPTION, TYPE) VALUES ('Name', 'FULL') ADD PROJECT 'MYPROJECT1'
OMBCOMMIT
OMBALTER SNAPSHOT 'TEST' ADD PROJECT 'MYPROJECT2'
OMBCOMMIT
OMBALTER SNAPSHOT 'TEST' ADD PROJECT 'MYPROJECT3'
OMBCOMMIT
in OWB-Version 9.2 this took 30 mins.
I just tested one single project with 80 mappings. On Version 9.2 taking the snapshot lasts 3 mins, in Version 10.2 lasts 33 mins
What is going on ?

Hi beatbisig ,
Pls be sure that your database is NOT using rule base optimizer.
Rule base optimizer can cause such a problem.
Regards, Alex

Similar Messages

  • Personal view is created and working very slow

    i have created a personal view and its takes long time to load suddnley

    Is it consistent now or does it sometimes take longer than others.
    Are there any other performance issues on that list or on other parts of the site
    How slow is slow and how slow do other views render
    Is there anything special about this view?

  • Create mail folder very slow

    When I create a mail folder, or a subfolder in a mailbox, it takes between 1-4 minutes to complete.
    Wasn't always like this, but I did notice a slight increase after upgrading to Mountain Lion. But it seems to be getting much worse.
    Not running any plugins in mail, and everything is up to date system wise.
    Any assistance is appreciated.   

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Site created on iWeb VERY slow, stops browser

    I've heard that some people here will take a look a site and let me know why it loads so slow, and at times stops the browser.
    My site is www.NFLDraftPros.com
    I have the most updated OS. If anyone can look at it and let me know I'd REALLY appreciate it.

    Yep. Looks fine to me. Not super fast, but nothing I would click away from.
    Message was edited by: Timbuctoo

  • While creating Billing, system is very slow..performance issue

    Hi,
    While creating Billing, system is very slow. How can I debugg and provide the analysis where is the exact problem.
    This is showing performance issue.
    Waiting for kind response.
    Best Regards,
    Padhy
    Moderator Message : Duplicate post locked.
    Edited by: Vinod Kumar on May 12, 2011 10:59 AM

    hi,
    Chk the links
    http://help.sap.com/saphelp_nw04/helpdata/en/4a/e71f39488fee0ce10000000a114084/content.htm
    Re: How to create Secondary Index?
    How may secondary indices I can create on the ODS?
    Deletion of ODS index
    Ramesh

  • ADF BC: create is very slow

    Hi
    I have the following scenario:
    An ADF BC application against a Oracle10g DB, aprox 30.000 rows in the DB.
    The client is using uix.
    The server is a standalone OC4J on linux. It has 512M RAM.
    When I want to create a new record via the browser, it is very very slow (20-40 sec.) I'm using the 'immidiate' update mode. However the search facility is fast, even if I lookup all the (30.000)rows. I use the same view object for both.
    Any ideas why the create function is slow, please.

    And this one as well
    ADF Mobile: Android performance is very slow - when will this be fixed?

  • Why reports created in 8.5 and saved in XI.5 are very slow?

    Hello,
    Here is my problem :
    I worked with Crystal Report 8.5 and my reports were speedy.
    I saved a report in a new version (Crystal XI.5) and the report generation is very slow.
    If i saved the same report (saved in 8.5) in the version XI (not the XI.5) the report is speedy.
    If i saved the report from XI.5 to XI there is no change (report slow).
    Have you ever seen this problem?
    The database used is Advantage Database Server 8.1.0.26
    Thanks for the help.
    Mickael

    Hi Mariusz,
    It is expected that the reports will run a bit slow in the newer version as the entire report engine has undergone chnage after version 8.5.
    With the new version, the database security has been enforced a lot more as compared to version 8.5. Along with this, the SQL generation process has also undergone change and the SQL which is now generated is much more optimized.
    Also, there are a lot of new features in terms of formatting the report, which can cause the delay in showing you the first page of the report. It may not just be the database access that is taking time.
    As suggested earlier, if you find the query generated in 8.5 was fetching records faster, you can surely create a command object in XI R2 to check if you get the same speed of data retrival.
    Regards,
    Abhishek Jain.

  • Creating ImageIcon from Image is very slow

    Hi I have a program which reads a number of files which may contain (amongst other things) image data in various formats such as JPG.I read scale this down into an image object fine, and then I want to display a small version of it on screen so I put the scale dimage into an ImageIcon which i display later using a JLabel.
    Anyway it runs very slow , the funny thing is using JProbe Ive tracked the problem down to creation of the ImageIcon constructor, the actual thumbnail image creation is very quick.
    Why does ImageIcon take so long or is there a simple way of displaying the image in a Swing Application
    without using JLabel.
    BufferedImage bi = ImageIO.read(new DataInputStream(new ByteArrayInputStream(imageData)));
    Image thumbnaiImage = image.getScaledInstance(20,20Image.SCALE_FAST);
    ImageIcon thumbnail     = new ImageIcon(thumbnailImage);

    If you're not too picky about the image quality (and I see you're using SCALE_FAST), you can set the
    source subsampling on your ImageReadParam so that you never construct the large image: you start
    with the thumbnail.
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class AllThumbs {
        public static void main(String[] args) throws MalformedURLException {
            String prefix = "http://www3.us.porsche.com/english/usa/carreragt/modelinformation/experience/desktop/bilder/icon";
            String suffix = "_800x600.jpg";
            JPanel p = new JPanel(new GridLayout(0,3));
            for(int i=1; i<9; ++i) {
                try {
                    p.add(getThumb(new URL(prefix + i + suffix), 200, 150));
                } catch (IOException e) {
                    System.out.println(e.getMessage());
            JFrame f = new JFrame("AllThumbs");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(p);
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
        public static JLabel getThumb(URL url, int maxWidth, int maxHeight) throws IOException {
            String suffix = getSuffix(url);
            Iterator readers = ImageIO.getImageReadersBySuffix(suffix);
            if (!readers.hasNext())
                throw new IOException("No reader for suffix " + suffix);
            ImageReader reader = (ImageReader) readers.next();
            reader.setInput(ImageIO.createImageInputStream(url.openStream()), true, true);
            int w = reader.getWidth(0), h = reader.getHeight(0);
            int subsampling = Math.max(1, Math.max(w/maxWidth, h/maxHeight));
            ImageReadParam param = reader.getDefaultReadParam();
            param.setSourceSubsampling(subsampling, subsampling, 0, 0);
            BufferedImage image = reader.read(0, param);
            String path = url.getPath();
            String text = path.substring(1+path.lastIndexOf('/'));
            JLabel label = new JLabel(text, new ImageIcon(image), SwingConstants.CENTER);
            label.setHorizontalTextPosition(SwingConstants.CENTER);
            label.setVerticalTextPosition(SwingConstants.BOTTOM);
            label.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            return label;
        public static String getSuffix(URL url) throws IOException {
            String path = url.getPath();
            int dot = path.lastIndexOf('.');
            if (dot == -1)
                throw new IOException("No . in " + path);
            return path.substring(1+dot);
    }It is also possible for there to be thumbnail images stored in an image file. (These thumbnails
    don't even have to be related to the main image.) ImageIO has methods to read these directly,
    so if you have control over your image files you can create them with thumbnails in place.

  • SHADOW_IMPORT_UPG1 is very very slow, no log files are created

    Hi all
    We are now doing our production upgrade, during the SHADOW_IMPORT_UPG1 phase system is very slow
    no log files are created in the /usr/sap/put/log directory.
    only three files are growing in /usr/sap/tmp directory
    orar3p> ls -lrt
    total 219176
    -rw-rw-rw-   1 r3padm     sapsys        2693 Aug 15 18:42 UCMIG_DE.ECO
    -rw-rw-rw-   1 r3padm     sapsys        2374 Aug 15 18:42 R3trans.out
    -rw-rw-rw-   1 r3padm     sapsys        2685 Aug 15 18:46 ADDON_TR.ECO
    -rw-rw-rw-   1 r3padm     sapsys         726 Aug 15 20:04 crshdusr.log
    -rw-rw-rw-   1 r3padm     sapsys        3915 Aug 15 21:53 EU_IMTSK.ECO
    -rw-rw-r--   1 r3padm     sapsys         257 Aug 15 22:09 SAPKKLFRN18.R3P
    -rw-rw-r--   1 r3padm     sapsys         257 Aug 15 22:09 SAPKKLPTN18.R3P
    -rw-rw-r--   1 r3padm     sapsys         257 Aug 15 22:09 SAPKKLESN18.R3P
    -rw-rw-r--   1 r3padm     sapsys     36433272 Aug 15 23:44 SAPKLESN18.R3P
    -rw-rw-r--   1 r3padm     sapsys     36807577 Aug 15 23:44 SAPKLFRN18.R3P
    -rw-rw-r--   1 r3padm     sapsys     35372350 Aug 15 23:44 SAPKLPTN18.R3P
    orar3p> date
    Fri Aug 15 23:44:54 PDT 2008
    Can anyone help what to do
    Thanks
    Senthil

    Hello,
    did you discover what the cause was for this phase running so slow? And  how long did it take to complete in the end?
    We are currently running an upgrade of our Development system and have struck the same issue.
    I killed the upgrade after the phase had been running for 4 hours and restarted it, but it looks like it is still going to run for a long time.
    Regards....John

  • MacBook suddenly became very slow. Have tried other posters' suggestions.

    Hi there,
    My MacBook recently, rather unexpectedly, started running very slow. There is no particular application that is running slowly, but rather, the system as a whole. I think the problem began while I was browsing the internet and doing nothing suspicious in particular. I have been doing a bit of reading on these threads, but have been unable to solve my problem so far. I have presented below what I have tried so far.
    Very many thanks for your help,
    Aaron
    1) Reset my System Management Controller.
    2) Repaired my Disk using Disk Utility in Recovery mode.
    3) Backed up my computer.
    4) Using instructions outlined by user ‘Linc Davis’ in thread https://discussions.apple.com/thread/5437363?tstart=0. I will post the results as a comment below this question.

    (apologies for the long log list… I included about 50 lines as suggested)
    Results from Diagnostic Procedure using “Terminal”
    Mar 25 10:35:33 aaronscomputer2 kernel[0] <Debug>: nspace-handler-unblock: did not find token 320
    Mar 25 19:36:00 aaronscomputer2 kernel[0] <Debug>: nspace-handler-unblock: did not find token 1360
    Mar 31 00:58:28 aaronscomputer2 kernel[0] <Debug>: nspace-handler-update: did not find token 25548
    --- last message repeated 2 times ---
    Mar 31 00:58:48 aaronscomputer2 kernel[0] <Debug>: nspace-handler-unblock: did not find token 25548
    Mar 31 01:01:45 aaronscomputer2 kernel[0] <Debug>: nspace-handler-unblock: did not find token 25605
    Mar 31 08:29:08 aaronscomputer2 kernel[0] <Debug>: nspace-handler-unblock: did not find token 919
    “Activity Monitor”
    - % CPU (highest) = WindowServer (2.5%), although this varies greatly and is never exceedingly high.
    - % User = 1.93%
    - % System = 1.66%
    - % Idle = 96.60%
    - Memory (highest) = kernel_task (785.7MB)
    - Memory Used = 5.11 GB / 8.00 GB.
    - Memory Page Outs = I don’t see this statistic.
    - Memory Swap Used = 0 bytes.
    - Reads in/sec = 15
    - Writes out/sec = 2
    Log List from “Console”
    2014-03-31 2:11:33.000 PM kernel[0]: nspace-handler-set-snapshot-time: 1396296695
    2014-03-31 2:11:33.445 PM com.apple.mtmd[37]: Set snapshot time: 2014-03-31 14:11:35 -0600 (current time: 2014-03-31 14:11:33 -0600)
    2014-03-31 2:12:19.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=497[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    2014-03-31 2:12:26.862 PM GoogleSoftwareUpdateDaemon[498]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
              com.google.Keystone.Daemon.UpdateEngine: 2 connection(s)
              com.google.Keystone.Daemon.Administration: 0 connection(s)
    2014-03-31 2:12:26.872 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateEngine updateProductID:] KSUpdateEngine updating product ID: "com.google.Keystone"
    2014-03-31 2:12:27.467 PM GoogleSoftwareUpdateDaemon[498]: -[KSCheckAction performAction] KSCheckAction checking 1 ticket(s).
    2014-03-31 2:12:28.569 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction starting update check for ticket(s): {(
              <KSTicket:0x383790
                        productID=com.google.Keystone
                        version=1.1.0.3659
                        xc=<KSPathExistenceChecker:0x383c70 path=/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/>
                        serverType=Omaha
                        url=https://tools.google.com/service/update2
                        creationDate=2011-07-04 16:55:56
              >
    Using server: <KSOmahaServer:0x2085310
              engine=<KSDaemonUpdateEngine:0x379570>
              params={
                        EngineVersion = "1.1.0.3659";
                        ActivesInfo = {
                                  "com.google.GmailNotifier" = {
                                            LastRollCallPingDate = 2011-01-14 08:00:01 +0000;
                                  "com.google.Chrome" = {
                                            LastActiveDate = 2014-03-16 20:40:48 +0000;
                                            LastActivePingDate = 2014-03-17 07:00:00 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.google.GoogleDrive" = {
                                            LastActiveDate = 2014-02-13 18:22:12 +0000;
                                            LastActivePingDate = 2014-02-14 08:00:06 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.Google.GoogleEarthPlugin.intel" = {
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.google.Keystone" = {
                                            LastActiveDate = 2014-03-31 20:12:25 +0000;
                                            LastActivePingDate = 2014-03-31 07:00:01 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.Google.GoogleEarthPlus" = {
                                            LastRollCallPingDate = 2011-05-28 07:00:00 +0000;
                                  "com.google.talkplugin" = {
                                            LastActiveDate = 2014-03-31 17:39:31 +0000;
                                            LastActivePingDate = 2014-03-29 07:00:00 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:00 +0000;
                                  "com.Google.GoogleEarthPlus.intel" = {
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                        UserInitiated = 0;
                        IsSystem = 1;
                        OmahaOSVersion = "10.9.2_i486";
                        Identity = KeystoneDaemon;
                        AllowedSubdomains = (
                                  ".omaha.sandbox.google.com",
                                  ".tools.google.com",
                                  ".www.google.com",
                                  ".corp.google.com"
    >
    2014-03-31 2:12:28.571 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction running KSServerUpdateRequest: <KSOmahaServerUpdateRequest:0x208b830
              server=<KSOmahaServer:0x2085310>
              url="https://tools.google.com/service/update2"
              runningFetchers=0
              tickets=1
              activeTickets=0
              rollCallTickets=0
              body=
                        <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
                        <o:gupdate xmlns:o="http://www.google.com/update2/request" protocol="2.0" version="KeystoneDaemon-1.1.0.3659" ismachine="1">
                            <o:os platform="mac" version="MacOSX" sp="10.9.2_i486"></o:os>
                            <o:app appid="com.google.Keystone" version="1.1.0.3659" lang="en-us" installage="1001" brand="GGLG">
                                <o:updatecheck></o:updatecheck>
                            </o:app>
                        </o:gupdate>
    >
    2014-03-31 2:12:32.630 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction(KSServerUpdateRequestDelegate) serverRequest:fetchedWithResponse:] KSUpdateCheckAction received KSServerUpdateResponse: <KSOmahaServerUpdateResponse:0x3867c0
              server=<KSOmahaServer:0x2085310>
              url="https://tools.google.com/service/update2"
              status=200
              tickets=1
              activeTickets=0
              rollCallTickets=0
              data=
                        <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
                        <gupdate xmlns="http://www.google.com/update2/response" protocol="2.0" server="prod">
                            <daystart elapsed_days="2646" elapsed_seconds="47552"></daystart>
                            <app appid="com.google.Keystone" status="ok">
                                <updatecheck status="noupdate"></updatecheck>
                            </app>
                        </gupdate>
    >
    2014-03-31 2:12:34.305 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction(PrivateMethods) finishAction] KSUpdateCheckAction found updates: {( )}
    2014-03-31 2:12:34.805 PM GoogleSoftwareUpdateDaemon[498]: -[KSPrefetchAction performAction] KSPrefetchAction no updates to prefetch.
    2014-03-31 2:12:34.807 PM GoogleSoftwareUpdateDaemon[498]: -[KSMultiUpdateAction performAction] KSSilentUpdateAction had no updates to apply.
    2014-03-31 2:12:34.808 PM GoogleSoftwareUpdateDaemon[498]: -[KSMultiUpdateAction performAction] KSPromptAction had no updates to apply.
    2014-03-31 2:12:34.811 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateEngine(PrivateMethods) updateFinish] KSUpdateEngine update processing complete.
    2014-03-31 2:12:34.819 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateEngine updateAllProducts] KSUpdateEngine updating all installed products.
    2014-03-31 2:12:34.821 PM GoogleSoftwareUpdateDaemon[498]: -[KSCheckAction performAction] KSCheckAction checking 2 ticket(s).
    2014-03-31 2:12:36.471 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction starting update check for ticket(s): {(
              <KSTicket:0x208b810
                        productID=com.google.talkplugin
                        version=5.2.4.18058
                        xc=<KSPathExistenceChecker:0x2085970 path=/Library/Application Support/Google/GoogleTalkPlugin.app>
                        serverType=Omaha
                        url=https://tools.google.com/service/update2
                        creationDate=2012-07-23 02:01:27
              >,
              <KSTicket:0x2083790
                        productID=com.google.Keystone
                        version=1.1.0.3659
                        xc=<KSPathExistenceChecker:0x2089af0 path=/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/>
                        serverType=Omaha
                        url=https://tools.google.com/service/update2
                        creationDate=2011-07-04 16:55:56
              >
    Using server: <KSOmahaServer:0x38e600
              engine=<KSDaemonUpdateEngine:0x379570>
              params={
                        EngineVersion = "1.1.0.3659";
                        ActivesInfo = {
                                  "com.google.GmailNotifier" = {
                                            LastRollCallPingDate = 2011-01-14 08:00:01 +0000;
                                  "com.google.Chrome" = {
                                            LastActiveDate = 2014-03-16 20:40:48 +0000;
                                            LastActivePingDate = 2014-03-17 07:00:00 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.google.GoogleDrive" = {
                                            LastActiveDate = 2014-02-13 18:22:12 +0000;
                                            LastActivePingDate = 2014-02-14 08:00:06 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.Google.GoogleEarthPlugin.intel" = {
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.google.Keystone" = {
                                            LastActiveDate = 2014-03-31 20:12:25 +0000;
                                            LastActivePingDate = 2014-03-31 07:00:01 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                                  "com.Google.GoogleEarthPlus" = {
                                            LastRollCallPingDate = 2011-05-28 07:00:00 +0000;
                                  "com.google.talkplugin" = {
                                            LastActiveDate = 2014-03-31 17:39:31 +0000;
                                            LastActivePingDate = 2014-03-29 07:00:00 +0000;
                                            LastRollCallPingDate = 2014-03-31 07:00:00 +0000;
                                  "com.Google.GoogleEarthPlus.intel" = {
                                            LastRollCallPingDate = 2014-03-31 07:00:01 +0000;
                        UserInitiated = 0;
                        IsSystem = 1;
                        OmahaOSVersion = "10.9.2_i486";
                        Identity = KeystoneDaemon;
                        AllowedSubdomains = (
                                  ".omaha.sandbox.google.com",
                                  ".tools.google.com",
                                  ".www.google.com",
                                  ".corp.google.com"
    >
    2014-03-31 2:12:36.472 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction running KSServerUpdateRequest: <KSOmahaServerUpdateRequest:0x38af00
              server=<KSOmahaServer:0x38e600>
              url="https://tools.google.com/service/update2"
              runningFetchers=0
              tickets=2
              activeTickets=1
              rollCallTickets=0
              body=
                        <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
                        <o:gupdate xmlns:o="http://www.google.com/update2/request" protocol="2.0" version="KeystoneDaemon-1.1.0.3659" ismachine="1">
                            <o:os platform="mac" version="MacOSX" sp="10.9.2_i486"></o:os>
                            <o:app appid="com.google.talkplugin" version="5.2.4.18058" lang="en-us" installage="616" brand="GGLG">
                                <o:ping a="2"></o:ping>
                                <o:updatecheck></o:updatecheck>
                            </o:app>
                            <o:app appid="com.google.Keystone" version="1.1.0.3659" lang="en-us" installage="1001" brand="GGLG">
                                <o:updatecheck></o:updatecheck>
                            </o:app>
                        </o:gupdate>
    >
    2014-03-31 2:12:38.067 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction(KSServerUpdateRequestDelegate) serverRequest:fetchedWithResponse:] KSUpdateCheckAction received KSServerUpdateResponse: <KSOmahaServerUpdateResponse:0x385990
              server=<KSOmahaServer:0x38e600>
              url="https://tools.google.com/service/update2"
              status=200
              tickets=2
              activeTickets=1
              rollCallTickets=0
              data=
                        <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
                        <gupdate xmlns="http://www.google.com/update2/response" protocol="2.0" server="prod">
                            <daystart elapsed_days="2646" elapsed_seconds="47557"></daystart>
                            <app appid="com.google.talkplugin" status="ok">
                                <ping status="ok"></ping>
                                <updatecheck status="noupdate"></updatecheck>
                            </app>
                            <app appid="com.google.Keystone" status="ok">
                                <updatecheck status="noupdate"></updatecheck>
                            </app>
                        </gupdate>
    >
    2014-03-31 2:12:38.072 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateCheckAction(PrivateMethods) finishAction] KSUpdateCheckAction found updates: {( )}
    2014-03-31 2:12:38.602 PM GoogleSoftwareUpdateDaemon[498]: -[KSPrefetchAction performAction] KSPrefetchAction no updates to prefetch.
    2014-03-31 2:12:38.604 PM GoogleSoftwareUpdateDaemon[498]: -[KSMultiUpdateAction performAction] KSSilentUpdateAction had no updates to apply.
    2014-03-31 2:12:38.605 PM GoogleSoftwareUpdateDaemon[498]: -[KSMultiUpdateAction performAction] KSPromptAction had no updates to apply.
    2014-03-31 2:12:38.607 PM GoogleSoftwareUpdateDaemon[498]: -[KSUpdateEngine(PrivateMethods) updateFinish] KSUpdateEngine update processing complete.
    2014-03-31 2:12:45.046 PM GoogleSoftwareUpdateDaemon[498]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
              com.google.Keystone.Daemon.UpdateEngine: 1 connection(s)
              com.google.Keystone.Daemon.Administration: 0 connection(s)
    2014-03-31 2:12:56.933 PM GoogleSoftwareUpdateDaemon[498]: -[KeystoneDaemon main] GoogleSoftwareUpdateDaemon inactive, shutdown.
    2014-03-31 2:17:32.499 PM xpcproxy[512]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2014-03-31 2:17:50.376 PM com.apple.SecurityServer[14]: Session 100023 created
    2014-03-31 2:22:55.161 PM WindowServer[97]: disable_update_timeout: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2014-03-31 2:22:58.789 PM WindowServer[97]: common_reenable_update: UI updates were finally reenabled by application "Microsoft Word" after 4.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-31 2:23:06.604 PM WindowServer[97]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    2014-03-31 2:23:20.604 PM WindowServer[97]: disable_update_likely_unbalanced: UI updates still disabled by application "Safari" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2014-03-31 2:23:25.875 PM WindowServer[97]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 20.27 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-31 2:23:25.923 PM Safari[345]: void CGSUpdateManager::log() const: conn 0x148d7: spurious update.
    2014-03-31 2:25:01.211 PM mDNSResponder[39]:  62: Could not write data to clientPID[345](Safari)  because of error - aborting connection
    2014-03-31 2:25:01.211 PM mDNSResponder[39]:  62: DNSServiceGetAddrInfo      v4v6 clients1.google.com. PID[345](Safari)
    2014-03-31 2:37:54.909 PM WindowServer[97]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    2014-03-31 2:38:01.353 PM WindowServer[97]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 7.44 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-31 2:40:58.862 PM mDNSResponder[39]:  44: Could not write data to clientPID[345](Safari)  because of error - aborting connection
    2014-03-31 2:40:58.862 PM mDNSResponder[39]:  44: DNSServiceGetAddrInfo      v4v6 clients1.google.com. PID[345](Safari)
    2014-03-31 2:41:41.247 PM com.apple.WebKit.Networking[348]: CFNetwork SSLHandshake failed (-9806)
    2014-03-31 2:47:21.677 PM com.apple.backupd[551]: Starting manual backup
    2014-03-31 2:47:21.880 PM com.apple.backupd[551]: Error -35 while resolving alias to backup target
    2014-03-31 2:47:22.303 PM com.apple.backupd[551]: Backup failed with error 18: The backup disk could not be found.
    2014-03-31 2:47:22.000 PM kernel[0]: USBMSC Identifier (non-unique): 1f00c7029e4b21024b000000 0x59f 0x101d 0x1, 2
    2014-03-31 2:48:05.000 PM kernel[0]: hfs: mounted Aaron Wynn's Hard Drive on device disk1s3
    2014-03-31 2:48:07.994 PM com.apple.SecurityServer[14]: Session 100003 created
    2014-03-31 2:48:21.340 PM com.apple.backupd[551]: Starting manual backup
    2014-03-31 2:48:29.903 PM com.apple.backupd[551]: Backing up to /dev/disk1s3: /Volumes/Aaron Wynn's Hard Drive/Backups.backupdb
    2014-03-31 2:48:32.083 PM com.apple.backupd[551]: Event store UUIDs don't match for volume: Macintosh HD
    2014-03-31 2:48:48.957 PM com.apple.backupd[551]: Deep event scan at path:/ reason:must scan subdirs|new event db|
    2014-03-31 2:48:50.330 PM com.apple.IconServicesAgent[233]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.a pple.appkit.xpc.openAndSavePanelService.xpc/
    2014-03-31 2:49:37.136 PM com.apple.appkit.xpc.openAndSavePanelService[573]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2014-03-31 2:49:37.147 PM com.apple.appkit.xpc.openAndSavePanelService[573]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2014-03-31 2:49:37.985 PM com.apple.appkit.xpc.openAndSavePanelService[573]: Bogus event received by listener connection:
    <error: 0x7fff727ccb50> { count = 1, contents =
              "XPCErrorDescription" => <string: 0x7fff727cce60> { length = 18, contents = "Connection invalid" }
    2014-03-31 2:49:41.335 PM WindowServer[97]: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
    2014-03-31 2:49:41.720 PM WindowServer[97]: common_reenable_update: UI updates were finally reenabled by application "com.apple.appkit.xpc.openAndSav" after 1.39 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-31 2:49:45.330 PM TextEdit[571]: view service marshal for <NSRemoteView: 0x7fcefbd05390> failed to forget accessibility connection due to Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from this process.) UserInfo=0x608000264a40 {NSDebugDescription=The connection was invalidated from this process.}
    timestamp: 14:49:45.328 Monday 31 March 2014
    process/thread/queue: TextEdit (571) / 0x10953e000 / com.apple.NSXPCConnection.user.endpoint
    code: line 2972 of /SourceCache/ViewBridge/ViewBridge-46.2/NSRemoteView.m in __57-[NSRemoteView viewServiceMarshalProxy:withErrorHandler:]_block_invoke
    domain: communications-failure
    2014-03-31 2:49:45.332 PM com.apple.appkit.xpc.openAndSavePanelService[573]: remote view marshal proxy failed to forward event to remote due to Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7ff2f9f8a6d0 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.}
    timestamp: 14:49:45.332 Monday 31 March 2014
    process/thread/queue: com.apple.appkit.xpc.openAndSavePanelService (573) / 0x106587000 / com.apple.NSXPCConnection.user.571
    code: line 1006 of /SourceCache/ViewBridge/ViewBridge-46.2/NSViewServiceMarshal.m in __59-[NSViewServiceMarshal remoteViewMarshal:withErrorHandler:]_block_invoke
    domain: communications-failure
    2014-03-31 2:49:45.333 PM com.apple.appkit.xpc.openAndSavePanelService[573]: remote view marshal proxy failed to tell remote whether we have a first responder due to Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from the other process or the connection name was invalid.) UserInfo=0x7ff2f9f8a6d0 {NSDebugDescription=The connection was invalidated from the other process or the connection name was invalid.}
    timestamp: 14:49:45.333 Monday 31 March 2014
    process/thread/queue: com.apple.appkit.xpc.openAndSavePanelService (573) / 0x106587000 / com.apple.NSXPCConnection.user.571
    code: line 1006 of /SourceCache/ViewBridge/ViewBridge-46.2/NSViewServiceMarshal.m in __59-[NSViewServiceMarshal remoteViewMarshal:withErrorHandler:]_block_invoke
    domain: communications-failure
    2014-03-31 2:49:49.480 PM WindowServer[97]: disable_update_timeout: UI updates were forcibly disabled by application "TextEdit" for over 1.00 seconds. Server has re-enabled them.
    2014-03-31 2:49:51.734 PM WindowServer[97]: common_reenable_update: UI updates were finally reenabled by application "TextEdit" after 3.25 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-31 2:50:39.212 PM TextEdit[571]: Couldn't contact spell checker for U.S. English
    2014-03-31 2:50:40.483 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:50:40.484 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:50:40.484 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:50:40.485 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:50:40.485 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:50:42.322 PM revisiond[28]: sqlite3_step failed: 11 database disk image is malformed
    2014-03-31 2:50:42.322 PM revisiond[28]: _CSInsertChunk failed, i:0, count:1
    2014-03-31 2:50:42.322 PM revisiond[28]: _CSStoreChunks failed, batchIndex:0, batchCount:1
    2014-03-31 2:50:42.322 PM revisiond[28]: CSrabin_chunk_stream failed
    2014-03-31 2:50:42.322 PM revisiond[28]: CKCreateStoredFile failed for "/.vol/16777218/2/.DocumentRevisions-V100/PerUID/501/e4/com.apple.documentVersi ons/63490ED2-C8F5-407F-BD97-DFA80FB9D264.rtf"
    2014-03-31 2:51:12.225 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:51:12.226 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:51:12.226 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:51:12.227 PM AppleSpell[310]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    2014-03-31 2:56:26.141 PM com.apple.SecurityServer[14]: Killing auth hosts
    2014-03-31 2:56:26.141 PM com.apple.SecurityServer[14]: Session 100023 destroyed
    2014-03-31 2:56:26.190 PM com.apple.SecurityServer[14]: Session 100024 created
    2014-03-31 2:59:10.569 PM xpcproxy[597]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2014-03-31 2:59:40.542 PM Console[598]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.

  • My MacBook Pro is very slow booting up (1 minute plus) since I installed Mavericks. What can I do to speed up?

    My MacBook Pro is very slow booting up (1 minute plus) since I installed Mavericks. What can I do to speed up?

    Hi John,
    I posted the question.  Here is my system log result:
    Mar  3 11:29:52 localhost bootlog[0]: BOOT_TIME 1393864192 0
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.appstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
              Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.authd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.bookstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.eventmonitor" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.install" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.iokit.power" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.mail" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.MessageTracer" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.performance" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 localhost syslogd[18]: Configuration Notice:
              ASL Module "com.apple.securityd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar  3 11:30:05 --- last message repeated 6 times ---
    Mar  3 11:30:05 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Mar  3 11:30:05 localhost kernel[0]: PMAP: PCID enabled
    Mar  3 11:30:05 localhost kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Mar  3 11:30:05 localhost kernel[0]: vm_page_bootstrap: 1983425 free pages and 97343 wired pages
    Mar  3 11:30:05 localhost kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    Mar  3 11:30:05 localhost kernel[0]: zone leak detection enabled
    Mar  3 11:30:05 localhost kernel[0]: "vm_compressor_mode" is 4
    Mar  3 11:30:05 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar  3 11:30:05 localhost kernel[0]: standard background quantum is 2500 us
    Mar  3 11:30:05 localhost kernel[0]: mig_table_max_displ = 74
    Mar  3 11:30:05 localhost kernel[0]: TSC Deadline Timer supported and enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    Mar  3 11:30:05 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    Mar  3 11:30:05 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar  3 11:30:05 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar  3 11:30:05 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar  3 11:30:05 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar  3 11:30:05 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar  3 11:30:05 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar  3 11:30:05 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar  3 11:30:05 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar  3 11:30:05 localhost kernel[0]: MAC Framework successfully initialized
    Mar  3 11:30:05 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar  3 11:30:05 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Mar  3 11:30:05 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Mar  3 11:30:05 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Mar  3 11:30:05 localhost kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Mar  3 11:30:05 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 6689
    Mar  3 11:30:05 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    Mar  3 11:29:54 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar  3 11:30:05 localhost kernel[0]: [ PCI configuration begin ]
    Mar  3 11:30:05 localhost kernel[0]: console relocated to 0xf90010000
    Mar  3 11:30:05 localhost kernel[0]: [ PCI configuration end, bridges 12, devices 18 ]
    Mar  3 11:30:05 localhost kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    Mar  3 11:29:54 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Mar  3 11:30:05 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    Mar  3 11:30:05 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar  3 11:30:05 localhost kernel[0]: rooting via boot-uuid from /chosen: 278FA782-15F5-3827-9A81-43DEB73FA45E
    Mar  3 11:30:05 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar  3 11:30:05 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar  3 11:30:05 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar  3 11:30:05 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Hitachi HTS545050B9A302 Media/IOGUIDPartitionScheme/Customer@2
    Mar  3 11:30:05 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Mar  3 11:30:05 localhost kernel[0]: BTCOEXIST off
    Mar  3 11:30:05 localhost kernel[0]: BRCM tunables:
    Mar  3 11:30:05 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Mar  3 11:30:05 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffed498ea; max speed s800.
    Mar  3 11:30:05 localhost kernel[0]: hfs: mounted Macintosh HD on device root_device
    Mar  3 11:30:05 localhost kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar  3 11:30:05 localhost kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    Mar  3 11:30:13 localhost kernel[0]: VM Swap Subsystem is ON
    Mar  3 11:30:14 localhost hidd[50]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Mar  3 11:30:14 localhost hidd[50]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Mar  3 11:30:14 localhost com.apple.SecurityServer[15]: Session 100000 created
    Mar  3 11:30:14 localhost distnoted[68]: # distnote server daemon  absolute time: 22.597465450   civil time: Mon Mar  3 11:30:14 2014   pid: 68 uid: 0  root: yes
    Mar  3 11:30:14 localhost distnoted[68]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar  3 11:30:15 localhost kdc[48]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    Mar  3 11:30:15 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc[48]): Exited with code: 1
    Mar  3 11:30:15 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc): Throttling respawn: Will start in 6 seconds
    Mar  3 11:30:15 localhost kernel[0]: AGC: 3.4.35, HW version=1.9.23, flags:0, features:20600
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    Mar  3 11:30:15 localhost kernel[0]: Previous Shutdown Cause: 5
    Mar  3 11:30:15 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Mar  3 11:30:15 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Mar  3 11:30:15 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    Mar  3 11:30:15 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xd000 ****
    Mar  3 11:30:15 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xd000 ****
    Mar  3 11:30:16 localhost com.apple.SecurityServer[15]: Entering service
    Mar  3 11:30:16 localhost aosnotifyd[66]: aosnotifyd has been launched
    Mar  3 11:30:16 localhost aosnotifyd[66]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar  3 11:30:16 localhost awacsd[63]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Mar  3 11:30:16 localhost awacsd[63]: InnerStore CopyAllZones: no info in Dynamic Store
    Mar  3 11:30:16 localhost UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar  3 11:30:16 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar  3 11:30:16 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Mar  3 11:30:16 localhost mDNSResponder[41]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    Mar  3 11:30:16 localhost com.apple.usbmuxd[23]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    Mar  3 11:30:16 localhost systemkeychain[85]: done file: /var/run/systemkeychaincheck.done
    Mar  3 11:30:16 localhost mDNSResponder[41]: D2D_IPC: Loaded
    Mar  3 11:30:16 localhost mDNSResponder[41]: D2DInitialize succeeded
    Mar  3 11:30:16 localhost mDNSResponder[41]:   4: Listening for incoming Unix Domain Socket client requests
    Mar  3 11:30:16 localhost networkd[100]: networkd.100 built Aug 24 2013 22:08:46
    Mar  3 11:30:16 localhost kernel[0]: Waiting for DSMOS...
    Mar  3 11:30:16 localhost UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar  3 11:30:16 localhost digest-service[102]: label: default
    Mar  3 11:30:16 localhost digest-service[102]:           dbname: od:/Local/Default
    Mar  3 11:30:16 localhost digest-service[102]:           mkey_file: /var/db/krb5kdc/m-key
    Mar  3 11:30:16 localhost digest-service[102]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar  3 11:30:17 localhost kernel[0]: createVirtIf(): ifRole = 1
    Mar  3 11:30:17 localhost kernel[0]: in func createVirtualInterface ifRole = 1
    Mar  3 11:30:17 localhost airportd[67]: airportdProcessDLILEvent: en1 attached (down)
    Mar  3 11:30:17 localhost kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Mar  3 11:30:17 localhost kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Mar  3 11:30:17 localhost kernel[0]: Created virtif 0xffffff80194fd800 p2p0
    Mar  3 11:30:17 localhost digest-service[102]: digest-request: uid=0
    Mar  3 11:30:17 localhost mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Mar  3 11:30:18 localhost digest-service[102]: digest-request: netr probe 0
    Mar  3 11:30:18 localhost digest-service[102]: digest-request: init request
    Mar  3 11:30:18 localhost digest-service[102]: digest-request: init return domain: BUILTIN server: LOCALHOST indomain was: <NULL>
    Mar  3 11:30:18 localhost kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar  3 11:30:18 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Mar  3 11:30:18 localhost airportd[67]: _handleLinkEvent: WiFi is not powered. Resetting state variables.
    Mar  3 11:30:18 localhost locationd[46]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar  3 11:30:18 localhost locationd[46]: NBB-Could not get UDID for stable refill timing, falling back on random
    Mar  3 11:30:18 localhost apsd[65]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar  3 11:30:18 localhost locationd[46]: Location icon should now be in state 'Inactive'
    Mar  3 11:30:19 localhost configd[17]: dhcp_arp_router: en1 SSID unavailable
    Mar  3 11:30:19 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc): Throttling respawn: Will start in 2 seconds
    Mar  3 11:30:19 localhost configd[17]: network changed: DNS*
    Mar  3 11:30:19 imac-3.local configd[17]: setting hostname to "walters-imac-3.local"
    Mar  3 11:30:20 imac-3 kernel[0]: en1: 802.11d country code set to 'US'.
    Mar  3 11:30:20 imac-3 kernel[0]: 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Mar  3 11:30:20 imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9624801F60 imac-3.local. (Addr) that's already in the list
    Mar  3 11:30:20-imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F96248023F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Mar  3 11:30:20-imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9625005960-imac-3.local. (AAAA) that's already in the list
    Mar  3 11:30:20-imac-3.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9625005DF0 E.0.C.D.9.0.E.F.F.F.7.4.8.F.2.E.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    Mar  3 11:30:20-imac-3 com.apple.launchd[1] (com.apple.Kerberos.kdc): Throttling respawn: Will start in 1 seconds
    Mar  3 11:30:21 --- last message repeated 1 time ---
    Mar  3 11:30:21-imac-3.local kdc[117]: label: default
    Mar  3 11:30:21-imac-3.local kdc[117]:           dbname: od:/Local/Default
    Mar  3 11:30:21-imac-3.local kdc[117]:           mkey_file: /var/db/krb5kdc/m-key
    Mar  3 11:30:21-imac-3.local kdc[117]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar  3 11:30:21-imac-3.local kdc[117]: KDC started
    Mar  3 11:30:21-imac-3 kernel[0]: init
    Mar  3 11:30:21-imac-3 kernel[0]: probe
    Mar  3 11:30:21-imac-3 kernel[0]: start
    Mar  3 11:30:21-imac-3 kernel[0]: DSMOS has arrived
    Mar  3 11:30:21-imac-3 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xd000
    Mar  3 11:30:21-imac-3 kernel[0]: [IOBluetoothHCIController][start] -- completed
    Mar  3 11:30:21-imac-3.local loginwindow[44]: Login Window Application Started
    Mar  3 11:30:21-imac-3 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar  3 11:30:21-imac-3 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x2740 -- 0x7800 -- 0xd000 ****
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Server is starting up
    Mar  3 11:30:21-imac-3.local blued[61]: hostControllerOnline - Number of Paired devices = 0, List of Paired devices = (null)
    Mar  3 11:30:21-imac-3.local mds[40]: (Normal) FMW: FMW 0 0
    Mar  3 11:30:21-imac-3.local mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar  3 11:30:21 --- last message repeated 2 times ---
    Mar  3 11:30:21-imac-3 kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6760
    Mar  3 11:30:21-imac-3 kernel[0]: en3: promiscuous mode enable succeeded
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Session 256 retained (2 references)
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Session 256 released (1 references)
    Mar  3 11:30:21-imac-3.local WindowServer[119]: Session 256 retained (2 references)
    Mar  3 11:30:22-imac-3.local WindowServer[119]: init_page_flip: page flip mode is on
    Mar  3 11:30:22-imac-3 kernel[0]: MacAuthEvent en1   Auth result for: 68:7f:74:95:b3:73  MAC AUTH succeeded
    Mar  3 11:30:22-imac-3 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Mar  3 11:30:22-imac-3 kernel[0]: AirPort: Link Up on en1
    Mar  3 11:30:22-imac-3 kernel[0]: en1: BSSID changed to 68:7f:74:95:b3:73
    Mar  3 11:30:22-imac-3 kernel[0]: AirPort: RSN handshake complete on en1
    Mar  3 11:30:22 -imac-3 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 39 modes for display 0x00000000 [30, 9]
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    Mar  3 11:30:24 --- last message repeated 2 times ---
    Mar  3 11:30:24-imac-3.local WindowServer[119]: mux_initialize: Mode is dynamic
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 39 modes for display 0x00000000 [30, 9]
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    Mar  3 11:30:24 --- last message repeated 1 time ---
    Mar  3 11:30:24-imac-3.local WindowServer[119]: WSMachineUsesNewStyleMirroring: false
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x042728c2: GL mask 0x5; bounds (0, 0)[1440 x 900], 39 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 2, Rotation 0
              UUID 0xe2d0b55c862d4b0eba07e1bd2579493f
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[3840 x 2160], 2 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: WSSetWindowTransform: Singular matrix
    Mar  3 11:30:24 --- last message repeated 1 time ---
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x042728c2: GL mask 0x5; bounds (0, 0)[1440 x 900], 39 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 2, Rotation 0
              UUID 0xe2d0b55c862d4b0eba07e1bd2579493f
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f003d: GL mask 0x2; bounds (2464, 0)[1 x 1], 2 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: Display 0x003f0040: GL mask 0x10; bounds (2465, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24 walters-imac-3.local WindowServer[119]: Display 0x003f003f: GL mask 0x8; bounds (2466, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar  3 11:30:24-imac-3.local WindowServer[119]: CGXPerformInitialDisplayConfiguration
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x042728c2: Unit 2; Alias(2, 0x5); Vendor 0x610 Model 0x9ca3 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    Mar  3 11:30:24-imac-3.local WindowServer[119]: CGXMuxBoot: Boot normal
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, accelerator 0x00004d2b, unit 0, caps QEX|MIPMAP, vram 451 MB
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x0000001c, accelerator 0x000048c3, unit 2, caps QEX|MIPMAP, vram 256 MB
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x0000001c, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar  3 11:30:24-imac-3.local WindowServer[119]: GLCompositor enabled for tile size [256 x 256]
    Mar  3 11:30:24-imac-3.local WindowServer[119]: CGXGLInitMipMap: mip map mode is on
    Mar  3 11:30:25-imac-3.local loginwindow[44]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Mar  3 11:30:25-imac-3 kernel[0]: nspace-handler-set-snapshot-time: 1393864227
    Mar  3 11:30:25-imac-3.local com.apple.mtmd[39]: Set snapshot time: 2014-03-03 11:30:27 -0500 (current time: 2014-03-03 11:30:25 -0500)
    Mar  3 11:30:25-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:30:25-imac-3.local launchctl[138]: com.apple.findmymacmessenger: Already loaded
    Mar  3 11:30:25-imac-3.local com.apple.SecurityServer[15]: Session 100005 created
    Mar  3 11:30:25-imac-3.local UserEventAgent[140]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar  3 11:30:25-imac-3.local loginwindow[44]: Setting the initial value of the magsave brightness level 1
    Mar  3 11:30:25-imac-3.local loginwindow[44]: Login Window Started Security Agent
    Mar  3 11:30:26-imac-3.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'MyWireless' making interface primary (protected network)
    Mar  3 11:30:26-imac-3.local configd[17]: network changed: DNS* Proxy
    Mar  3 11:30:26-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Mar  3 11:30:26-imac-3.local UserEventAgent[11]: Captive: en1: Probing 'MyWireless'
    Mar  3 11:30:26-imac-3.local WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x42728c2
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 15 modes for display 0x042728c2 [10, 5]
    Mar  3 11:30:26-imac-3.local WindowServer[119]: CGXMuxAcknowledge: Posting glitchless acknowledge
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x42728c2
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 1 modes for display 0x042728c2 [1, 0]
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x3f003f
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 1 modes for display 0x003f003f [1, 0]
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Received display connect changed for display 0x3f0040
    Mar  3 11:30:26-imac-3.local WindowServer[119]: Found 1 modes for display 0x003f0040 [1, 0]
    Mar  3 11:30:27-imac-3.local configd[17]: network changed: v4(en1!:192.168.1.100) DNS+ Proxy+ SMB
    Mar  3 11:30:27-imac-3.local WindowServer[119]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fd409d063f0) - enabling OpenGL
    Mar  3 11:30:28-imac-3.local mtmfs[38]: mount succeeded for /Volumes/MobileBackups
    Mar  3 11:30:28-imac-3.local mds[40]: (Normal) Volume: volume:0x7fae1a823000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Mar  3 11:30:28-imac-3.local mds[40]: (Normal) Volume: volume:0x7fae1a823000 ********** Created snapshot backup index
    Mar  3 11:30:28-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:30:28-imac-3.local airportd[67]: _doAutoJoin: Already associated to “MyWireless”. Bailing on auto-join.
    Mar  3 11:30:28-imac-3.local SecurityAgent[146]: This is the first run
    Mar  3 11:30:28-imac-3.local SecurityAgent[146]: MacBuddy was run = 0
    Mar  3 11:30:29-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:30:29-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Mar  3 11:30:32-imac-3.local ntpd[110]: proto: precision = 1.000 usec
    Mar  3 11:30:34-imac-3.local awacsd[63]: Exiting
    Mar  3 11:30:55-imac-3 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0PS (kSMCKeyNotFound)
    Mar  3 11:30:55-imac-3 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Mar  3 11:31:11-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:31:57-imac-3.local distnoted[170]: # distnote server agent  absolute time: 122.781746823   civil time: Mon Mar  3 11:31:57 2014   pid: 170 uid: 89  root: no
    Mar  3 11:34:19-imac-3.local mds[40]: (Normal) Volume: volume:0x7fae20860000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.Or8ufk
    Mar  3 11:40:25-imac-3.local WindowServer[119]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    Mar  3 11:40:25-imac-3.local WindowServer[119]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    Mar  3 11:41:39-imac-3 kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    Mar  3 11:41:40-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:41:40-imac-3.local ntpd[110]: ntpd: wake time set -0.413667 s
    Mar  3 11:41:41-imac-3 kernel[0]: hibernate image path: /var/vm/sleepimage
    Mar  3 11:41:41-imac-3 kernel[0]: efi pagecount 43
    Mar  3 11:41:41-imac-3 kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff80d811f000, 0xffffff80d815f000
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_page_list_setall time: 187 ms
    Mar  3 11:41:42-imac-3 kernel[0]: pages 541993, wire 209488, act 62351, inact 295, cleaned 0 spec 19, zf 1951, throt 0, compr 0, xpmapped 0
    Mar  3 11:41:42-imac-3 kernel[0]: could discard act 7524 inact 6013 purgeable 14318 spec 240034 cleaned 0
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_page_list_setall preflight pageCount 274104 est comp 50 setfile 594876320 min 4294967296
    Mar  3 11:41:42-imac-3 kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 0 milliseconds
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2acc82c000, 0x32000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2b6490e000, 0x19000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2bc48e8000, 0x32000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2c6481f000, 0x40000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2ca481f000, 0xb000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2d3481d000, 0x19000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x2d84934000, 0x1f000000]
    Mar  3 11:41:42-imac-3 kernel[0]: [0x0, 0x0]
    Mar  3 11:41:42-imac-3 kernel[0]: kern_open_file_for_direct_io(0) took 21 ms
    Mar  3 11:41:42-imac-3 kernel[0]: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 2000000 ssd 0
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_alloc_pages act 84193, inact 8261, anon 2381, throt 0, spec 240053, wire 229621, wireinit 97343
    Mar  3 11:41:42-imac-3 kernel[0]: hibernate_setup(0) took 13 ms
    Mar  3 11:41:42-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:41:42-imac-3 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff80d811f000, 0xffffff80d815f000
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_page_list_setall time: 379 ms
    Mar  3 11:41:47-imac-3 kernel[0]: pages 540297, wire 207784, act 62356, inact 297, cleaned 0 spec 19, zf 1951, throt 0, compr 0, xpmapped 14199
    Mar  3 11:41:47-imac-3 kernel[0]: could discard act 7524 inact 6013 purgeable 14318 spec 240035 cleaned 0
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_page_list_setall found pageCount 272407
    Mar  3 11:41:47-imac-3 kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Mar  3 11:41:47-imac-3 kernel[0]: IOHibernatePollerOpen(0)
    Mar  3 11:41:47-imac-3 kernel[0]: encryptStart 14060
    Mar  3 11:41:47-imac-3 kernel[0]: bitmap_size 0x3f5a0, previewSize 0x4f6798, writing 270854 pages @ 0x549d98
    Mar  3 11:41:47-imac-3 kernel[0]: encryptEnd 538ae00
    Mar  3 11:41:47-imac-3 kernel[0]: image1Size 0x9264000, encryptStart1 0x14060, End1 0x538ae00
    Mar  3 11:41:47-imac-3 kernel[0]: encryptStart 9264000
    Mar  3 11:41:47-imac-3 kernel[0]: encryptEnd 10cc8600
    Mar  3 11:41:47-imac-3 kernel[0]: PMStats: Hibernate write took 3848 ms
    Mar  3 11:41:47-imac-3 kernel[0]: all time: 3848 ms, comp bytes: 1109782528 time: 693 ms 1525 Mb/s, crypt bytes: 215856032 time: 425 ms 483 Mb/s,
    Mar  3 11:41:47-imac-3 kernel[0]: image 281841664 (6%), uncompressed 1109782528 (270943), compressed 274692368 (24%), sum1 1a7db691, sum2 5851d8ce
    Mar  3 11:41:47-imac-3 kernel[0]: zeroPageCount 119992, wiredPagesEncrypted 142036, wiredPagesClear 64284, dirtyPagesEncrypted 64623
    Mar  3 11:41:47-imac-3 kernel[0]: hibernate_write_image done(0)
    Mar  3 11:41:47-imac-3 kernel[0]: sleep
    Mar  3 11:41:47-imac-3 kernel[0]: Wake reason: EC.PowerButton PWRB (User)
    Mar  3 11:45:01-imac-3 kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Mar  3 11:45:01-imac-3 kernel[0]: Previous Sleep Cause: 5
    Mar  3 11:45:01-imac-3 kernel[0]: AppleThunderboltHAL::earlyWake - complete - took 1 milliseconds
    Mar  3 11:45:01-imac-3 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    Mar  3 11:45:01-imac-3 kernel[0]: TBT W (1): 0 [x]
    Mar  3 11:45:01-imac-3 kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    Mar  3 11:45:01-imac-3 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Mar  3 11:45:01-imac-3 kernel[0]: en1: 802.11d country code set to 'X0'.
    Mar  3 11:45:01-imac-3 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Mar  3 11:45:01-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar  3 11:45:01-imac-3.local configd[17]: network changed: v4(en1-:192.168.1.100) DNS- Proxy-
    Mar  3 11:45:01-imac-3.local netbiosd[153]: network_reachability_changed : network is not reachable, netbiosd is shutting down
    Mar  3 11:45:01-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:45:01-imac-3.local WindowServer[119]: CGXDisplayDidWakeNotification [713009376958]: posting kCGSDisplayDidWake
    Mar  3 11:45:01-imac-3.local WindowServer[119]: handle_will_sleep_auth_and_shield_windows: NULL shield_window (lock state: 3)
    Mar  3 11:45:09-imac-3 kernel[0]: en1: 802.11d country code set to 'SG'.
    Mar  3 11:45:09-imac-3 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 149 153 157 161 165
    Mar  3 11:45:10-imac-3 kernel[0]: MacAuthEvent en1   Auth result for: 68:7f:74:95:b3:73  MAC AUTH succeeded
    Mar  3 11:45:10-imac-3 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Mar  3 11:45:10-imac-3 kernel[0]: AirPort: Link Up on en1
    Mar  3 11:45:10-imac-3 kernel[0]: en1: BSSID changed to 68:7f:74:95:b3:73
    Mar  3 11:45:10-imac-3 kernel[0]: AirPort: RSN handshake complete on en1
    Mar  3 11:45:10-imac-3 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'MyWireless' making interface primary (cache indicates network not captive)
    Mar  3 11:45:11-imac-3.local configd[17]: network changed: DNS* Proxy
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: en1: Not probing 'MyWireless' (cache indicates not captive)
    Mar  3 11:45:11-imac-3.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Mar  3 11:45:11-imac-3.local configd[17]: network changed: v4(en1!:192.168.1.100) DNS+ Proxy+ SMB
    Mar  3 11:45:17-imac-3.local SecurityAgent[146]: User info context values set for kathleen1
    Mar  3 11:45:18-imac-3.local loginwindow[44]: Login Window - Returned from Security Agent
    Mar  3 11:45:18-imac-3.local loginwindow[44]: USER_PROCESS: 44 console
    Mar  3 11:45:18-imac-3.local airportd[67]: _doAutoJoin: Already associated to “MyWireless”. Bailing on auto-join.
    Mar  3 11:45:18-imac-3 kernel[0]: AppleKeyStore:Sending lock change 0
    Mar  3 11:45:18 --- last message repeated 1 time ---
    Mar  3 11:45:18-imac-3 com.apple.launchd.peruser.503[185]: Background: Aqua: Registering new GUI session.
    Mar  3 11:45:18-imac-3 com.apple.launchd.peruser.503[185] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Mar  3 11:45:18-imac-3 com.apple.launchd.peruser.503[185] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Mar  3 11:45:18-imac-3.local launchctl[187]: com.apple.pluginkit.pkd: Already loaded
    Mar  3 11:45:18-imac-3.local launchctl[187]: com.apple.sbd: Already loaded
    Mar  3 11:45:18-imac-3.local distnoted[189]: # distnote server agent  absolute time: 730.554072877   civil time: Mon Mar  3 11:45:18 2014   pid: 189 uid: 503  root: no
    Mar  3 11:45:21-imac-3.local sharingd[209]: Starting Up...
    Mar  3 11:45:21-imac-3.local WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar  3 11:45:21-imac-3.local WindowServer[119]: Display 0x042728c2: Unit 2; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar  3 11:45:21-imac-3.local UserEventAgent[188]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar  3 11:45:21-imac-3.local com.apple.audio.DriverHelper[201]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Mar  3 11:45:22-imac-3.local SystemUIServer[196]: Cannot find executable for CFBundle 0x7fb8e3a30740 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Mar  3 11:45:22-imac-3.local SystemUIServer[196]: Cannot find executable for CFBundle 0x7fb8e3a31e40 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Mar  3 11:45:22-imac-3.local SystemUIServer[196]: Cannot find executable for CFBundle 0x7fb8e3a32510 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Mar  3 11:45:22-imac-3.local KiesAgent[240]: KiesAgent started, 7
    Mar  3 11:45:22-imac-3.local WiFiKeychainProxy[220]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Mar  3 11:45:22-imac-3.local WiFiKeychainProxy[220]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Mar  3 11:45:23-imac-3.local com.apple.IconServicesAgent[243]: IconServicesAgent launched.
    Mar  3 11:45:23-imac-3.local WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar  3 11:45:23-imac-3.local WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.06 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar  3 11:45:23-imac-3.local com.apple.SecurityServer[15]: Session 100008 created
    Mar  3 11:45:23-imac-3 accountsd[246]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar  3 11:45:23-imac-3.local SystemUIServer[196]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar  3 11:45:23-imac-3.local SystemUIServer[196]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar  3 11:45:23-imac-3.local KiesAgent[240]: checkAutoStart (null)
    Mar  3 11:45:24-imac-3.local com.apple.SecurityServer[15]: Session 100011 created
    Mar  3 11:45:25-imac-3.local apsd[219]: Unrecognized leaf certificate
    Mar  3 11:45:26-imac-3.local com.apple.time[188]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar  3 11:45:28 --- last message repeated 1 time ---
    Mar  3 11:45:28-imac-3.local secd[242]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    Mar  3 11:45:28-imac-3.local secd[242]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    Mar  3 11:45:30-imac-3.local secd[242]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar  3 11:45:30-imac-3.local secd[242]:  securityd_xpc_dictionary_handler WiFiKeychainProx[220] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar  3 11:45:38-imac-3.local imagent[228]: [Warning] Services all disappeared, removing all dependent devices
    Mar  3 11:45:39 walters-imac-3.local parentalcontrolsd[266]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar  3 11:45:41-imac-3.local imagent[228]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    Mar  3 11:45:42 --- last message repeated 1 time ---
    Mar  3 11:45:42-imac-3.local soagent[222]: [Warning] Services all disappeared, removing all dependent devices
    Mar  3 11:45:42-imac-3.local soagent[222]: No active accounts, killing soagent in 10 seconds
    Mar  3 11:45:44 --- last message repeated 1 time ---
    Mar  3 11:45:44-imac-3.local Microsoft Entourage[268]: OTAtomicAdd32 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:45:48-imac-3.local sandboxd[264] ([263]): storeagent(263) deny file-read-data /Users/1/Library/Preferences/com.apple.WebFoundation.plist
    Mar  3 11:45:48 walters-imac-3.local usernoted[217]: Connection does not have the proper entitlement (com.apple.private.notificationcenter-system) to connect to the system notification center. All communication will be denied. center com.apple.storeagent
    Mar  3 11:45:48-imac-3.local usernoted[217]: Connection does not have the proper entitlement (com.apple.developer.notificationcenter-identifiers) to connect on behalf of com.apple.appstore. All communication will be denied.
    Mar  3 11:45:49-imac-3.local bookstoreagent[275]: DownloadManifest: Error moving legacy manifest - Error Domain=NSCocoaErrorDomain Code=513 "“manifest.plist” couldn’t be moved because you don’t have permission to access “com.apple.iBooksX”." UserInfo=0x7faa48d13f40 {NSSourceFilePathErrorKey=/Users/1/Library/Application Support/AppStore/manifest.plist, NSUserStringVariant=(
                  Move
              ), NSDestinationFilePath=/var/folders/st/k9plffx91lzbwlv6f3db2n2m0000gq/C/com.appl e.iBooksX/manifest.plist, NSFilePath=/Users/1/Library/Application Support/AppStore/manifest.plist, NSUnderlyingError=0x7faa48d13240 "The operation couldn’t be completed. Operation not permitted"}
    Mar  3 11:45:49-imac-3.local bookstoreagent[275]: DownloadManifest: Error removing legacy download location - Error Domain=NSCocoaErrorDomain Code=513 "“AppStore” couldn’t be removed because you don’t have permission to access it." UserInfo=0x7faa4a9041c0 {NSFilePath=/Users/kathleen1/Library/Application Support/AppStore, NSUserStringVariant=(
                  Remove
              ), NSUnderlyingError=0x7faa4a904050 "The operation couldn’t be completed. Operation not permitted"}
    Mar  3 11:45:49-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-write-unlink /Users/kathleen1/Library/Application Support/AppStore/manifest.plist
    Mar  3 11:45:49 --- last message repeated 1 time ---
    Mar  3 11:45:49-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-write-unlink /Users/kathleen1/Library/Application Support/AppStore
    Mar  3 11:45:50-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-read-data /Users/1/Library/Application Support/AppStore
    Mar  3 11:45:50-imac-3.local sandboxd[264] ([275]): bookstoreagent(275) deny file-read-data /Users/kathleen1/Library/Preferences/com.apple.WebFoundation.plist
    Mar  3 11:45:51-imac-3.local Microsoft Database Daemon[277]: OTAtomicAdd32 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:45:52-imac-3.local Microsoft Entourage[268]: OTInetGetInterfaceInfo is unimplemented and will be removed soon.  Please stop using it.
    Mar  3 11:45:52-imac-3.local soagent[222]: Killing soagent.
    Mar  3 11:45:52-imac-3.local NotificationCenter[225]: SOHelperCenter main connection interrupted
    Mar  3 11:45:52-imac-3.local com.apple.dock.extra[252]: SOHelperCenter main connection interrupted
    Mar  3 11:45:52-imac-3.local imagent[228]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:222)
    Mar  3 11:45:56 --- last message repeated 1 time ---
    Mar  3 11:45:56-imac-3.local iTunes[271]: ApplePushService: APSConnection being used without a delegate queue
    Mar  3 11:46:00-imac-3 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xd000 ****
    Mar  3 11:46:00-imac-3.local Microsoft Entourage[268]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:00-imac-3.local Microsoft Entourage[268]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:00-imac-3.local Microsoft Database Daemon[277]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:00-imac-3.local Microsoft Database Daemon[277]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:01-imac-3.local Microsoft Entourage[268]: The function `CGSFlushWindow' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGSFlushWindowContentRegion' instead.
    Mar  3 11:46:04-imac-3.local Microsoft Entourage[268]: OTCompareAndSwap32 is deprecated and will be removed soon.  Please stop using it.
    Mar  3 11:46:12-imac-3.local Microsoft Sync Services[283]: [0x17142e0] |ISyncManager|Warning| Sync Server is disabled.
    Mar  3 11:49:58-imac-3.local Console[301]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.

  • Suddenly my MacBook Air is very slow to boot up. I'm running Mac OS X Lion 10.7.5 (11G63). Any tips? Thanks!

    Suddenly my MacBook Air is very slow to boot up. It's about a year and a half old. I'm running Mac OS X Lion 10.7.5 (11G63) -- and I'm far from being an expert at any of this stuff, have seen a few different answers and not sure what to do. Help! Grateful.

    Okay, I am having a try at this. My machine wouldn't boot this morning again (like I said, it's erratic, so I then did a "safe boot" and restarted. This is what I think (I hope...) you want. Here's the first part, tho you'll see I am struggling with Part 2.
    10/06/2014 07:48:18.000 bootlog: BOOT_TIME 1402382898 0
    10/06/2014 07:55:07.983 com.apple.kextd: Safe boot mode detected; invalidating system extensions caches.
    10/06/2014 07:55:07.985 com.apple.kextd: Cache file /System/Library/Caches/com.apple.kext.caches/Directories/System/Library/Extensi ons/KextIdentifiers.plist.gz is out of date; not using.
    10/06/2014 07:55:07.000 kernel: PMAP: PCID enabled
    10/06/2014 07:55:07.000 kernel: PMAP: Supervisor Mode Execute Protection enabled
    10/06/2014 07:55:07.000 kernel: Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    10/06/2014 07:55:07.000 kernel: vm_page_bootstrap: 546822 free pages and 501754 wired pages
    10/06/2014 07:55:07.000 kernel: kext submap [0xffffff7f80736000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000736000]
    10/06/2014 07:55:07.000 kernel: zone leak detection enabled
    10/06/2014 07:55:07.000 kernel: standard timeslicing quantum is 10000 us
    10/06/2014 07:55:07.000 kernel: mig_table_max_displ = 73
    10/06/2014 07:55:07.000 kernel: TSC Deadline Timer supported and enabled
    10/06/2014 07:55:07.000 kernel: SAFE BOOT DETECTED - only valid OSBundleRequired kexts will be loaded.
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: calling mpo_policy_init for Sandbox
    10/06/2014 07:55:07.000 kernel: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    10/06/2014 07:55:07.000 kernel: calling mpo_policy_init for Quarantine
    10/06/2014 07:55:07.000 kernel: Security policy loaded: Quarantine policy (Quarantine)
    10/06/2014 07:55:07.000 kernel: calling mpo_policy_init for TMSafetyNet
    10/06/2014 07:55:07.000 kernel: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    10/06/2014 07:55:07.000 kernel: Copyright (c) 1982, 1986, 1989, 1991, 1993
    10/06/2014 07:55:07.000 kernel: The Regents of the University of California. All rights reserved.
    10/06/2014 07:55:07.000 kernel: MAC Framework successfully initialized
    10/06/2014 07:55:07.000 kernel: using 16384 buffer headers and 10240 cluster IO buffer headers
    10/06/2014 07:55:07.000 kernel: IOAPIC: Version 0x20 Vectors 64:87
    10/06/2014 07:55:07.000 kernel: ACPI: System State [S0 S3 S4 S5]
    10/06/2014 07:55:07.000 kernel: PFM64 (36 cpu) 0xf10000000, 0xf0000000
    10/06/2014 07:55:07.000 kernel: [ PCI configuration begin ]
    10/06/2014 07:55:07.000 kernel: console relocated to 0xf50000000
    10/06/2014 07:55:08.000 kernel: PCI configuration changed (bridge=15 device=2 cardbus=0)
    10/06/2014 07:55:08.000 kernel: [ PCI configuration end, bridges 10 devices 12 ]
    10/06/2014 07:55:08.000 kernel: AppleIntelCPUPowerManagement: Turbo Ratios 0035
    10/06/2014 07:55:08.000 kernel: AppleIntelCPUPowerManagement: (built 16:32:09 Aug 23 2012) initialization complete
    10/06/2014 07:55:08.000 kernel: mbinit: done [64 MB total pool size, (42/21) split]
    10/06/2014 07:55:08.000 kernel: Pthread support ABORTS when sync kernel primitives misused
    10/06/2014 07:55:08.000 kernel: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    10/06/2014 07:55:08.000 kernel: AppleThunderboltNHIType2::start - type 2 sleep enabled
    10/06/2014 07:55:08.000 kernel: AppleThunderboltNHIType2::start - SXFP method found
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeDataless kmod start
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeZlib kmod start
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeDataless load succeeded
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeZlib load succeeded
    10/06/2014 07:55:08.000 kernel: AppleIntelCPUPowerManagementClient: ready
    10/06/2014 07:55:08.000 kernel: BTCOEXIST off
    10/06/2014 07:55:08.000 kernel: wl0: Broadcom BCM4353 802.11 Wireless Controller
    10/06/2014 07:55:08.000 kernel: 5.106.198.19
    10/06/2014 07:55:08.000 kernel: rooting via boot-uuid from /chosen: 70452A04-BA27-3AA6-A252-7F32179EC729
    10/06/2014 07:55:08.000 kernel: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    10/06/2014 07:55:08.000 kernel: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE SSD TS128E Media/IOGUIDPartitionScheme/Customer@2
    10/06/2014 07:55:08.000 kernel: BSD root: disk0s2, major 14, minor 2
    10/06/2014 07:55:08.000 kernel: jnl: unknown-dev: replay_journal: from: 7179264 to: 8289280 (joffset 0x11502000)
    10/06/2014 07:55:08.000 kernel: jnl: unknown-dev: journal replay done.
    10/06/2014 07:55:08.000 kernel: Kernel is LP64
    10/06/2014 07:55:08.000 kernel: USBMSC Identifier (non-unique): 000000000310 0x5ac 0x8404 0x310
    10/06/2014 07:55:08.000 kernel: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    10/06/2014 07:55:08.000 kernel: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    10/06/2014 07:55:08.000 kernel: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    10/06/2014 07:55:08.000 kernel: USBF:          4.615          IOUSBCompositeDriver[0xffffff8008374300](CompositeDevice) SetConfiguration (1) returned 0xe000404f
    10/06/2014 07:55:08.000 kernel: [IOBluetoothHCIController::setConfigState] calling registerService
    10/06/2014 07:55:08.000 kernel: hfs: Removed 0 orphaned / unlinked files and 10 directories
    10/06/2014 07:48:19.176 com.apple.launchd: *** launchd[1] has started up. ***
    10/06/2014 07:55:07.907 com.apple.launchd: (com.apple.powerd) Unknown value for key POSIXSpawnType: Interactive
    10/06/2014 07:55:07.907 com.apple.launchd: (com.apple.sandboxd) Unknown value for key POSIXSpawnType: Interactive
    10/06/2014 07:55:07.908 com.apple.launchd: (com.apple.usbmuxd) Unknown value for key POSIXSpawnType: Interactive
    10/06/2014 07:55:08.733 fseventsd: event logs in /.fseventsd out of sync with volume.  destroying old logs. (32317 409 32766)
    10/06/2014 07:55:08.749 fseventsd: log dir: /.fseventsd getting new uuid: 28A0FB38-2172-4936-8866-3220B9641918
    10/06/2014 07:55:09.009 UserEventAgent: starting CaptiveNetworkSupport as SystemEventAgent built Jun 25 2011 01:16:59
    10/06/2014 07:55:09.013 UserEventAgent: CaptiveNetworkSupport:CreateInterfaceWatchList:2788 WiFi Devices Found.
    10/06/2014 07:55:09.013 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - PreProbe
    10/06/2014 07:55:09.013 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - PreProbe
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.000 kernel: AirPort_Brcm4331: Ethernet address 7c:d1:c3:de:35:3d
    10/06/2014 07:55:09.000 kernel: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    10/06/2014 07:55:09.000 kernel: IO80211Interface::efiNVRAMPublished(): 
    10/06/2014 07:55:09.823 com.apple.kextd: Cache file /System/Library/Caches/com.apple.kext.caches/Startup/IOKitPersonalities_x86_64. ioplist.gz is out of date; not using.
    10/06/2014 07:55:09.938 airportd: _processDLILEvent: en0 attached (down)
    10/06/2014 07:55:10.076 com.apple.SecurityServer: Session 100000 created
    10/06/2014 07:55:10.000 kernel: in func createVirtualInterface ifRole = 1
    10/06/2014 07:55:10.000 kernel: Created virtif 0xffffff8006faba00 p2p0
    10/06/2014 07:55:10.101 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:10.101 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:10.128 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - PreProbe
    10/06/2014 07:55:10.189 configd: setting hostname to "Names-MacBook-Air.local"
    10/06/2014 07:55:10.000 kernel: AirPort: Link Down on en0. Reason 1 (Unspecified).
    10/06/2014 07:55:10.202 configd: network configuration changed.
    10/06/2014 07:55:10.207 com.apple.SecurityServer: Entering service
    10/06/2014 07:55:10.424 UserEventAgent: ServermgrdRegistration cannot load config data
    10/06/2014 07:55:10.444 UserEventAgent: get_backup_share_points no AFP
    10/06/2014 07:55:12.000 kernel: en0: 802.11d country code set to 'GB'.
    10/06/2014 07:55:12.000 kernel: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    10/06/2014 07:55:13.031 com.apple.ucupdate.plist: ucupdate: Checked 1 update, no match found.
    10/06/2014 07:55:13.098 com.apple.pfctl: No ALTQ support in kernel
    10/06/2014 07:55:13.098 com.apple.pfctl: ALTQ related functions disabled
    10/06/2014 07:55:13.337 com.apple.kextd: Can't load AppleMCCSControl.kext - ineligible during safe boot.
    10/06/2014 07:55:13.347 com.apple.kextd: Load com.apple.driver.AppleMCCSControl failed; removing personalities from kernel.
    10/06/2014 07:55:13.361 mDNSResponder: mDNSResponder mDNSResponder-320.16 (Jul 19 2012 21:07:07) starting OSXVers 11
    10/06/2014 07:55:13.000 kernel: macx_swapon SUCCESS
    10/06/2014 07:55:13.656 com.apple.usbmuxd: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    10/06/2014 07:55:13.918 com.apple.kextd: Can't load AppleThunderboltEDMSink.kext - ineligible during safe boot.
    10/06/2014 07:55:13.924 com.apple.kextd: Load com.apple.driver.AppleThunderboltEDMSink failed; removing personalities from kernel.
    10/06/2014 07:55:13.967 systemkeychain: done file: /var/run/systemkeychaincheck.done
    10/06/2014 07:55:14.000 kernel: Waiting for DSMOS...
    10/06/2014 07:55:14.036 configd: network configuration changed.
    10/06/2014 07:55:14.042 configd: network configuration changed.
    10/06/2014 07:55:14.092 com.apple.kextd: Can't load AppleSMBusPCI.kext - ineligible during safe boot.
    10/06/2014 07:55:14.096 com.apple.kextd: Load com.apple.driver.AppleSMBusPCI failed; removing personalities from kernel.
    10/06/2014 07:55:14.099 mDNSResponder: D2D_IPC: Loaded
    10/06/2014 07:55:14.099 mDNSResponder: D2DInitialize succeeded
    10/06/2014 07:55:14.000 kernel: MacAuthEvent en0   Auth result for: cc:33:bb:49:b1:9a  MAC AUTH succeeded
    10/06/2014 07:55:14.000 kernel: wlEvent: en0 en0 Link UP virtIf = 0
    10/06/2014 07:55:14.000 kernel: AirPort: Link Up on en0
    10/06/2014 07:55:14.000 kernel: en0: BSSID changed to cc:33:bb:49:b1:9a
    10/06/2014 07:55:14.314 com.apple.kextd: Can't load AppleHDAController.kext - ineligible during safe boot.
    10/06/2014 07:55:14.318 com.apple.kextd: Load com.apple.driver.AppleHDAController failed; removing personalities from kernel.
    10/06/2014 07:55:14.363 com.apple.kextd: Can't load AppleSMCLMU.kext - ineligible during safe boot.
    10/06/2014 07:55:14.366 com.apple.kextd: Load com.apple.driver.AppleSMCLMU failed; removing personalities from kernel.
    10/06/2014 07:55:14.000 kernel: AirPort: RSN handshake complete on en0
    10/06/2014 07:55:14.000 kernel: Previous Shutdown Cause: 3
    10/06/2014 07:55:14.373 com.apple.kextd: Can't load AppleSMCPDRC.kext - ineligible during safe boot.
    10/06/2014 07:55:14.377 com.apple.kextd: Load com.apple.driver.AppleSMCPDRC failed; removing personalities from kernel.
    10/06/2014 07:55:14.709 com.apple.kextd: Can't load AudioIPCDriver.kext - ineligible during safe boot.
    10/06/2014 07:55:14.712 com.apple.kextd: Load com.apple.driver.AudioIPCDriver failed; removing personalities from kernel.
    10/06/2014 07:55:14.717 com.apple.kextd: Can't load AudioIPCDriver.kext - ineligible during safe boot.
    10/06/2014 07:55:14.720 com.apple.kextd: Load com.apple.driver.AudioIPCDriver failed; removing personalities from kernel.
    10/06/2014 07:55:14.727 com.apple.kextd: Can't load AppleIntelHD4000Graphics.kext - ineligible during safe boot.
    10/06/2014 07:55:14.729 com.apple.kextd: Load com.apple.driver.AppleIntelHD4000Graphics failed; removing personalities from kernel.
    10/06/2014 07:55:14.776 netbiosd: Unable to start NetBIOS name service:
    10/06/2014 07:55:14.936 com.apple.kextd: Can't load AppleUpstreamUserClient.kext - ineligible during safe boot.
    10/06/2014 07:55:14.938 com.apple.kextd: Load com.apple.driver.AppleUpstreamUserClient failed; removing personalities from kernel.
    10/06/2014 07:55:15.087 com.apple.kextd: Can't load ApplePlatformEnabler.kext - ineligible during safe boot.
    10/06/2014 07:55:15.093 com.apple.kextd: Load com.apple.driver.ApplePlatformEnabler failed; removing personalities from kernel.
    10/06/2014 07:55:15.306 com.apple.kextd: Can't load IOBluetoothSerialManager.kext - ineligible during safe boot.
    10/06/2014 07:55:15.310 com.apple.kextd: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    10/06/2014 07:55:15.319 com.apple.kextd: Can't load IOSurface.kext - ineligible during safe boot.
    10/06/2014 07:55:15.322 com.apple.kextd: Load com.apple.iokit.IOSurface failed; removing personalities from kernel.
    10/06/2014 07:55:15.330 com.apple.kextd: Can't load IOUserEthernet.kext - ineligible during safe boot.
    10/06/2014 07:55:15.333 com.apple.kextd: Load com.apple.iokit.IOUserEthernet failed; removing personalities from kernel.
    10/06/2014 07:55:15.000 kernel: X86PlatformShim::sendStepper - in safe boot. Set PState to PMin.
    10/06/2014 07:55:15.523 loginwindow: Login Window Application Started
    10/06/2014 07:55:15.927 mds: (Normal) FMW: FMW 0 0
    10/06/2014 07:55:16.000 kernel: DSMOS has arrived
    10/06/2014 07:55:16.135 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 07:55:16.137 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 07:55:16.178 WindowServer: (ipc/send) invalid destination port: IOServiceWaitQuiet for CGXMappedDisplayStart
    10/06/2014 07:55:16.178 WindowServer: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    10/06/2014 07:55:16.431 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 07:55:16.636 loginwindow: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    10/06/2014 07:55:17.000 kernel: nspace-handler-set-snapshot-time: 1402383318
    10/06/2014 07:55:17.986 com.apple.launchctl.LoginWindow: com.apple.findmymacmessenger: Already loaded
    10/06/2014 07:55:17.986 com.apple.launchctl.LoginWindow: com.apple.store_helper: Already loaded
    10/06/2014 07:55:17.986 com.apple.launchctl.LoginWindow: com.apple.storeagent: Already loaded
    10/06/2014 07:55:18.232 com.apple.SecurityServer: Session 100004 created
    10/06/2014 07:55:18.239 loginwindow: Login Window Started Security Agent
    10/06/2014 07:55:18.481 airportd: _doAutoJoin: Already associated to “BTHub4-S56J”. Bailing on auto-join.
    10/06/2014 07:55:19.160 SecurityAgent: Echo enabled
    10/06/2014 07:55:19.160 SecurityAgent: Echo enabled
    10/06/2014 07:55:19.281 configd: network configuration changed.
    10/06/2014 07:55:19.499 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - Probe
    10/06/2014 07:55:19.501 UserEventAgent: CaptiveNetworkSupport:CNSPreferencesBuildSSIDLookup:278 ssidLookup:
    10/06/2014 07:55:19.502 UserEventAgent:   <empty>
    10/06/2014 07:55:19.613 configd: setting hostname to "unknown-7c:d1:c3:de:35:3d.home"
    10/06/2014 07:55:19.666 UserEventAgent: CaptiveNetworkSupport:CaptiveStartDetect:2343 Bypassing probe on BTHub4-S56J because it is protected and not on the exception list
    10/06/2014 07:55:19.680 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - Unknown
    10/06/2014 07:55:19.688 configd: network configuration changed.
    10/06/2014 07:55:19.959 ntpd: proto: precision = 1.000 usec
    10/06/2014 07:55:21.399 com.apple.mtmfs: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//mtmfsMap46
    10/06/2014 07:55:23.996 genatsdb: *GENATSDB* FontObjects generated = 364
    10/06/2014 07:55:24.287 com.apple.launchd: (com.apple.xprotectupdater[33]) Exited with code: 252
    10/06/2014 07:55:46.110 com.apple.backupd: Starting standard backup
    10/06/2014 07:55:46.151 com.apple.backupd: Error -35 while resolving alias to backup target
    10/06/2014 07:55:46.000 kernel: nspace-handler-set-snapshot-time: 1402383348
    10/06/2014 07:55:56.277 com.apple.backupd: Backup failed with error: 19
    10/06/2014 07:56:36.042 com.apple.backupd: Starting standard backup
    10/06/2014 07:56:36.054 com.apple.backupd: Error -35 while resolving alias to backup target
    10/06/2014 07:56:36.000 kernel: nspace-handler-set-snapshot-time: 1402383398
    10/06/2014 07:56:46.175 com.apple.backupd: Backup failed with error: 19
    10/06/2014 07:58:18.298 com.apple.mtmd: low disk space thinning needed for volume Macintosh HD (/) with 7.8 <= 10.0 pct free space
    10/06/2014 07:58:18.301 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-09 21:04:36 +0000
    10/06/2014 07:58:18.310 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-10 06:55:16 +0000
    10/06/2014 07:58:18.330 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-10 06:55:48 +0000
    10/06/2014 07:58:18.338 com.apple.mtmd: volume Macintosh HD (/) is now in an emergency freespace condition
    10/06/2014 08:00:09.756 com.apple.kextd: Cache file /System/Library/Caches/com.apple.kext.caches/Startup/KextPropertyValues_OSBundl eHelper_x86_64.plist.gz is out of date; not using.
    10/06/2014 08:00:09.756 com.apple.kextd: Rescanning kernel extensions.
    10/06/2014 08:00:10.192 com.apple.kextd: Can't load /System/Library/Extensions/AudioIPCDriver.kext - ineligible during safe boot.
    10/06/2014 08:00:10.196 com.apple.kextd: Load com.apple.driver.AudioIPCDriver failed; removing personalities from kernel.
    10/06/2014 08:00:10.198 com.apple.kextcache: rebuilding /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache
    10/06/2014 08:00:10.204 com.apple.kextd: Can't load /System/Library/Extensions/AppleThunderboltEDMService.kext/Contents/PlugIns/App leThunderboltEDMSink.kext - ineligible during safe boot.
    10/06/2014 08:00:10.209 com.apple.kextd: Load com.apple.driver.AppleThunderboltEDMSink failed; removing personalities from kernel.
    10/06/2014 08:00:10.217 com.apple.kextd: Can't load /System/Library/Extensions/AppleIntelHD4000Graphics.kext - ineligible during safe boot.
    10/06/2014 08:00:10.221 com.apple.kextd: Load com.apple.driver.AppleIntelHD4000Graphics failed; removing personalities from kernel.
    10/06/2014 08:00:10.233 com.apple.kextd: Can't load /System/Library/Extensions/AppleSMBusPCI.kext - ineligible during safe boot.
    10/06/2014 08:00:10.237 com.apple.kextd: Load com.apple.driver.AppleSMBusPCI failed; removing personalities from kernel.
    10/06/2014 08:00:10.249 com.apple.kextd: Can't load /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAController.ke xt - ineligible during safe boot.
    10/06/2014 08:00:10.253 com.apple.kextd: Load com.apple.driver.AppleHDAController failed; removing personalities from kernel.
    10/06/2014 08:00:10.264 com.apple.kextd: Can't load /System/Library/Extensions/AppleMCCSControl.kext - ineligible during safe boot.
    10/06/2014 08:00:10.270 com.apple.kextd: Load com.apple.driver.AppleMCCSControl failed; removing personalities from kernel.
    10/06/2014 08:00:10.285 com.apple.kextd: Can't load /System/Library/Extensions/ApplePlatformEnabler.kext - ineligible during safe boot.
    10/06/2014 08:00:10.289 com.apple.kextd: Load com.apple.driver.ApplePlatformEnabler failed; removing personalities from kernel.
    10/06/2014 08:00:10.298 com.apple.kextd: Can't load /System/Library/Extensions/AppleSMCLMU.kext - ineligible during safe boot.
    10/06/2014 08:00:10.302 com.apple.kextd: Load com.apple.driver.AppleSMCLMU failed; removing personalities from kernel.
    10/06/2014 08:00:10.310 com.apple.kextd: Can't load /System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/AppleSM CPDRC.kext - ineligible during safe boot.
    10/06/2014 08:00:10.314 com.apple.kextd: Load com.apple.driver.AppleSMCPDRC failed; removing personalities from kernel.
    10/06/2014 08:00:10.325 com.apple.kextd: Can't load /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS erialManager.kext - ineligible during safe boot.
    10/06/2014 08:00:10.329 com.apple.kextd: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    10/06/2014 08:00:10.337 com.apple.kextd: Can't load /System/Library/Extensions/AppleUpstreamUserClient.kext - ineligible during safe boot.
    10/06/2014 08:00:10.341 com.apple.kextd: Load com.apple.driver.AppleUpstreamUserClient failed; removing personalities from kernel.
    10/06/2014 08:00:10.355 com.apple.kextd: Can't load /System/Library/Extensions/IOSurface.kext - ineligible during safe boot.
    10/06/2014 08:00:10.358 com.apple.kextd: Load com.apple.iokit.IOSurface failed; removing personalities from kernel.
    10/06/2014 08:00:10.366 com.apple.kextd: Can't load /System/Library/Extensions/IOUserEthernet.kext - ineligible during safe boot.
    10/06/2014 08:00:10.369 com.apple.kextd: Load com.apple.iokit.IOUserEthernet failed; removing personalities from kernel.
    10/06/2014 08:00:10.000 kernel: Resetting IOCatalogue.
    10/06/2014 08:00:11.694 com.apple.kextcache: SierraSwitchKicker.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:11.705 com.apple.kextcache: SierraSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:11.744 com.apple.kextcache: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:12.952 com.apple.kextcache: SierraSwitchKicker.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:12.954 com.apple.kextcache: SierraSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:12.958 com.apple.kextcache: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:13.482 com.apple.kextcache: SierraSwitchKicker.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:13.625 com.apple.kextcache: SierraSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:14.118 com.apple.kextcache: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:16.599 com.apple.kextcache: / locked; waiting for lock.
    10/06/2014 08:00:41.407 com.apple.kextcache: / locked; waiting for lock.
    10/06/2014 08:00:50.620 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:50.620 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:50.816 authorizationhost: Failed to authenticate user <Name> (error: 9).
    10/06/2014 08:00:51.000 kernel: nspace-handler-set-snapshot-time: 1402383652
    10/06/2014 08:00:55.132 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:55.132 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:55.638 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-10 06:56:38 +0000
    10/06/2014 08:00:57.595 SecurityAgent: Login Window login proceeding
    10/06/2014 08:00:57.595 SecurityAgent: Login Window login proceeding
    10/06/2014 08:00:58.422 loginwindow: Login Window - Returned from Security Agent
    10/06/2014 08:00:58.591 loginwindow: USER_PROCESS: 51 console
    10/06/2014 08:00:58.967 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.iCalPush': unknown error code
    10/06/2014 08:00:58.968 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.syncdefaultsd.push': unknown error code
    10/06/2014 08:00:58.969 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.AddressBook.PushNotification': unknown error code
    10/06/2014 08:00:58.970 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.safaridavclient.push': unknown error code
    10/06/2014 08:00:59.119 com.apple.launchd.peruser.502: (com.apple.AirPortBaseStationAgent) Unknown value for key POSIXSpawnType: Background
    10/06/2014 08:00:59.124 com.apple.launchd.peruser.502: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    10/06/2014 08:00:59.134 com.apple.launchctl.Aqua: load: option requires an argument -- D
    10/06/2014 08:00:59.134 com.apple.launchctl.Aqua: usage: launchctl load [-wF] [-D <user|local|network|system|all>] paths...
    10/06/2014 08:01:02.788 UserEventAgent: CaptiveNetworkSupport:CNSServerRegisterUserAgent:187 new user agent port: 39947
    10/06/2014 08:01:03.289 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    10/06/2014 08:01:03.321 com.apple.launchd.peruser.502: (com.apple.launchctl.Aqua[133]) Exited with code: 1
    10/06/2014 08:01:03.762 com.apple.launchd.peruser.502: (com.apple.mrt.uiagent[145]) Exited with code: 255
    10/06/2014 08:01:05.842 SystemUIServer: Could not load menu extra NSBundle </System/Library/CoreServices/Menu Extras/Volume.menu> (not yet loaded) for Class AppleVolumeExtra
    10/06/2014 08:01:09.565 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.565 com.apple.dock.extra: 2014-06-10 08:01:09.555 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.573 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.575 com.apple.dock.extra: 2014-06-10 08:01:09.566 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.583 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.584 com.apple.dock.extra: 2014-06-10 08:01:09.575 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.588 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.589 com.apple.dock.extra: 2014-06-10 08:01:09.586 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:10.169 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 08:01:12.998 com.apple.SecurityServer: Session 100008 created
    10/06/2014 08:01:18.200 com.apple.SecurityServer: Session 100010 created
    10/06/2014 08:01:20.025 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 08:01:20.124 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_DSHMEMLOCK
    10/06/2014 08:01:20.128 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_DSHMEMLOCK
    10/06/2014 08:01:20.132 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CGM0000000502
    10/06/2014 08:01:20.136 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CGM0000000502
    10/06/2014 08:01:20.147 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:20.157 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:20.176 sandboxd: ([169]) com.apple.qtkits(169) deny mach-lookup com.apple.printtool.agent
    10/06/2014 08:01:21.178 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:21.256 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_GSHMEMLOCK
    10/06/2014 08:01:21.260 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_GSHMEMLOCK
    10/06/2014 08:01:22.336 com.apple.coremedia.videodecoder: IOSurface couldn't open service: IOSurfaceRoot
    10/06/2014 08:01:27.505 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:27.906 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:30.610 com.apple.kextcache: Created prelinked kernel //System/Library/Caches/com.apple.kext.caches/Startup/kernelcache.
    10/06/2014 08:01:30.670 com.apple.kextcache: /: no supported helper partitions to update.
    10/06/2014 08:01:30.671 com.apple.kextcache: Lock acquired; proceeding.
    10/06/2014 08:01:30.685 com.apple.kextcache: /: no supported helper partitions to update.
    10/06/2014 08:01:30.686 com.apple.kextcache: Lock acquired; proceeding.
    10/06/2014 08:01:30.701 com.apple.kextcache: /: no supported helper partitions to update.
    10/06/2014 08:01:44.000 kernel: CODE SIGNING: cs_invalid_page(0x1000): p=181[ksadmin] clearing CS_VALID
    In Part 2, you say:
    DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports.
    BUT -- when I go into "System diagnostic reports" (and I have checked I'm clicking on the correct one) there's nothing in the log to the right, even when I click the arrow pointing down. Below that, on the left, it says FILES and then below that there's
    system.log
    kernel.log
    and then /Library/logs (twice) and /var/logs
    What am I doing wrong?
    Grateful for help.

  • Very slow day

    Hi all,
    11.2.0.1
    Aix 6.1
    Yesterday Jan 15, 2014, we experienced very slow performance in our App. The webpage is hanging or disconnecting often and many transaction were dropped or not processed.
    My boss told me to investigate the issue and find the cause. Again this topic is the most unmastered part of my carrier as dba.
    There is no solid way I have found for a template for a clear solution. I have gathered 1 week worth of AWR stats reports just to campare baselines because that is what is always heard here.
    Given a week awr statistics can you help me how to identify the cause of performance problem yesterday?
    https://app.box.com/s/dna3i7auq1mel6gl1c4v
    https://app.box.com/s/mumevcqqgu5c0b1mal4o
    https://app.box.com/s/f24z3caboyknfyxhhcaj
    https://app.box.com/s/xas3ra0qz081jp1ynso5
    https://app.box.com/s/1ftb87kd2relqzzl9mnm
    https://app.box.com/s/qqthfm6vpwdc3o5t1dfr
    Kindly open report in notepad++ as this is in 500 linesize.
    Thanks a lot,
    pK

    I already mentioned the db & OS version above
    The application is just 3rd party developed in java.
    Yes - but that is just one SMALL part of the info mentioned in that link about how to ask a question. Go back and read it again - especially the part about the info needed for a tuning request.
    You also aren't responding to the questions or suggestions others have already posted. Alvaro posted this:
    These logs you have provided are completely unformated and next to impossible to read. Why not just post the AWR HTML parts that are interesting? Such as: Time model, Top 5 Waits, Load profile.
    Also, a one week AWR report is not very useful in your case. Focus on an AWR derived from the snapshots that make up the period the problem occurred.
    The only comment you made was a sarcastic one about the formatting.
    Why didn't you comment about the AWR suggestion that was made? If you want responders to help you have to be responsive to their comments. They are trying to help you.
    You also never responded to the reply by Gayu0726:
    To solve:
    Identify the tables which read most.
    Create index for the tables.
    If index is already there, try to analyze it and gather statistics.
    Check whether the index are in usable form.
    You marked the reply 'helpful' but never said a word about whether you did those things and what the result was.
    Himmy got the same treatment:
    If this is an OLTP database can you try gathering stats on all tables of schemas used by the application.
    Did you do that? Are the stats current? Why didn't you respond to let us know WHAT you are doing to solve the problem?
    In short you seem to be relying on us to solve your problem and haven't provided ANY feedback about what, if anything, you are doing to solve it:
    Yesterday Jan 15, 2014, we experienced very slow performance in our App. The webpage is hanging or disconnecting often and many transaction were dropped or not processed.
    That's a good start to defining the problem.
    My boss told me to investigate the issue and find the cause. Again this topic is the most unmastered part of my carrier as dba.
    And it will likely continue to be 'unmastered' until you actually press the keyboard with your fingers and start doing things yourself.
    There is no solid way I have found for a template for a clear solution.
    If you 'experienced very slow performance' then, by definition, you MUST know that previously the performance was 'faster'.
    That means that SOMETHING changed. The 'template' you seek is to determine WHAT CHANGED.
    I have gathered 1 week worth of AWR stats reports just to campare baselines because that is what is always heard here.
    Ok - so did you actually COMPARE the base lines to see what was different? What did you find was different? Why haven't you posted here and told us what you found that was different?
    You have to use a process just like in those picture games for kids where they show two pictures and ask them: find the objects in the two pictures that are different.
    Picture #1 - fast performance
    Picutre #2 - slow performance
    1. What changed between picture #1 and picture #2?
    2. Did the amount of data in the tables (which you haven't told us anything about) change?
    3. Did the statistics change? Or perhaps no one updated them lately?
    4. Did the execution plans of any of the key queries change?
    5. and so on, and so on
    If you don't have picture #1 you will have a hard time comparing picture #2 to anything.
    It is YOUR responsibility to post the information needed to help you. Post the info re stats, tables, execution plans, etc.

  • Time Machine Very Slow (321 Days) Please Help!

    Hi all, I've got a 2012 MBP and have had problems with TM since day one.
    I'm running all the latest software with a brand new Time Capsule and it states that it will take over 300 days to back up.
    I originally used a NAS and TM was very very slow along with having to reformat and start again every few weeks so I gave in and got a TC thinking it would solve my problems but it's returned again.
    I've tried reformatting, disabling spotlight, wired and wireless connections, different hard drives and still the problem persists. Occasionally it also fails to find the backup disk so I have to reformat and start again.
    It's driving me absolutely insane because despite messing and messing, trying different solutions the problem always seems to return at random. It will work great for a week or 2 then it's back to square one.
    Can someone please restore my sanity and help?

    To update, I got up this morning and it was still stating some 22 days after copying a few gb in 18 hours so I restarted (again). TM then stated it couldn't find the back up disk so I again pointed it to the right disk and it now appears to be stuck again after doing over a gb in a minute or two.
    Here's the info requested.
    31/01/2013 09:53:34.380 com.apple.backupd[398]: Starting manual backup
    31/01/2013 09:53:46.000 kernel[0]: nfs server localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN: not responding
    31/01/2013 09:53:47.000 kernel[0]: nfs server localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN: can not connect, error 61
    31/01/2013 09:54:16.262 KernelEventAgent[46]: tid 00000000 received event(s) VQ_DEAD (32)
    31/01/2013 09:54:16.263 KernelEventAgent[46]: tid 00000000 type 'mtmfs', mounted on '/Volumes/MobileBackups', from 'localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN', dead
    31/01/2013 09:54:16.000 kernel[0]: nfs server localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN: dead
    31/01/2013 09:54:16.263 KernelEventAgent[46]: tid 00000000 force unmount localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN from /Volumes/MobileBackups
    31/01/2013 09:54:16.263 KernelEventAgent[46]: tid 00000000 found 1 filesystem(s) with problem(s)
    31/01/2013 09:54:22.198 com.apple.backupd[398]: Failed to get NSURLVolumeURLForRemountingKey for /Volumes/MobileBackups, error: Error Domain=NSCocoaErrorDomain Code=4 "The file “MobileBackups” doesn’t exist." UserInfo=0x7f9934a04da0 {NSURL=file://localhost/Volumes/MobileBackups/, NSFilePath=/Volumes/MobileBackups}
    31/01/2013 09:54:22.198 com.apple.backupd[398]: Attempting to mount network destination URL: afp://Dave%[email protected]/AirPort%20Disk
    31/01/2013 09:54:23.036 com.apple.backupd[398]: Mounted network destination at mount point: /Volumes/AirPort Disk using URL: afp://Dave%[email protected]/AirPort%20Disk
    31/01/2013 09:54:23.000 kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    31/01/2013 09:54:23.000 kernel[0]: AFP_VFS afpfs_mount: /Volumes/AirPort Disk, pid 435
    31/01/2013 09:54:23.000 kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff80946e1008 /Volumes/AirPort Disk (error = 0, retval = 0)
    31/01/2013 09:54:48.061 mdworker[434]: Unable to talk to lsboxd
    31/01/2013 09:54:48.000 kernel[0]: Sandbox: sandboxd(442) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 09:54:51.281 sandboxd[442]: ([434]) mdworker(434) deny mach-lookup com.apple.ls.boxd
    31/01/2013 09:54:51.000 kernel[0]: nspace-handler-set-snapshot-time: 1359626093
    31/01/2013 09:55:28.923 mds[40]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    31/01/2013 09:55:29.892 com.apple.backupd[398]: Disk image /Volumes/AirPort Disk/Dave’s MacBook Pro.sparsebundle mounted at: /Volumes/Time Machine Backups
    31/01/2013 09:55:29.937 com.apple.backupd[398]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    31/01/2013 09:55:30.908 com.apple.backupd[398]: Forcing deep traversal on source: "Macintosh HD" (mount: '/' fsUUID: 74A87C50-39EA-3B75-AACA-0647768C78F6 eventDBUUID: 539B3BBD-544C-444D-9C2C-14001A19F631)
    31/01/2013 09:55:32.032 com.apple.backupd[398]: Didn't get valid migration dates.
    31/01/2013 09:55:32.040 com.apple.backupd[398]: Found 806587 files (286.4 GB) needing backup
    31/01/2013 09:55:32.041 com.apple.backupd[398]: 343.68 GB required (including padding), 1.99 TB available
    31/01/2013 09:56:15.000 kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    31/01/2013 09:56:15.000 kernel[0]: macx_swapon SUCCESS
    31/01/2013 09:56:43.954 com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x1b-192.168.0.13:0!
    31/01/2013 09:56:51.626 mdworker[488]: Unable to talk to lsboxd
    31/01/2013 09:56:51.746 sandboxd[489]: ([488]) mdworker(488) deny mach-lookup com.apple.ls.boxd
    31/01/2013 09:56:52.000 kernel[0]: Sandbox: sandboxd(489) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 09:57:06.212 CVMServer[83]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    31/01/2013 09:57:06.406 launchctl[493]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.davdaerve.UpdatePodcastsAgent.plist
    31/01/2013 09:57:07.174 CVMServer[83]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    31/01/2013 09:57:14.580 Folder Sync[495]: Growl.framework loaded
    31/01/2013 09:57:14.645 Folder Sync[495]: Using existing log dir: /Users/davedaerve/Library/com.destek.foldersync
    31/01/2013 09:57:20.128 Folder Sync[495]: Scheduler: Run Check for 9:57
    31/01/2013 09:57:26.027 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 1
    31/01/2013 09:57:26.129 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 15
    31/01/2013 09:57:26.258 mDNSResponderHelper[497]: do_mDNSSendWakeupPacket write failed Device not configured
    31/01/2013 09:57:26.259 mDNSResponderHelper[497]: do_mDNSSendWakeupPacket write failed Device not configured
    31/01/2013 09:57:26.261 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 16
    31/01/2013 09:57:26.285 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 24
    31/01/2013 09:57:27.132 mDNSResponderHelper[497]: do_mDNSSendWakeupPacket write failed Device not configured
    31/01/2013 09:57:37.838 iTunes[496]:  AVF KeyExchange Version from driver for Certificates 1
    31/01/2013 09:57:46.991 Twitter[498]: font ChicagoBold loaded
    31/01/2013 09:57:47.054 Twitter[498]: font pixChicago loaded
    31/01/2013 09:57:48.244 Twitter[498]: could not fetch oAuthTokenSecret, this account will get removed
    31/01/2013 09:57:51.623 Mail[499]: Using V2 Layout
    31/01/2013 09:57:52.921 com.apple.SecurityServer[16]: Session 100012 created
    31/01/2013 09:57:56.499 com.apple.launchd[1]: (com.apple.qtkitserver[258]) Exited: Killed: 9
    31/01/2013 09:57:56.000 kernel[0]: memorystatus_thread: idle exiting pid 258 [com.apple.qtkits]
    31/01/2013 09:57:57.000 kernel[0]: memorystatus_thread: idle exiting pid 242 [cfprefsd]
    31/01/2013 09:57:58.338 librariand[500]: MMe quota status changed: under quota
    31/01/2013 09:57:58.350 com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x1c-192.168.0.6:0!
    31/01/2013 09:57:58.998 com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x1d-192.168.0.5:0!
    31/01/2013 09:57:59.088 Mail[499]: *** -[IADomainCache init]: IA domains cache is out of date.
    31/01/2013 09:58:00.137 Folder Sync[495]: Scheduler: Run Check for 9:58
    31/01/2013 09:58:00.147 com.apple.launchd.peruser.501[141]: ([0x0-0x14014].com.apple.inputmethod.ironwood[223]) Exited: Killed: 9
    31/01/2013 09:58:00.000 kernel[0]: memorystatus_thread: idle exiting pid 223 [DictationIM]
    31/01/2013 09:58:19.718 Mail[499]: Couldn't contact spell checker for Multilingual
    31/01/2013 09:58:48.777 com.apple.launchd[1]: (com.apple.iCloudHelper[232]) Exited: Killed: 9
    31/01/2013 09:58:48.000 kernel[0]: memorystatus_thread: idle exiting pid 232 [com.apple.iCloud]
    31/01/2013 09:58:49.895 com.apple.launchd.peruser.501[141]: (com.apple.tccd[213]) Exited: Killed: 9
    31/01/2013 09:58:49.000 kernel[0]: memorystatus_thread: idle exiting pid 213 [tccd]
    31/01/2013 09:58:49.937 WindowServer[106]: CGXRegisterWindowWithSystemStatusBar: window b already registered
    31/01/2013 09:58:50.000 kernel[0]: memorystatus_thread: idle exiting pid 211 [xpcd]
    31/01/2013 09:58:50.453 com.apple.launchd[1]: (com.apple.xpcd.F5010000-0000-0000-0000-000000000000[211]) Exited: Killed: 9
    31/01/2013 09:58:54.351 com.apple.launchd.peruser.0[278]: (com.apple.distnoted.xpc.agent[300]) Exited: Killed: 9
    31/01/2013 09:58:54.000 kernel[0]: memorystatus_thread: idle exiting pid 300 [distnoted]
    31/01/2013 09:58:54.000 kernel[0]: memorystatus_thread: idle exiting pid 240 [distnoted]
    31/01/2013 09:58:54.920 com.apple.launchd.peruser.501[141]: (com.apple.accountsd[210]) Exited: Killed: 9
    31/01/2013 09:58:55.000 kernel[0]: memorystatus_thread: idle exiting pid 210 [accountsd]
    31/01/2013 09:58:55.559 com.apple.launchd.peruser.501[141]: (com.apple.CalendarAgent[187]) Exited: Killed: 9
    31/01/2013 09:58:55.000 kernel[0]: memorystatus_thread: idle exiting pid 187 [CalendarAgent]
    31/01/2013 09:58:58.000 kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    31/01/2013 09:58:58.000 kernel[0]: macx_swapon SUCCESS
    31/01/2013 09:59:00.149 Folder Sync[495]: Scheduler: Run Check for 9:59
    31/01/2013 09:59:06.000 kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    31/01/2013 09:59:06.000 kernel[0]: macx_swapon SUCCESS
    31/01/2013 09:59:08.759 launchctl[512]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.davdaerve.UpdatePodcastsAgent.plist
    31/01/2013 10:00:00.158 Folder Sync[495]: Scheduler: Run Check for 10:00
    31/01/2013 10:00:01.180 launchctl[525]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.davdaerve.UpdatePodcastsAgent.plist
    31/01/2013 10:00:09.000 kernel[0]: memorystatus_thread: idle exiting pid 515 [cfprefsd]
    31/01/2013 10:00:33.665 mdworker[639]: Unable to talk to lsboxd
    31/01/2013 10:00:34.000 kernel[0]: Sandbox: sandboxd(640) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 10:00:34.311 sandboxd[640]: ([639]) mdworker(639) deny mach-lookup com.apple.ls.boxd
    31/01/2013 10:01:00.171 Folder Sync[495]: Scheduler: Run Check for 10:01
    31/01/2013 10:01:10.060 Folder Sync[495]: objc[495]: Object 0x10bc05ab0 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    31/01/2013 10:01:14.200 com.apple.launchd.peruser.501[141]: (com.apple.tccd[647]) Exited: Killed: 9
    31/01/2013 10:01:14.000 kernel[0]: memorystatus_thread: idle exiting pid 647 [tccd]
    31/01/2013 10:01:31.206 lsboxd[228]: @AE relay 4755524c:4755524c
    31/01/2013 10:01:31.502 WindowServer[106]: CGXRegisterWindowWithSystemStatusBar: window b already registered
    31/01/2013 10:01:57.362 CalendarAgent[660]: *** -[IADomainCache init]: IA domains cache is out of date.
    31/01/2013 10:02:00.182 Folder Sync[495]: Scheduler: Run Check for 10:02
    31/01/2013 10:02:14.579 CalendarAgent[660]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=CoreDAVHTTPStatusErrorDomain Code=503 "The operation couldn’t be completed. (CoreDAVHTTPStatusErrorDomain error 503.)" UserInfo=0x7fc9524481d0 {AccountName=Yahoo!, CalDAVErrFromRefresh=YES, CoreDAVHTTPHeaders=<CFBasicHash 0x7fc9520cc0c0 [0x10aa25fd0]>{type = immutable dict, count = 11,
    entries =>
              0 : Case Insensitive Key: Connection = <CFString 0x7fc9520b7470 [0x10aa25fd0]>{contents = "keep-alive"}
              1 : Case Insensitive Key: Content-Type = <CFString 0x7fc9520bc410 [0x10aa25fd0]>{contents = "text/html; charset=UTF-8"}
              2 : Case Insensitive Key: Retry-After = <CFString 0x7fc952086140 [0x10aa25fd0]>{contents = "3600"}
              3 : Case Insensitive Key: Via = <CFString 0x7fc9520cb850 [0x10aa25fd0]>{contents = "HTTP/1.1 calgate003.cal.ac4.yahoo.com (YahooTrafficServer/1.19.11 [c s f ])"}
              4 : Case Insensitive Key: Age = <CFString 0x10a9fa110 [0x10aa25fd0]>{contents = "0"}
              5 : Case Insensitive Key: P3P = <CFString 0x7fc952086050 [0x10aa25fd0]>{contents = "policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV""}
              6 : Case Insensitive Key: Date = <CFString 0x7fc95209e440 [0x10aa25fd0]>{contents = "Thu, 31 Jan 2013 10:02:14 GMT"}
              7 : Case Insensitive Key: Server = <CFString 0x7fc9520b7490 [0x10aa25fd0]>{contents = "YTS/1.19.11"}
              8 : Case Insensitive Key: Transfer-Encoding = <CFString 0x10bf826f8 [0x10aa25fd0]>{contents = "Identity"}
              11 : Case Insensitive Key: Cache-Control = <CFString 0x7fc9520cff40 [0x10aa25fd0]>{contents = "private"}
              12 : Case Insensitive Key: Vary = <CFString 0x7fc9520b67f0 [0x10aa25fd0]>{contents = "Accept-Encoding"}
    31/01/2013 10:03:00.193 Folder Sync[495]: Scheduler: Run Check for 10:03
    31/01/2013 10:03:23.921 iTunes[496]: _NotificationSocketReadCallbackGCD (thread 0x10717e180): Unexpected connection closure...
    31/01/2013 10:03:23.923 ath[665]: _NotificationSocketReadCallbackGCD (thread 0x101b21180): Unexpected connection closure...
    31/01/2013 10:03:25.439 mds[40]: (Warning) FMW: event:1 had an arg mismatch.  ac:2 am:51
    31/01/2013 10:03:29.551 com.apple.launchd.peruser.501[141]: (com.apple.CalendarAgent[660]) Exited: Killed: 9
    31/01/2013 10:03:29.000 kernel[0]: memorystatus_thread: idle exiting pid 660 [CalendarAgent]
    31/01/2013 10:03:45.425 iTunes[496]: _NotificationSocketReadCallbackGCD (thread 0x10717e180): Unexpected connection closure...
    31/01/2013 10:03:45.427 ath[665]: _NotificationSocketReadCallbackGCD (thread 0x101b21180): Unexpected connection closure...
    31/01/2013 10:04:00.203 Folder Sync[495]: Scheduler: Run Check for 10:04
    31/01/2013 10:04:13.627 CalendarAgent[673]: *** -[IADomainCache init]: IA domains cache is out of date.
    31/01/2013 10:04:16.750 Twitter[498]: will terminate
    31/01/2013 10:04:16.789 Twitter[498]: Error: no oAuthTokenSecret set for account
    31/01/2013 10:04:23.078 CalendarAgent[673]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=CoreDAVHTTPStatusErrorDomain Code=401 "The operation couldn’t be completed. (CoreDAVHTTPStatusErrorDomain error 401.)" UserInfo=0x7fca11285a50 {AccountName=Yahoo!, CalDAVErrFromRefresh=YES, CoreDAVHTTPHeaders=<CFBasicHash 0x7fca1160a910 [0x10f5b6fd0]>{type = immutable dict, count = 11,
    entries =>
              0 : Case Insensitive Key: Connection = <CFString 0x7fca13581410 [0x10f5b6fd0]>{contents = "keep-alive"}
              1 : Case Insensitive Key: Content-Type = <CFString 0x7fca11607420 [0x10f5b6fd0]>{contents = "text/html; charset=UTF-8"}
              2 : Case Insensitive Key: Server = <CFString 0x7fca11607450 [0x10f5b6fd0]>{contents = "YTS/1.19.11"}
              3 : Case Insensitive Key: Via = <CFString 0x7fca1160a8b0 [0x10f5b6fd0]>{contents = "HTTP/1.1 calgate007.cal.ac4.yahoo.com (YahooTrafficServer/1.19.11 [c s f ])"}
              4 : Case Insensitive Key: Age = <CFString 0x10f58b110 [0x10f5b6fd0]>{contents = "0"}
              5 : Case Insensitive Key: P3P = <CFString 0x7fca11610b00 [0x10f5b6fd0]>{contents = "policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV""}
              6 : Case Insensitive Key: Date = <CFString 0x7fca135f2890 [0x10f5b6fd0]>{contents = "Thu, 31 Jan 2013 10:04:22 GMT"}
              7 : Case Insensitive Key: Transfer-Encoding = <CFString 0x110b206f8 [0x10f5b6fd0]>{contents = "Identity"}
              9 : Case Insensitive Key: Www-Authenticate = <CFString 0x7fca135f28c0 [0x10f5b6fd0]>{contents = "Basic realm="Zimbra""}
              11 : Case Insensitive Key: Cache-Control = <CFString 0x7fca116d2810 [0x10f5b6fd0]>{contents = "private"}
              12 : Case Insensitive Key: Vary = <CFString 0x7fca135f28f0 [0x10f5b6fd0]>{contents = "Accept-Encoding"}
    31/01/2013 10:04:27.512 iTunes[496]: _NotificationSocketReadCallbackGCD (thread 0x10717e180): Unexpected connection closure...
    31/01/2013 10:04:27.514 ath[665]: _NotificationSocketReadCallbackGCD (thread 0x101b21180): Unexpected connection closure...
    31/01/2013 10:04:27.851 Dock[156]: trying to take pid 499 out of fullscreen but it is not the current space
    31/01/2013 10:04:27.972 Mail[499]: CGSGetWindowTags: Invalid window 0x0
    31/01/2013 10:04:27.972 Mail[499]: void _NSMoveWindowToSpaceUnlessSticky(NSInteger, CGSSpaceID): CGSGetWindowTags(cid, win, tags, kCGSRealMaximumTagSize) returned CGError 1000 on line 1247
    31/01/2013 10:04:27.977 WindowServer[106]: CGXSetWindowListTags: Invalid window 0
    31/01/2013 10:04:33.945 iTunes[496]: 2013-01-31 10:04:33.944722 AM [AVSystemController] Stopping AirPlay
    31/01/2013 10:04:34.218 WindowServer[106]: CGXGetConnectionProperty: Invalid connection 82119
    31/01/2013 10:04:34.218 WindowServer[106]: CGXGetConnectionProperty: Invalid connection 82119
    31/01/2013 10:04:34.219 WindowServer[106]: CGXGetConnectionProperty: Invalid connection 82119
    31/01/2013 10:05:07.671 mdworker[671]: Unable to talk to lsboxd
    31/01/2013 10:05:08.000 kernel[0]: Sandbox: sandboxd(680) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 10:05:08.457 sandboxd[680]: ([671]) mdworker(671) deny mach-lookup com.apple.ls.boxd
    31/01/2013 10:05:21.289 com.apple.SecurityServer[16]: Killing auth hosts
    31/01/2013 10:05:21.289 com.apple.SecurityServer[16]: Session 100012 destroyed
    31/01/2013 10:09:59.228 WindowServer[106]: CGXRegisterWindowWithSystemStatusBar: window b already registered
    31/01/2013 10:10:15.787 mdworker[697]: Unable to talk to lsboxd
    31/01/2013 10:10:16.000 kernel[0]: Sandbox: sandboxd(810) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 10:10:16.708 sandboxd[810]: ([697]) mdworker(697) deny mach-lookup com.apple.ls.boxd

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

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

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

Maybe you are looking for

  • Delivery header output issue

    Hello every one, We have a plant assigned to multiple storage locations(A,B) and we have different printers at both the str.locations.(1,2) Output procedure is assigned to the delivery header. when ever i use storage location A it should print on pri

  • My phone will no longer log in to Skype

    It's a voip841 and this has been going on since yesterday. I can login to Skype just fine on my computer as you can see. I did reset the voip841 to factory defaults which did nothing. So, any advice on what's going on?

  • Migrating CA but CA role was already on new server. Whats the worst that can happen?

    Here's a little background for this migration. Old environment was SBS 2008. Everything baked into one server. New environment we are migrating to is Server 2012 R2. Will have 8 different 2012 r2 VMs varied by roles. Since this is a small network we

  • CC will not let me sign in!

    Just reinstalled after a liscence update(team). Username and Password are fine via the web. Go to sign into creative cloud from desk top, and it automatically signs me out. (I uninstalled all programs and creative cloud prior and then did a clean ins

  • Apple tv wont connect to my network

    Apple tv connects to my wifi but doesnt ever ask for my login and password like it should, any ideas? Its at an rv park and i dont control the modem