BPS0 - very long runtime

Hi gurus,
During the manual planning in BPS0 long runtime occurs.
FOX formulas are used.
There is lot of data selected, but it is business needs.
Memory is OK as I can see in st02 - 10-15% of resources are usually used, no dumps, but very long runtime.
I examine hardware, system, db with different methods, nothing unusual.
Could you please give me more advices, how I can do extra check of the system? (from basis point of view preferably)
BW 3.1. - patch 22
SEM-BW 3.5 - patch 18
Thanks in advance
Elena

Hello Elena,
you need to take a structured approach. "Examining" things is fine but usually does not lead to results quickly.
Performance tuning works best as follows:
1) Check statistics or run a trace
2) Find the slowest part
3) Make this part run faster (better, eliminate it)
4) Back to #1 until it is fast enough
For the first round, use the BPS statistics. They will tell you if BW data selection or BPS functions are the slowest part.
If BW is the problem, use aggregates and do all the things to speed up BW (see course BW360).
If BPS is the problem, check the webinar I did earlier this year: https://www.sdn.sap.com/irj/sdn/webinar?rid=/webcontent/uuid/2ad07de4-0601-0010-a58c-96b6685298f9 [original link is broken]
Also the BPS performance guide is a must read: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7c85d590-0201-0010-20b5-f9d0aa10c53f
Next, would be SQL trace and ABAP performance trace (ST05, SE30). Check the traces for any custom coding or custom tables at the top of the runtime measurements.
Finally, you can often see from the program names in the ABAP runtime trace, which components in BPS are the slowest. See if you can match this to the configuration that's used in BPS (variables, characteristic relationships, data slices, etc).
Regards
Marc
SAP NetWeaver RIG

Similar Messages

  • Init load very long runtime 0CRM_COMPLAINTS SALES Analyses

    Hi,
    We have launched a init load (infopackage 0CRM_COMPLAINTS)(BI 7.0) which extract 180201 claims from our CRM 2007 system.
    The first packet (data package size 5000 records) have been extracted in 5minutes, but when it begins the 10 packets, it last 20min and 30 between each of them.
    This treatment lasted 12 hours (we don't see optimization point at the moment)
    The first thought is to decrease packet size but I don't find specific note about this problem, or any lead.
    Any help will be grateful.
    Chris

    HI
    you check the SAP Note 692195 - Question 1 ( shown below )
    Question 1 : The Extraction from CRM to BW takes a very long time. What can be done? (Performance Issues)
    Suggestion 1: Please implement notes  653645 (Collective note) and 639072(Parallel  Processing).
    The performance could be slow because of the wrong control parameters used for packaging.
    You can change the package size for the data extraction.
    Also note that changing the package size in the transaction SBIW would imply a change for all the extractors. Instead, you could follow the path in the bw system.
    Infopackage (scheduler)    > Menu 'Scheduler'   > 'DataS. default data transfer'   > maintain the value as 1500 or 1000(This value is variable)
    The package size depends on the Resources available at the customer side (The no of parallel processes that could be assigned = 1.5 times the no of CPU's available approx.)
    Regards,
    Sathya

  • Very long runtime for export

    Hi Guru:
    We are using the Send button to export the SPM data to SAP DSE service.
    What we find out is the functionality is extremly slow, for the same amount of data with BW openhub, we could export it in a couple of hours, but with the SPM function, it will take 1 day.
    Is there anyway to improve the performance, tips or tricks?
    Also the send function will export all data, is there any program could export the file for 1 object?
    Thanks.
    Eric

    HI Ines
    jload process needs more heap memory 
    Restart the jload with more heap memory, use 1.5 Gb or 2 Gb
    Note 1173398 - jload export fails with OutOfMemoryException
    Also check
    Note 1120872 - Hom./Het.System Copy SAP NetWeaver 7.0 SR3
    Error during export/import with jload
    Symptom:
    Jload aborts with error: SEVERE: java.lang.OutOfMemoryError
    Solution:
    5. Stop SAPinst.
    6. In the control.xml file in the installation directory, search for
                  "jload call args".
    7. Replace "-Xmx512m" by "-Xmx1024m" in the following lines:
                  var jdkArgs = installer. onOS400() ? ["-showversion", "-Xms256m", "-Xmx1536m"] : ["-showversion", "-Xmx512m"];
                  switch( new SystemMgt().getSystemInfo(). getOSFAName() ) {
    8. Save your entries and restart SAPinst.
    Best of luck
    Award points if this post is helpful
    Regards
    dEE
    Edited by: Deep Kwatra on Nov 18, 2008 4:43 PM

  • Web Application Designer 7 - Long Runtime

    Hi,
    I'm working in BI-7 environment and to fulfil the users' requirement we have developed a web template having almost 30 queries in it.
    We are facing very long runtime of that report on web. Afer analysing with BI Statistics we came to know that DB and OLAP are not taking very long time to run but its the front-end (web template) which is causing delay. Another observation is maximum time is consumed while web template is being loaded/initialized, and once loaded fliping between different tabs (reports) doesn't take much time.
    My questions are;
    What can I do to reduce web template intialization/loading time?
    Is there any way I can get time taken by front-end in statistics? (currently we can get DB and OLAP time through BI statistics cube and consider remaing time as front-end time, because standard BI statistics cube is unable to get front-end time when report is running on browser)
    What is the technical processes involve when information moves back from DB to browser?
    Your earliest help would be highly appreciated. Please let me know if you require any further information.
    Regards,
    Shabbar
    0044 (0) 7856 048 843

    Hi,
    It asks you for a log in to the Portal, because the output of the Web Templates can be viewed only through the Enterprise Portal. This is perfectly normal. BI-EP Configuraion should be proper and you need to have a Login-id and Password for the Portal.
    For using WAD and design the front end, go through the below link. It would help you.
    http://help.sap.com/saphelp_nw70/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm

  • Launching Browser from Java when Browser URL is very  long

    Hi,
    I am trying to launch a browser from Java.
    I am doing the following.
    String command = "cmd" + "/c" + "start" + " browserURL";
    Process p = Runtime.getRuntime()exec(command);
    Note: My browserURL is very long.
    Now the browser is invoked. But the URL shown is incomplete and hence
    browser is unable to open the required application.
    Can someone help me in this.
    One way is to increase the buffer size on the command prompt?
    Is there any java command for this?
    Is there any other way to solve this issue.
    Thanks,
    AR

    this is my second time posting this, take note of it. I can't remember where i got it from, but credits go to the person that wrote it. It has helped me out thousands of times!!!
    to use, compile, then call from your program:
    org.newio.utils.BrowserLauncher.openURL("your url here")dfwtc
    package org.newio.utils;
    import java.io.File;
    import java.io.IOException;
    import java.lang.reflect.*;
    public class BrowserLauncher
        private static int jvm;
        private static Object browser;
        private static boolean loadedWithoutErrors;
        private static Class mrjFileUtilsClass;
        private static Class mrjOSTypeClass;
        private static Class macOSErrorClass;
        private static Class aeDescClass;
        private static Constructor aeTargetConstructor;
        private static Constructor appleEventConstructor;
        private static Constructor aeDescConstructor;
        private static Method findFolder;
        private static Method getFileType;
        private static Method makeOSType;
        private static Method putParameter;
        private static Method sendNoReply;
        private static Object kSystemFolderType;
        private static Integer keyDirectObject;
        private static Integer kAutoGenerateReturnID;
        private static Integer kAnyTransactionID;
        private static final int MRJ_2_0 = 0;
        private static final int MRJ_2_1 = 1;
        private static final int WINDOWS_NT = 2;
        private static final int WINDOWS_9x = 3;
        private static final int OTHER = -1;
        private static final String FINDER_TYPE = "FNDR";
        private static final String FINDER_CREATOR = "MACS";
        private static final String GURL_EVENT = "GURL";
        private static final String FIRST_WINDOWS_PARAMETER = "/c";
        private static final String SECOND_WINDOWS_PARAMETER = "start";
        private static final String NETSCAPE_OPEN_PARAMETER_START = " -remote 'openURL(";
        private static final String NETSCAPE_OPEN_PARAMETER_END = ")'";
        private static String errorMessage;
        private BrowserLauncher()
        private static boolean loadClasses()
            switch(jvm)
            default:
                break;
            case 0: // '\0'
                try
                    Class aeTargetClass = Class.forName("com.apple.MacOS.AETarget");
                    macOSErrorClass = Class.forName("com.apple.MacOS.MacOSError");
                    Class osUtilsClass = Class.forName("com.apple.MacOS.OSUtils");
                    Class appleEventClass = Class.forName("com.apple.MacOS.AppleEvent");
                    Class aeClass = Class.forName("com.apple.MacOS.ae");
                    aeDescClass = Class.forName("com.apple.MacOS.AEDesc");
                    aeTargetConstructor = aeTargetClass.getDeclaredConstructor(new Class[] {
                        Integer.TYPE
                    appleEventConstructor = appleEventClass.getDeclaredConstructor(new Class[] {
                        Integer.TYPE, Integer.TYPE, aeTargetClass, Integer.TYPE, Integer.TYPE
                    aeDescConstructor = aeDescClass.getDeclaredConstructor(new Class[] {
                        java.lang.String.class
                    makeOSType = osUtilsClass.getDeclaredMethod("makeOSType", new Class[] {
                        java.lang.String.class
                    putParameter = appleEventClass.getDeclaredMethod("putParameter", new Class[] {
                        Integer.TYPE, aeDescClass
                    sendNoReply = appleEventClass.getDeclaredMethod("sendNoReply", new Class[0]);
                    Field keyDirectObjectField = aeClass.getDeclaredField("keyDirectObject");
                    keyDirectObject = (Integer)keyDirectObjectField.get(null);
                    Field autoGenerateReturnIDField = appleEventClass.getDeclaredField("kAutoGenerateReturnID");
                    kAutoGenerateReturnID = (Integer)autoGenerateReturnIDField.get(null);
                    Field anyTransactionIDField = appleEventClass.getDeclaredField("kAnyTransactionID");
                    kAnyTransactionID = (Integer)anyTransactionIDField.get(null);
                    break;
                catch(ClassNotFoundException cnfe)
                    errorMessage = cnfe.getMessage();
                    return false;
                catch(NoSuchMethodException nsme)
                    errorMessage = nsme.getMessage();
                    return false;
                catch(NoSuchFieldException nsfe)
                    errorMessage = nsfe.getMessage();
                    return false;
                catch(IllegalAccessException iae)
                    errorMessage = iae.getMessage();
                return false;
            case 1: // '\001'
                try
                    mrjFileUtilsClass = Class.forName("com.apple.mrj.MRJFileUtils");
                    mrjOSTypeClass = Class.forName("com.apple.mrj.MRJOSType");
                    Field systemFolderField = mrjFileUtilsClass.getDeclaredField("kSystemFolderType");
                    kSystemFolderType = systemFolderField.get(null);
                    findFolder = mrjFileUtilsClass.getDeclaredMethod("findFolder", new Class[] {
                        mrjOSTypeClass
                    getFileType = mrjFileUtilsClass.getDeclaredMethod("getFileType", new Class[] {
                        java.io.File.class
                    break;
                catch(ClassNotFoundException cnfe)
                    errorMessage = cnfe.getMessage();
                    return false;
                catch(NoSuchFieldException nsfe)
                    errorMessage = nsfe.getMessage();
                    return false;
                catch(NoSuchMethodException nsme)
                    errorMessage = nsme.getMessage();
                    return false;
                catch(SecurityException se)
                    errorMessage = se.getMessage();
                    return false;
                catch(IllegalAccessException iae)
                    errorMessage = iae.getMessage();
                return false;
            return true;
        private static Object locateBrowser()
            if(browser != null)
                return browser;
            switch(jvm)
            case 0: // '\0'
                try
                    Integer finderCreatorCode = (Integer)makeOSType.invoke(null, new Object[] {
                        "MACS"
                    Object aeTarget = aeTargetConstructor.newInstance(new Object[] {
                        finderCreatorCode
                    Integer gurlType = (Integer)makeOSType.invoke(null, new Object[] {
                        "GURL"
                    Object appleEvent = appleEventConstructor.newInstance(new Object[] {
                        gurlType, gurlType, aeTarget, kAutoGenerateReturnID, kAnyTransactionID
                    return appleEvent;
                catch(IllegalAccessException iae)
                    browser = null;
                    errorMessage = iae.getMessage();
                    return browser;
                catch(InstantiationException ie)
                    browser = null;
                    errorMessage = ie.getMessage();
                    return browser;
                catch(InvocationTargetException ite)
                    browser = null;
                    errorMessage = ite.getMessage();
                    return browser;
            case 1: // '\001'
                File systemFolder;
                try
                    systemFolder = (File)findFolder.invoke(null, new Object[] {
                        kSystemFolderType
                catch(IllegalArgumentException iare)
                    browser = null;
                    errorMessage = iare.getMessage();
                    return browser;
                catch(IllegalAccessException iae)
                    browser = null;
                    errorMessage = iae.getMessage();
                    return browser;
                catch(InvocationTargetException ite)
                    browser = null;
                    errorMessage = ite.getTargetException().getClass() + ": " + ite.getTargetException().getMessage();
                    return browser;
                String systemFolderFiles[] = systemFolder.list();
                for(int i = 0; i < systemFolderFiles.length; i++)
                    try
                        File file = new File(systemFolder, systemFolderFiles);
    if(file.isFile())
    Object fileType = getFileType.invoke(null, new Object[] {
    file
    if("FNDR".equals(fileType.toString()))
    browser = file.toString();
    return browser;
    catch(IllegalArgumentException iare)
    browser = browser;
    errorMessage = iare.getMessage();
    return null;
    catch(IllegalAccessException iae)
    browser = null;
    errorMessage = iae.getMessage();
    return browser;
    catch(InvocationTargetException ite)
    browser = null;
    errorMessage = ite.getTargetException().getClass() + ": " + ite.getTargetException().getMessage();
    return browser;
    browser = null;
    break;
    case 2: // '\002'
    browser = "cmd.exe";
    break;
    case 3: // '\003'
    browser = "command.com";
    break;
    case -1:
    default:
    browser = "netscape";
    break;
    return browser;
    public static void openURL(String url)
    throws IOException
    if(!loadedWithoutErrors)
    throw new IOException("Exception in finding browser: " + errorMessage);
    Object browser = locateBrowser();
    if(browser == null)
    throw new IOException("Unable to locate browser: " + errorMessage);
    switch(jvm)
    case 0: // '\0'
    Object aeDesc = null;
    try
    try
    aeDesc = aeDescConstructor.newInstance(new Object[] {
    url
    putParameter.invoke(browser, new Object[] {
    keyDirectObject, aeDesc
    sendNoReply.invoke(browser, new Object[0]);
    catch(InvocationTargetException ite)
    throw new IOException("InvocationTargetException while creating AEDesc: " + ite.getMessage());
    catch(IllegalAccessException iae)
    throw new IOException("IllegalAccessException while building AppleEvent: " + iae.getMessage());
    catch(InstantiationException ie)
    throw new IOException("InstantiationException while creating AEDesc: " + ie.getMessage());
    break;
    finally
    aeDesc = null;
    browser = null;
    case 1: // '\001'
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    break;
    case 2: // '\002'
    case 3: // '\003'
    Runtime.getRuntime().exec(new String[] {
    (String)browser, "/c", "start", url
    break;
    case -1:
    Process process = Runtime.getRuntime().exec((String)browser + " -remote 'openURL(" + url + ")'");
    try
    int exitCode = process.waitFor();
    if(exitCode != 0)
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    catch(InterruptedException ie)
    throw new IOException("InterruptedException while launching browser: " + ie.getMessage());
    break;
    default:
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    break;
    static
    loadedWithoutErrors = true;
    String osName = System.getProperty("os.name");
    if("Mac OS".equals(osName))
    String mrjVersion = System.getProperty("mrj.version");
    String majorMRJVersion = mrjVersion.substring(0, 3);
    try
    double version = Double.valueOf(majorMRJVersion).doubleValue();
    if(version == 2D)
    jvm = 0;
    } else
    if(version >= 2.1000000000000001D)
    jvm = 1;
    } else
    loadedWithoutErrors = false;
    errorMessage = "Unsupported MRJ version: " + version;
    catch(NumberFormatException numberformatexception)
    loadedWithoutErrors = false;
    errorMessage = "Invalid MRJ version: " + mrjVersion;
    } else
    if(osName.startsWith("Windows"))
    if(osName.indexOf("9") != -1)
    jvm = 3;
    } else
    jvm = 2;
    } else
    jvm = -1;
    if(loadedWithoutErrors)
    loadedWithoutErrors = loadClasses();
    suck my balls

  • IMAC takes very long to boot and and shut down.

    My iMAC 21" takes very long (15-20 mts) to boot up and become responsive. It also takes More than 5 mts to shut down. The HW test and disk utility do not report any issue. I have Erased the disk and re-installed OS X 10.9.2 two times. On the second re-install, I deliberately did not restore the backup from the time machine. It works well after it settles down. I changed the mouse and have cheked the Apple wireless keyboard.
    The problems began after the last security update to the best of my recollection. Since there does not appear to be any HW issue and I have re-installed the software, I am unable to determine what else I can do to resolve the issue.

    Hello. Thank you for responding to my message.
    I have shut down the system at 8.28am local time (took about 2 mts which is not bad). I then restarted and it took more than 10 mts to reach the login prompt. After login, it took several more minutes until all the icons were displayed at the bottom. After clicking on Safari and reaching the top hits pages also took an unresonable amount of time considering it is a quad core MAC and I am on a fibre internet connection. (Other computers at home respond quickly). I have to add that I am experiencing intermittent performane issues even when the MAC settles down after the long startup time. i.e. get to see the coloured spinning wheel several times.
    I have tried my best to cut down the log size but found many unique lines as the boot took so long. So, apologies for the length of the log. The System diagnostics section in the Console app is blank with no reports at all.
    2/5/14 8:28:23.982 am com.apple.launchd.peruser.501[179]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 5 seconds
    2/5/14 8:28:25.782 am WindowServer[83]: disable_update_timeout: UI updates were forcibly disabled by application "loginwindow" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:28:26.416 am WindowServer[83]: common_reenable_update: UI updates were finally reenabled by application "loginwindow" after 1.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:28:26.424 am WindowServer[83]: CGXGetConnectionProperty: Invalid connection 51715
    2/5/14 8:28:26.431 am com.apple.launchd[1]: (com.apple.ShareKitHelper[252]) Exited: Killed: 9
    2/5/14 8:28:26.431 am com.apple.launchd.peruser.501[179]: (com.apple.AirPlayUIAgent[219]) Exited: Killed: 9
    2/5/14 8:28:26.437 am com.apple.launchd.peruser.501[179]: ([0x0-0x17017].com.apple.AppleSpell[310]) Exited: Killed: 9
    2/5/14 8:28:32.476 am sessionlogoutd[379]: sessionlogoutd Launched
    2/5/14 8:28:32.483 am sessionlogoutd[379]: DEAD_PROCESS: 41 console
    2/5/14 8:28:32.504 am airportd[63]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:28:47.258 am shutdown[380]: halt by _coreaudiod:
    2/5/14 8:28:47.000 am kernel[0]: Kext loading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext unloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext autounloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kernel requests now disabled.
    2/5/14 8:28:47.258 am shutdown[380]: SHUTDOWN_TIME: 1398990527 258440
    2/5/14 8:30:30.000 am bootlog[0]: BOOT_TIME 1398990630 0
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am kernel[0]: Longterm timer threshold: 1000 ms
    2/5/14 8:31:56.000 am kernel[0]: PMAP: PCID enabled
    2/5/14 8:31:56.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    2/5/14 8:31:56.000 am kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    2/5/14 8:31:56.000 am kernel[0]: vm_page_bootstrap: 1861432 free pages and 219336 wired pages
    2/5/14 8:31:56.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    2/5/14 8:31:56.000 am kernel[0]: zone leak detection enabled
    2/5/14 8:31:56.000 am kernel[0]: "vm_compressor_mode" is 4
    2/5/14 8:31:56.000 am kernel[0]: standard timeslicing quantum is 10000 us
    2/5/14 8:31:56.000 am kernel[0]: standard background quantum is 2500 us
    2/5/14 8:31:56.000 am kernel[0]: mig_table_max_displ = 74
    2/5/14 8:31:56.000 am kernel[0]: TSC Deadline Timer supported and enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Sandbox
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Quarantine
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2/5/14 8:31:56.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2/5/14 8:31:56.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    2/5/14 8:31:56.000 am kernel[0]: MAC Framework successfully initialized
    2/5/14 8:31:56.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    2/5/14 8:31:56.000 am kernel[0]: AppleKeyStore starting (BUILT: Jan 16 2014 20:19:00)
    2/5/14 8:31:56.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    2/5/14 8:31:56.000 am kernel[0]: ACPI: sleep states S3 S4 S5
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 3467
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    2/5/14 8:31:56.000 am kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration begin ]
    2/5/14 8:31:56.000 am kernel[0]: console relocated to 0xf80020000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration end, bridges 13, devices 16 ]
    2/5/14 8:31:56.000 am kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    2/5/14 8:31:56.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    2/5/14 8:31:56.000 am kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    2/5/14 8:31:56.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    2/5/14 8:31:56.000 am kernel[0]: rooting via boot-uuid from /chosen: BAEA055B-14AD-3566-B5E1-7009F2439E7E
    2/5/14 8:31:56.000 am 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>
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2/5/14 8:31:56.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD ST1000LM024 Media/IOGUIDPartitionScheme/Customer@2
    2/5/14 8:31:56.000 am kernel[0]: BSD root: disk0s2, major 1, minor 3
    2/5/14 8:31:56.000 am kernel[0]: BTCOEXIST off
    2/5/14 8:31:56.000 am kernel[0]: BRCM tunables:
    2/5/14 8:31:56.000 am kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    2/5/14 8:31:56.000 am kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: hfs: mounted Macintosh HD on device root_device
    2/5/14 8:31:56.000 am kernel[0]: pci pause: SDXC
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    2/5/14 8:31:54.439 am com.apple.SecurityServer[14]: Session 100000 created
    2/5/14 8:31:56.000 am kernel[0]: Waiting for DSMOS...
    2/5/14 8:31:56.589 am hidd[48]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    2/5/14 8:31:56.590 am hidd[48]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    2/5/14 8:31:56.000 am kernel[0]: VM Swap Subsystem is ON
    2/5/14 8:31:59.855 am distnoted[20]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:31:59.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2/5/14 8:31:59.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828B FirmwareVersion - 0x0079
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: Previous Shutdown Cause: 5
    2/5/14 8:32:01.000 am kernel[0]: NVDAStartup: Official
    2/5/14 8:32:01.000 am kernel[0]: init
    2/5/14 8:32:01.000 am kernel[0]: probe
    2/5/14 8:32:01.000 am kernel[0]: start
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb400
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    2/5/14 8:32:01.000 am kernel[0]: NVDAGK100HAL loaded and registered
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xab00 -- 0x1800 -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: DSMOS has arrived
    2/5/14 8:32:01.965 am com.apple.usbmuxd[26]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    2/5/14 8:32:02.000 am kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    2/5/14 8:32:04.345 am configd[17]: dhcp_arp_router: en1 SSID unavailable
    2/5/14 8:32:04.354 am configd[17]: setting hostname to "Johns-iMac.local"
    2/5/14 8:32:04.357 am configd[17]: network changed.
    2/5/14 8:32:11.163 am stackshot[29]: Timed out waiting for IOKit to finish matching.
    2/5/14 8:32:21.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:32:21.654 am com.apple.SecurityServer[14]: Entering service
    2/5/14 8:32:24.752 am loginwindow[43]: Login Window Application Started
    2/5/14 8:32:24.752 am awacsd[60]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    2/5/14 8:32:24.758 am awacsd[60]: InnerStore CopyAllZones: no info in Dynamic Store
    2/5/14 8:32:24.760 am digest-service[65]: label: default
    2/5/14 8:32:24.760 am digest-service[65]:           dbname: od:/Local/Default
    2/5/14 8:32:24.760 am digest-service[65]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:32:24.760 am digest-service[65]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:32:24.762 am digest-service[65]: digest-request: uid=0
    2/5/14 8:32:24.768 am UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:32:24.775 am mDNSResponder[40]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    2/5/14 8:32:24.784 am UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: netr probe 0
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: init request
    2/5/14 8:32:24.810 am digest-service[65]: digest-request: init return domain: BUILTIN server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2D_IPC: Loaded
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2DInitialize succeeded
    2/5/14 8:32:24.847 am mDNSResponder[40]:   4: Listening for incoming Unix Domain Socket client requests
    2/5/14 8:32:24.864 am systemkeychain[83]: done file: /var/run/systemkeychaincheck.done
    2/5/14 8:32:39.821 am awacsd[60]: Exiting
    2/5/14 8:32:59.919 am configd[17]: InterfaceNamer: timed out waiting for IOKit to quiesce
    2/5/14 8:32:59.919 am configd[17]: Busy services :
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1 [1, 150166 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert [1, 61878 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0 [1, 58697 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU [1, 58692 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU/X86PlatformPlugin [!registered, !matched, 1, 58622 ms]
    2/5/14 8:32:59.000 am kernel[0]: en2: promiscuous mode enable succeeded
    2/5/14 8:32:59.000 am kernel[0]: en3: promiscuous mode enable succeeded
    2/5/14 8:33:07.391 am airportd[64]: airportdProcessDLILEvent: en1 attached (up)
    2/5/14 8:33:07.000 am kernel[0]: createVirtIf(): ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: in func createVirtualInterface ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    2/5/14 8:33:07.000 am kernel[0]: Created virtif 0xffffff803932dc00 p2p0
    2/5/14 8:33:07.812 am configd[17]: network changed: DNS*
    2/5/14 8:33:19.050 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:23.440 am networkd[102]: networkd.102 built Aug 24 2013 22:08:46
    2/5/14 8:33:24.805 am mds[39]: (Normal) FMW: FMW 0 0
    2/5/14 8:33:29.103 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:35.862 am warmd[25]: [warmctl_evt_timer_bc_activation_timeout:287] BC activation bcstop timer fired!
    2/5/14 8:33:36.000 am kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    2/5/14 8:33:36.000 am kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0fd5
    2/5/14 8:34:09.979 am _networkd[116]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    2/5/14 8:34:14.131 am _networkd[119]: Unable to resolve hostname(s)
    2/5/14 8:34:14.354 am ntpd[109]: proto: precision = 1.000 usec
    2/5/14 8:34:15.055 am WindowServer[84]: Server is starting up
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 released (1 references)
    2/5/14 8:34:15.127 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.128 am WindowServer[84]: init_page_flip: page flip mode is on
    2/5/14 8:34:15.610 am locationd[45]: NBB-Could not get UDID for stable refill timing, falling back on random
    2/5/14 8:34:15.612 am locationd[45]: could not create intermediate property list - Cannot parse a NULL or zero-length data
    2/5/14 8:34:15.612 am locationd[45]: could not deserialize property list from /var/db/locationd/clients.plist
    2/5/14 8:34:15.676 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:16.000 am kernel[0]: en1: 802.11d country code set to 'SG'.
    2/5/14 8:34:16.000 am 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 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    2/5/14 8:34:17.000 am kernel[0]: MacAuthEvent en1   Auth result for: 98:2c:be:74:e5:be  MAC AUTH succeeded
    2/5/14 8:34:17.000 am kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    2/5/14 8:34:17.000 am kernel[0]: AirPort: Link Up on en1
    2/5/14 8:34:17.000 am kernel[0]: en1: BSSID changed to 98:2c:be:74:e5:be
    2/5/14 8:34:17.050 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.053 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.054 am WindowServer[84]: mux_initialize: Couldn't find any matches
    2/5/14 8:34:17.055 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.071 am locationd[45]: Location icon should now be in state 'Inactive'
    2/5/14 8:34:17.000 am kernel[0]: AirPort: RSN handshake complete on en1
    2/5/14 8:34:17.208 am WindowServer[84]: WSMachineUsesNewStyleMirroring: true
    2/5/14 8:34:17.208 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.343 am WindowServer[84]: CGXPerformInitialDisplayConfiguration
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x04280480: Unit 0; Vendor 0x610 Model 0xa012 S/N 0 Dimensions 18.70 x 10.51; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Star-7789' making interface primary (protected network)
    2/5/14 8:34:31.835 am configd[17]: network changed: DNS* Proxy
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: en1: Probing 'Star-7789'
    2/5/14 8:34:31.838 am configd[17]: network changed: v4(en1!:192.168.1.98) DNS+ Proxy+ SMB
    2/5/14 8:34:32.937 am UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    2/5/14 8:34:35.953 am configd[17]: setting hostname to
    2/5/14 8:34:51.522 am digest-service[129]: label: default
    2/5/14 8:34:51.522 am digest-service[129]:           dbname: od:/Local/Default
    2/5/14 8:34:51.522 am digest-service[129]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:34:51.522 am digest-service[129]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:34:51.523 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: netr probe 0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: init request
    2/5/14 8:34:51.528 am digest-service[129]: digest-request: init return domain:    -IMAC server: -IMAC indomain was: <NULL>
    2/5/14 8:34:52.906 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, accelerator 0x0000449b, unit 0, caps QEX|MIPMAP, vram 512 MB
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: init request
    2/5/14 8:34:52.943 am digest-service[129]: digest-request: init return domain: JohnS-IMAC server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor enabled for tile size [256 x 256]
    2/5/14 8:34:52.991 am WindowServer[84]: CGXGLInitMipMap: mip map mode is on
    2/5/14 8:34:53.030 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:53.031 am com.apple.launchd[1]: (com.apple.netbiosd[121]) Exited abnormally: Hangup: 1
    2/5/14 8:34:53.063 am loginwindow[43]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:56.004 am WindowServer[84]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280480 device: 0x7fee2af174f0  isBackBuffered: 1 numComp: 3 numDisp: 3
    2/5/14 8:34:56.004 am WindowServer[84]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fee2af174f0) - enabling OpenGL
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd[135]) Exited abnormally: Hangup: 1
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd) Throttling respawn: Will start in 6 seconds
    2/5/14 8:35:23.873 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.617 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.624 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:25.802 am launchctl[142]: com.apple.findmymacmessenger: Already loaded
    2/5/14 8:35:26.179 am airportd[64]: _doAutoJoin: Already associated to “Star-”. Bailing on auto-join.
    2/5/14 8:35:26.420 am com.apple.SecurityServer[14]: Session 100005 created
    2/5/14 8:35:26.438 am loginwindow[43]: Setting the initial value of the magsave brightness level 1
    2/5/14 8:35:27.177 am loginwindow[43]: Login Window Started Security Agent
    2/5/14 8:35:27.329 am UserEventAgent[144]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:35:27.697 am SecurityAgent[151]: This is the first run
    2/5/14 8:35:27.697 am SecurityAgent[151]: MacBuddy was run = 0
    2/5/14 8:35:32.787 am locationd[45]: locationd was started after an unclean shutdown
    2/5/14 8:35:59.142 am SecurityAgent[151]: User info context values set for
    2/5/14 8:36:17.705 am SecurityAgent[151]: Login Window login proceeding
    2/5/14 8:36:20.463 am loginwindow[43]: Login Window - Returned from Security Agent
    2/5/14 8:36:20.488 am loginwindow[43]: USER_PROCESS: 43 console
    2/5/14 8:36:20.544 am airportd[64]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:36:20.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    2/5/14 8:36:20.704 am com.apple.launchd.peruser.501[171]: Background: Aqua: Registering new GUI session.
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.pluginkit.pkd: Already loaded
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.sbd: Already loaded
    2/5/14 8:36:20.730 am distnoted[175]: # distnote server agent  absolute time: 351.096632167   civil time: Fri May  2 08:36:20 2014   pid: 175 uid: 501  root: no
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.243 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    2/5/14 8:36:21.278 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:36:21.340 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:36:23.176 am UserEventAgent[174]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:36:23.391 am sharingd[202]: Starting Up...
    2/5/14 8:36:23.481 am xpcproxy[207]: assertion failed: 13C1021: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2/5/14 8:36:24.143 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:36:24.771 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: APS timeout encountered (cxn initialization)
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: Failed to get response from APSConnection's initialization method(s)
    2/5/14 8:36:29.021 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:30.083 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:38.144 am WindowServer[84]: disable_update_likely_unbalanced: UI updates still disabled by application "SystemUIServer" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/5/14 8:36:59.246 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:14.483 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:18.728 am com.apple.IconServicesAgent[213]: IconServicesAgent launched.
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3) for weird reason: 2
    2/5/14 8:37:20.975 am com.apple.SecurityServer[14]: Session 100007 created
    2/5/14 8:37:21.162 am com.apple.SecurityServer[14]: Session 100008 created
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    2/5/14 8:37:45.125 am com.apple.SecurityServer[14]: Session 100011 created
    2/5/14 8:37:47.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=228[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    2/5/14 8:37:54.515 am accountsd[238]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:37:55.448 am apsd[210]: Unrecognized leaf certificate
    2/5/14 8:38:06.772 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 103.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:38:08.154 am SystemUIServer[182]: void CGSUpdateManager::log() const: conn 0x8d2b: spurious update.
    2/5/14 8:38:13.536 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac35520 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    2/5/14 8:38:13.552 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac20800 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:39:11.229 am storeagent[241]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    2/5/14 8:39:12.674 am parentalcontrolsd[248]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    2/5/14 8:39:13.288 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:39:14.535 am com.apple.SecurityServer[14]: Session 100013 created
    2/5/14 8:39:39.278 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e07250 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:39:39.479 am sandboxd[239]: ([226]) assistantd(226) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    2/5/14 8:39:40.927 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:39:41.729 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:40:36.480 am LKDCHelper[256]: Starting (uid=501)
    2/5/14 8:40:39.379 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e10320 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:40:39.410 am com.apple.iCloudHelper[207]: AOSKit ERROR: Setup request failed, appleID=1331111818, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7ff801e25270 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    2/5/14 8:40:40.002 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:40:40.262 am mds[39]: (Normal) Volume: volume:0x7faefc094000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.GVtxu8
    2/5/14 8:40:53.113 am com.apple.dock.extra[250]: <NSXPCConnection: 0x7ff860f17f90>: received an undecodable message (no exported object to receive message). Dropping message.
    2/5/14 8:40:54.213 am secd[233]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.213 am secd[233]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.372 am secd[233]:  CFPropertyListReadFromFile file file:///Users/Johndandekar/Library/Keychains/54F98C75-0DC3-5591-B434-1E7BF5D373 41/accountStatus.plist: The file “accountStatus.plist” couldn’t be opened because there is no such file.
    2/5/14 8:40:54.404 am secd[233]:  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)
    2/5/14 8:40:54.404 am secd[233]:  securityd_xpc_dictionary_handler WiFiKeychainProx[215] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    2/5/14 8:41:06.693 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:41:20.693 am WindowServer[84]: 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.
    2/5/14 8:42:06.685 am ntpd[109]: ntpd: time set +1.417472 s
    2/5/14 8:42:06.693 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:42:12.250 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 65.14 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:44:32.201 am com.apple.SecurityServer[14]: Session 100014 created
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.605 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:32.606 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:42.605 am soagent[208]: Killing soagent.
    2/5/14 8:44:42.606 am NotificationCenter[200]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.606 am com.apple.dock.extra[250]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:45:39.211 am ntpd[109]: FREQ state ignoring -0.000168 s
    2/5/14 8:45:42.272 am mdworker32[259]: CGSConnectionByID: 0 is not a valid connection ID.
    2/5/14 8:45:42.272 am mdworker32[259]: CGSGetSpaceManagementMode: No connection with id 0x       0
    2/5/14 8:46:48.521 am ntpd[109]: FREQ state ignoring +0.000861 s
    2/5/14 8:47:41.646 am xpcd[192]: restored permissions (100600 -> 100700) on /Users/Johndandekar/Library/Containers/com.apple.Notes/Container.plist
    2/5/14 8:47:53.961 am com.apple.SecurityServer[14]: Session 100015 created
    2/5/14 8:47:59.173 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Notes" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:48:02.756 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Notes" after 4.58 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:48:04.999 am com.apple.SecurityServer[14]: Session 100016 created
    2/5/14 8:48:22.828 am ntpd[109]: FREQ state ignoring -0.000677 s
    2/5/14 8:49:20.692 am sandboxd[239]: ([315]) mdworker(315) deny file-read-data /Applications/Microsoft Office 2011/Office/Media/Clipart/Bullets.localized/.localized ()

  • Why is it that it would take a very long time [if ever] to change or adjust the tempo of a loop in the audio track when i set it to adjust regions to locators? Until now the spinning wheel of death is still very much spinning. thanks for any help.   Is th

    Why is it that it would take a very long time [if ever] to change or adjust the tempo of a loop in the audio track when i set it to adjust regions to locators? Until now the spinning wheel of death is still very much spinning. thanks for any help.
    Is there another way to adjust tempo of loops the faster way, any other technique?

    No clue why the final processes have suddenly started to take so long. Two things I'd try: a) capture from an older tape to see if some problem with the new tape is at fault.  And b) check the health of your RAM and the hard drive.
    The red frame sounds a bit like a glitch we used to have in OnLocation (actually in its predecessor HDV Rack) which was caused by a partial GOP. But that was a product of HDV Rack recording from the live video stream. It turned out that HDV cameras intentionally interrupt the data stream for an instant upon starting to record--specifically to avoid recording a partial GOP to tape. So my gut says that the tape has partial GOPs at the points where you stopped/started recording.

  • Can these things be customized? [Very long]

    Good day all!
    First I would like to say thank you for everyone who consistently roams these forums to help new users! I have learned a lot by visiting discussions every other day at least for a long time!
    I have been using Macs for a year now and still find navigation to be frustrating and counter-productive on several occasions.
    Next I would like to say that if my questions annoy you or you think that I should search through all previous discussions for an answer to my problems, please don't respond. I would like to invite you to go help the next user with their problems. I've been computing for at least 15 years, so I know what to expect! And in my experience, that kind of post is akin to trolling. I know that there may be a multitude of responses about some of the things I would like help with. But the whole purpose for starting this discussion is to get help for me exactly where I am with several features, not to be sent on an easter egg hunt through the rest of the forum to piece everything together. I'm really very busy! And I will continue studying on my own every other day, as I have been for a long time.
    On the flip side, I am not trying to be rude at all! I am sincerely asking for help and constructive suggestions/advice from a power user's perspective about how to adjust some things with my interface if possible! And I will be very very thankful if you can help!
    I use Macs for business purpose and pleasure, so this is a professional concern and a personal quest!
    So if you're still reading at this point, thank you for your patience!!! Your tenacity is admirable.
    Ok, so I have a list of features that I will admit come from having used Windows-based PCs for a very very long time, but they are much more efficient then what I have been able to do on OS X.
    [My tech profile]
    Intermediate User (Mac), Power User (Windows) [I know, I know... Spare me. x.x]
    System: Macbook Pro, Order number MGXC2LL/A (Currently, the big one... Mid-2014)
    Using OSX v10.9.5. I understand that Yosemite is available but I am concerned about updating because I am also using bootcamp with Windows 7 installed for personal, professional and educational use. I definitely make my machines work for me. (Starting another discussion about THAT concern though.)
    So finally, my questions.
    I have run into several interface annoyances and I would like to know about the following things. If anyone has any advice at all about how to customize these features, thank you in advance! (Note: I don't mind links to other posts at all! Please do so if you know a great discussion for exactly what I am experiencing.. If not, please just give whatever advice you can.)
    Trackpad sensitivity: I've gone to System Preferences > Trackpad for adjustments but its just not helping as I had hoped.
    Experiencing false touch due to heat sensitivity. Several times a day I will be programming or surfing and my cursor will jump to where the mouse indicator is on the screen if I get within an inch or two of the trackpad. If I am not watching then sometimes I will end up punching characters into a random line far away from where they're supposed to be. Then I have to go through the long process of deleting, moving, adjusting unexpected typos, making sure the code is still rendering and then typing everything all over again on the correct line. Anyway to adjust the calibration?
    I'm used to pinpoint accuracy when navigating with my high dpi pc mouse, so this may be a difficult one to explain... I touch the trackpad and move my finger and it works, but it feels like sensitivity maxed out is variable depending on the speed that I move my finger. So if I quickly move a centimeter it launches halfway across the screen. If I slowly move it, it barely moves. The variation is incredibly annoying at times because I'm used to navigating rapidly. It I turn the sensitivity down then movement is terrible, if I turn it up, it seems to move more rapidly only when I move my finger quickly, which is also frustrating because I can't accurately go to the exact point I want to without moving slow regardless of sensitivity. Maybe this is also due to OSX's calibration method/"philosophy"? I have also used the wire mouse on my Mac (Desktop) and it seems to work the same way even though its a completely different input method. Any suggestions? Maybe I should just install a Razer on my laptop and let those drivers determine how it operates? (Thats what I use on my PC.)
    Is there anyway to toggle the trackpad on and off? I have not checked into this yet beyond System Preferences > Trackpad, but it would be very helpful when programming or writing.
    Interface issues: There are several organization/navigational features that I use heavily in Windows. The lack thereof makes it difficult to enjoy the OSX interface at times... Sure you can say "Oh, you'll get used to it," but the fact of the matter is getting used to a different interface should at least enable me to be as productive as I would be on a Windows computer. I don't think getting used to these particulars would accomplish that.
    Please advise me about how to customize a faster way to access media files! (I suppose I could create shortcuts in different directories, but... Ugh!) Is there an easier method or some way to rearrange the way that directories are organized in general so that I don't have to click desktop > click go > click home just to find my media files? Is there a way to make them accessible from the Finder Sidebar when navigating other directories? I need full access to commonly used directories if possible! Not just a certain level of my computer system without clicking "Go."
    Is there an easy way to launch a directory in a second Finder window? Absolutely hate when I click a directory and it opens in the same window. Especially considering that you have to actually drag items to a different directory to move them without shortcut keys. Extra steps are not cool. (Like dragging a folder to your desktop so you can open a new directory to drag it to in the same Finder window. Very redundant and counter-productive.)
    Anyway to manually add a cut/paste-like function to the right-click menu? Would solve a lot of my organization challenges. (Not afraid of tweaking system files or downloading scripts/programs to accomplish this.)
    These are the things that have contributed to productivity challenges the most for me. Not really a lot, but still frustrating.
    Thank you for reading and any advice you may have! Even if its only about one or two things. Anything helps.

    Kurt Lang wrote:
    Is there a way to make them accessible from the Finder Sidebar when navigating other directories? I need full access to commonly used directories if possible!
    Yes. With any sidebar open, have the parent folder of the folder you want on the sidebar open. Now just drag and drop the folder you want on the sidebar under the Favorites heading, and above Devices. Make sure one of the other favorites already listed isn't highlighted as you let go of the mouse, or the OS will presume you want to copy the folder there. A new shortcut with that folder name should be added to the list. To remove any favorite, drag it off the sidebar over the desktop, wait a moment and let go.
    Is there an easy way to launch a directory in a second Finder window? Absolutely hate when I click a directory and it opens in the same window.
    That one is a huge bone of contention. Apple changed that behavior beginning with Mavericks so you can't do that if the sidebar or toolbar is showing. At least not the way it used to work before 10.9.x. To force a nested folder to open in its own window, hold down the Option key as you double click the folder. Hiding the toolbar and sidebar so all you see are the files eliminates the need to hold the Option key. Yes, there's no consistency of interface behavior on that one.
    Hi Kurt! Thank you very much for those suggestions. I've actually been playing with the sidebar customizations and can attest that navigation has been a lot easier! This suggestion from Diane and from you has been incredibly helpful. As per the second Finder window, I guess I can only keep searching for a solution. I'm sure there is a way to regain the ability to access more than one Finder window at once. I can see the benefit of limiting it to only one window but I also know from experience that having it is counter-productive in most scenarios. I will have to try opening files and folders in their own windows with the option button to see if it will get me back to the productivity levels I'm used to.
    Thank you again Diane! I need to do some research on each utility to see which one might be worth the investment in the long run!
    I actually wanted to post a resolution of my own. Particularly the sensitivity/acceleration issue and the cut/paste issue. I was able to solve them both by adding a peripheral to my arsenal. The Razer Orochi wireless mouse. There are a couple of reasons why this has been an incredibly helpful move. The first is I have been using Razer peripherals for years. I love the control that Synapse software allows (That is, the utility that comes with Razer mice). I am able to adjust acceleration (Essentially how much farther the mouse moves with aggressive finger movements compared to normal movements) and I am able to adjust overall sensitivity beyond anything the trackpad is capable of because dpi and more thorough software. Don't get me wrong! I'm not trying to advertise here, it's been like night and day since I installed it.
    I also mentioned cut and paste. The Orochi has a mouse wheel with a built-in button, 4 side buttons and the common left/right click buttons for a total of 7 possible mouse-click functions. So how I was able to correct the cut/paste issue was by binding Command-Option-V to one oft the side buttons. So essentially I can now Right Click, choose "Copy" and simply click the side button to move the folder/file/etc to the new directory. Productivity already increasing to levels I once had!
    [Reference: OS X:Keyboard Shortcuts]
    Granted this is not a control-level resolution, (Which would be highly preferable), but it has made a big difference so far. I definitely wouldn't consider this to be an interface preference but rather a productivity preference. However you look at it, I'm happier and can navigate/operate more effectively than I have been able to in a long time.
    I think for all intents and purposes I can mark this thread as solved even though there are a couple of things that fall into this category by default simply because Macs are not capable of doing certain things as far as I can tell...
    Unable to be resolved (By 98% of users) due to fundamental(?) design limitations:
    Allow for heat sensitivity adjustments on the trackpad
    Clickable cut/paste functionality built into OSX
    Second (or multiple) Finder Window(s)
    I think at this point I need to start researching deeper fixes for these problems and maybe post something later about it.
    If anyone has more advice about them or any other features mentioned here, please post!
    -war

  • Mac Air takes a very long time when manually putting to sleep

    I put my Mac Air in sleep mode from the apple icon after Im dont using it but sometimes takes a very long time to shut down. Then Im not sure if sometimes it goes into sleep mode by itself first. My mac notebook as soon as you hit sleep it shut down instantly. Anyone else have this problem?

    I put my Mac Air in sleep mode from the apple icon after Im dont using it but sometimes takes a very long time to shut down. Then Im not sure if sometimes it goes into sleep mode by itself first. My mac notebook as soon as you hit sleep it shut down instantly. Anyone else have this problem?

  • Macbook Pro, bought 2012, takes a very long time to start up/restart (5 mins). How do I fix this?

    My Macbook Pro, bought 2012, takes a very long time to start up/restart (5 mins) every single time I have shut it down.  I try not to shut it down at all now because once or twice, I have got a grey screen, and then nothing. I've held down the power button to shut down again and restart  How do I fix all this?

    Start up with your built-in Recovery disk by holding down the Command and R keys when starting. Open Disk Utility from there and use it to REPAIR your disk (you've already verified it and it came up with errors).
    With any luck, your problems will be solved. While I was there, I would also repair  permissions.
    Good luck,
    Clinton

  • I have an old ipod that i have not used in a very long time, ive had it on a charger now for over an hour and i still cnnot get my ipod to turn on, how can i fix my problem, i just downloaded the new version of itunes aswell, so i know its not my itunes.

    i have an old ipod touch that i have not used in a very long time, and im having trouble gettign it to turn on. ive had it on a charger for over an hour now and still nothing hs changed. i just updated my itunes to the current version they haev so i know its not an itunes problem its rather a problem with the old ipod touch itself. im leaving for deployment soon and im trying to get this fixed without having to send it in. If anyone has any ideas on how to get this thing turned on it would be greatly appreciated.

    Well, two thoughts.
    The battery has completely discharged and will take overnight to recharge, so don't expect much in an hour.
    The battery has deep discharged and is now dead. It will never recharge and should be replaced.
    If your iPod Touch, iPhone, or iPad is Broken
    Apple does not fix iDevices. Instead they exchange yours for a refurbished or new replacement depending upon the age of your device and refurbished inventories. On rare occasions when there are no longer refurbished units for your older model, they may replace it with the next newer model.
    You may take your device to an Apple retailer for help or you may call Customer Service and arrange to send your device to Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes international calling numbers.
    iPod Service Support and Costs
    iPhone Service Support and Costs
    iPad Service Support and Costs
    There are third-party firms that do repairs on iDevices, and there are places where you can order parts to DIY if you feel up to the task. Start with Google to search for these.
    The flat fee for a battery exchange is, I believe, $99.00 USD.

  • Remote client copy (SCC9) runs a very long time!

    remote client copy (SCC9) runs a very long time!
    how to do it quickly process?
    (eg use imp and exp-oracle tool, as it can be done to understand what the SAP data has been copied and are now in a different location, for Developers)

    scn001 wrote:
    remote client copy (SCC9) runs a very long time!
    > how to do it quickly process?
    > (eg use imp and exp-oracle tool, as it can be done to understand what the SAP data has been copied and are now in a different location, for Developers)
    Hi,
    You can export the client, as well but it will take long time too, depended to your client size. Please note that client copy operation should be performed by standard SAP client management tools, such as client export/import or remote copy.
    Ask this question to SAP support first. Technically, you can choose many ways to copy a SAP client, but as far as I know that SAP will not support you (such as errors you faced during the client export/import or the problems related by the copy operation), if you use any other 3rd party tool while for the client copy purposes.
    Best regards,
    Orkun Gedik
    Edited by: Orkun Gedik on Jun 30, 2011 10:57 AM

  • My mac air died, after i reinstall from dvd drive, when i boot up again, i saw a prohibit sign showing up on the screen, then get to my logon screen.  After logon, it takes very long time to load any application.  pls help

    my mac air died, after i reinstall from dvd drive, when i boot up again, i saw a prohibit sign showing up on the screen, then get to my logon screen.  After logon, it takes very long time to load any application.  pls help

    OK. If you believe that.
    When the disk is starting to die it can be bad for a moment and then be good for a while. If there was no problem while you were checking it of course it shows up good.
    I tell you those are the signs of a disk that is about to die.
    Allan

  • Firefox takes very long time to open and often crashes for some websites

    i have used firefox 3.6 with windows xp, vista and now windows 7. there is same problem i am facing at all after well usage of week. firefox takes very long time to open approx. 1 minute at first click. after refreshing computer when i click again, it becomes ready to use but meanwhile you re working firefox opens in another window perhaps for the first click. what is this please? i have reinstalled firefox but it is not fixing problem
    == Troubleshooting information ==
    how can firefox be ready for use at first click?

    Open Activity Monitor and kill this process - rapportd.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Discoverer report is taking a very long time

    Hi All,
    I need help on below discoverer issue.
    discoverer report is taking a very long time for rows to be retrieved on export when it is run for India and it is required for month end. For some reason only 250 rows are retrieved at a time and retrieval is slow so it is taking 10 minutes to bring back 10,000 rows.
    Regards
    Kumar

    Please post the details of the application release, database version and OS along with the discoverer version.
    I need help on below discoverer issue.
    discoverer report is taking a very long time for rows to be retrieved on export when it is run for India and it is required for month end. For some reason only 250 rows are retrieved at a time and retrieval is slow so it is taking 10 minutes to bring back 10,000 rows.Please see these links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Discoverer+AND+Long+AND+Time&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Discoverer+AND+Performance&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Discoverer+AND+Slow&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

Maybe you are looking for

  • IMessage failed on iOS 8.1

    My Ipad Air's iMessage function failed after the upgrader to iOS8.1 I do not have this issue on my iphone, which I did not update and still running on iOS8.02 Is there any solution to fixing this?

  • Problem installing CS4 -- Error 1603

    Unable to install CS4. Error 1603: Fatal error during installation. Running Windows 7 Pro 64bit (up to date), 4GB ram, plenty of HDD space,etc. I've tried the following, but still get the same result: Error 1603; Installation failed, one or more comp

  • No connection between iphone 4s and car-adapter

    Hello, Have a question to iphone 4s in connection with my car - adapter for Volkswagen (Adapter-Article.No. 3C005143CD) My phone, updated to 5.1.1 (9B206) and since then is that impossible for bluethoth-connection. Is that correct or anyone to find a

  • Call to WPG_SESSION API Failed.

    I cannot access the portal from the home page (or any page) I cannot even get into the DAD configuration. I have never seen the new version of portal as it killed my old version on upgrade and I cannot seem to install the new one right. I have follow

  • Co no ranges problem

    Hi experst, I have created controlling area 1000. now i want to maintain no ranges for co area in kank. I maintained no ranges for different groups but the controlling documents are not displaying in non assigned to assign to different groups. But wh