Enabling Subprogram Inlining

Hi,
In an attempt to test Subprogram Inlining in Oracle 11g (11.2.0.1.0 64-bit on Linux), I executed the code below:
SQL> show parameter PLSQL_OPTIMIZE_LEVEL
NAME                                 TYPE        VALUE
plsql_optimize_level                 integer     2
SET SERVEROUTPUT ON
DECLARE
v_num PLS_INTEGER := 1;
v_result PLS_INTEGER;
-- Following are used for elapsed time calculation
v_start_time NUMBER;
v_end_time NUMBER;
-- Define simple function to test PRAGMA INLINE
FUNCTION test_inline_pragma
  (in_num1 IN PLS_INTEGER, in_num2 IN PLS_INTEGER)
RETURN PLS_INTEGER
IS
BEGIN
  RETURN (in_num1 + in_num2);
END test_inline_pragma;
BEGIN
-- Test function with INLINE PRAGMA enabled
v_start_time := DBMS_UTILITY.GET_TIME;
FOR i in 1..10000000 LOOP
  PRAGMA INLINE (test_inline_pragma, 'YES');
  v_result := test_inline_pragma (1, i);
END LOOP;
v_end_time := DBMS_UTILITY.GET_TIME;
DBMS_OUTPUT.PUT_LINE ('Elapsed time when PRAGMA INLINE enabled: '||
(v_end_time-v_start_time));
-- Test function with PRAGMA INLINE disabled
v_start_time := DBMS_UTILITY.GET_TIME;
FOR i in 1..10000000 LOOP
  PRAGMA INLINE (test_inline_pragma, 'NO');
  v_result := test_inline_pragma (1, i);
END LOOP;
v_end_time := DBMS_UTILITY.GET_TIME;
DBMS_OUTPUT.PUT_LINE ('Elapsed time when INLINE PRAGMA disabled: '||
(v_end_time-v_start_time));
END;
-- output of the code above:
Elapsed time when PRAGMA INLINE enabled: 46
Elapsed time when INLINE PRAGMA disabled: 147
PL/SQL procedure successfully completed.Obviously enabling Subprogram Inlining provided enhacement in executing the subprogram in loop, despite the simplicity of the called function.
Now my question is: Does the example show that I have to enable Subprogram Inlining before calling any subprogram all the way in any PL/SQL code?
Note: The example taken from the book: Oracle PL/SQL by Example 4th Ed by BENJAMIN ROSENZWEIG and ELENA RAKHIMOV

A simple way to do that would be to use a systemd timer unit, named '/etc/systemd/system/tvheadend.timer':
[Unit]
Description=Delaying tvheadend start
[Timer]
OnStartupSec=20
AccuracySec=5
Then:
# cp /usr/lib/systemd/system/tvheadend.service /etc/systemd/system
# cd /etc/systemd/system
# vim tvheadend.service
# diff /usr/lib/systemd/system/tvheadend.service tvheadend.service
14c14
< WantedBy=multi-user.target
> #WantedBy=multi-user.target
Edit: The above part is superfluous, sorry, see the next posts
Finally:
# systemctl disable tvheadend.service
# systemctl add-wants multi-user.target tvheadend.timer
# systemctl daemon-reload
This timer will start the 'tvheadend.service' 20 seconds (+~5 seconds) after systemd start time.
To my opinion, this is the easiest way to do that (no udev rule to write with the systemd device unit features which is much more complicated).
Last edited by berbae (2015-04-28 15:13:47)

Similar Messages

  • Help with inline VLAN Pair and switch configuration

    Hello,
    I'm new to IPS and IDS in general, but I have an IPS-4255 and a couple of Catalyst 2900 switches to experiment with. I'm currently trying to enable an Inline VLAN Pair configuration on the IPS and have a simple setup.
    SW1 and SW2 have vlans 100 and 200 configured. PC1 and PC2 are on the same IP range (no routing). PC1 on vlan 100 connects to Sw1. PC2 on vlan 200 connects to SW2. The IPS connects to a SW2 trunking port, and SW1 and SW2 are connected together on another trunking port.
    I know that my trunking is working because PC1 and PC2 can ping each other whenever they are on the same vlan of either switch. But, they can't ping when on the separate vlans.
    From what I've read, the IPS with an Inline VLAN Pair acts as a bridge between the two vlans and should forward the traffic if it passes inspection. However, the IPS does not appear to see any traffic at all.
    My IPS is configured with inline VLAN pair 100->200 and associated to vs0.
    Have I missed something in my config somewhere? Or am I misunderstanding how inline VLAN Pairs are supposed to work?
    Below are my configs for the switches and the IPS.
    Any help would be appreciated. Thank you!
    IPS Config
    service interface
    physical-interfaces GigabitEthernet0/0
    no description
    admin-state enabled
    duplex auto
    speed auto
    alt-tcp-reset-interface interface-name GigabitEthernet0/3
    subinterface-type inline-vlan-pair
    subinterface 1
    description test
    vlan1 100
    vlan2 200
    exit
    exit
    service analysis-engine
    virtual-sensor vs0
    physical-interface GigabitEthernet0/0 subinterface-number 1
    inline-TCP-session-tracking-mode vlan-only
    exit
    exit
    SW1 and SW2 config
    interface FastEthernet0/1
    switchport access vlan 100
    interface FastEthernet0/9
    switchport access vlan 200
    interface FastEthernet0/18
    switchport trunk encapsulation dot1q
    switchport mode trunk
    interface FastEthernet0/24 (Sw 2 only)
    description IPS port
    switchport trunk encapsulation dot1q
    switchport mode trunk

    It has been awhile since I've dealt with a 2900 switch to I am just trying to guess at what may be wrong with your setup.
    I noticed that neither of your trunk port configuration are specifically stating which vlans are allowed on the trunks.
    It is possible that for the trunk between the 2 switches there may be some protocol negotiation so the switches can determine which vlans to trunk, BUT no such negotiation will happen with the sensor. If I remember right you will need to specifically state which vlans the trunk to the sensor should carry. If I remember right the commmand would be something like:
    switchport trunk allowed-vlan 100,200
    You will want to find the show command on your switch that will show you which vlans are actually being trunked by the port. It might be something like "show switchport trunk"
    And you will want to verify that the switch is actually trunking vlans 100 and 200 to your sensor.
    On your sensor you will want to execute "show interfaces" and look at the statistics for Gig0/0 to see if it is receiving packets on vlan 100 and 200.
    You can also run "packet display GigabitEthernet0/0" to see if any packets are making it to your sensor.
    You will also want to check Link status and make sure your sensor is linking up properly with your switch. A common mistake is to connect the wrong ports, as some sensors do not have the port numbers clearly marked.
    NOTE: If the above doesn't help, then take the additional step of eliminating the second switch. Attach both pcs to the same SW2 switch (1 in each vlan). The second switch isn't necessary to test the inline vlan pair functionality. Connecting both PCs to the same switch will help eliminate any possibility of misconfiguration between the 2 switches.

  • Apex 4.0 install note - watch out for PLSQL_OPTIMIZE_LEVEL 3 in 11g!

    Hi all,
    I just wanted to share a tidbit I found during installation Apex 4.0 on an 11.2.0.1.1 database on a slower computer...
    We had our PLSQL_OPTIMIZE_LEVEL set to 3 to enable code-inlining for PL/SQL objects - and this REALLY slowed down the apex installation big time. It was so slow I aborted the install, then restarted after setting it down to level 2.
    After setting it to level 2 - it really sped up and installed fine.
    I just wanted to share this in case others run into a hanging install like I did...
    I'm thinking that apexins.sql should be modified to "ALTER SESSION SET plsql_optimize_level = 2;" before proceeding - but before then - be sure to keep an eye out for this...
    Good luck!
    Edited by: Philbewan on Jun 24, 2010 6:14 PM

    Hi Phil,
    Thanks for posting this information.
    I've installed APEX 4.0 with optimization level 3 and code=type = native in an 11.2.0.1 database, and you're correct - it took a while. And I imagine on a "slower computer", this will take even longer. But I reason this is to be expected - you're asking the PL/SQL optimizing compiler to be most aggressive in its optimization against the PL/SQL objects of Application Express...and as you know, there is a lot of PL/SQL in Application Express.
    Also, the installation and compilation step is a one-time event. If you're looking for maximum performance for each and every page view (execution of the APEX engine for millions of page views), the extra cost of time associated with installation seems almost trivial, by comparison.
    I don't agree that apexins.sql should be modified to alter the PL/SQL optimization level. Customers have it set for a particular reason and the Application Express installer shouldn't override that.
    Regardless, I do believe your advice to be aware of this setting is worthwhile for the APEX community. Thanks for sharing this.
    Joel

  • Cant access IPS 4240 on the newtork

    Hello Folks,
    Below is my configurations for a new IPS we jsut bought .my problem is I can not access it on the network via Cisco IDM launcher.
    I have connected it via a trunk port to the distribution Switch on the network and trying to from an ip address 10.120.4.203 in the access-list subnet.
    I am however able to when i left it at the default config and connected to the management interface.
    So I am convinced I am not doing something right.
    Thanks for your help
    STV-IPS4240-01# show config
    ! Current configuration last modified Thu Oct 13 13:09:54 2011
    ! Version 6.0(6)
    ! Host:
    !     Realm Keys          key1.0
    ! Signature Definition:
    !     Signature Update    S480.0   2010-03-24
    service interface
    physical-interfaces GigabitEthernet0/0
    admin-state enabled
    exit
    physical-interfaces GigabitEthernet0/1
    admin-state enabled
    exit
    inline-interfaces Inline1
    no description
    interface1 GigabitEthernet0/0
    interface2 GigabitEthernet0/1
    exit
    exit
    service authentication
    exit
    service event-action-rules rules0
    exit
    service host
    network-settings
    host-ip 10.120.0.250/19,10.120.0.1
    host-name STV-IPS4240-01
    telnet-option enabled
    access-list 10.120.0.0/19
    access-list 192.168.1.0/24
    exit
    time-zone-settings
    offset 0
    standard-time-zone-name UTC
    exit
    exit
    service logger
    exit
    service network-access
    exit
    service notification
    exit
    service signature-definition sig0
    exit
    service ssh-known-hosts
    exit
    service trusted-certificates
    exit
    service web-server
    exit
    service anomaly-detection ad0
    exit
    service external-product-interface
    exit
    service analysis-engine

    Disregard please,Sorted

  • Power Controller reports power Imax error detected

    Hi,
    My 3560 switch w/ IOS 12.2(35)SE have below message last night. Would anyone know what happen?
    Sep 23 18:54:58.468 UTC: %ILPOWER-7-DETECT: Interface Fa0/10: Power Device dete
    ted: IEEE PD
    Sep 23 18:54:58.468 UTC: %ILPOWER-5-INVALID_IEEE_CLASS: Interface Fa0/10: has d
    tected invalid IEEE class: 7 device. Power denied
    Sep 23 18:57:37.542 UTC: %ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error,
    Interface Fa0/12: Power Controller reports power Imax error detected
    Sep 23 18:57:44.580 UTC: %SWITCH_QOS_TB-5-TRUST_DEVICE_LOST: cisco-phone no lon
    er detected on port Fa0/12, port set to untrusted.
    Sep 23 18:57:48.674 UTC: %ILPOWER-7-DETECT: Interface Fa0/12: Power Device deteted: Cisco PD
    Sep 23 18:57:48.741 UTC: %ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error, Interface Fa0/12: Power Controller reports power Tstart error detected
    Thanks and Regards
    Ernest

    Hi Leo
    Thank you for your quick response but as I said before that Nortel IP phnoe has a designed fault in power module so it meant to fail and cisco switch generate syslog for this Power Controller reports power Imax error detected. Once we replace with new phone, the error disappear and works all fine.
    Now the solution I am looking for this issue as follows:
    While the faulty IP phone still pluged in and keep booting, the switch generate error log and our syslog server keep sending out email alert until one of our engineer log into switch and shut the port. Very often if this happen in weekend or at night then we get hundreds of email.
    Therfore I think it would be nice if Cisco 3750 put this swithport into errdisable state but it's not happening.
    This is the output of errdisable;
    #sh errdisable detect
    ErrDisable Reason            Detection    Mode
    arp-inspection               Enabled      port
    bpduguard                    Enabled      port
    channel-misconfig (STP)      Enabled      port
    community-limit              Enabled      port
    dhcp-rate-limit              Enabled      port
    dtp-flap                     Enabled      port
    gbic-invalid                 Enabled      port
    inline-power                 Enabled      port
    invalid-policy               Enabled      port
    l2ptguard                    Enabled      port
    link-flap                    Enabled      port
    loopback                     Enabled      port
    lsgroup                      Enabled      port
    mac-limit                    Enabled      port
    pagp-flap                    Enabled      port
    port-mode-failure            Enabled      port
    pppoe-ia-rate-limit          Enabled      port
    psecure-violation            Enabled      port/vlan
    security-violation           Enabled      port
    sfp-config-mismatch          Enabled      port
    small-frame                  Enabled      port
    storm-control                Enabled      port
    udld                         Enabled      port
    vmps                         Enabled      port
    ===========================================
    Another thing that this command "power inline port 2x-mode" is not available in our IOS, I am not sure how this command will help.
    Look forward for someone response.
    Thank you all.

  • Pages tables

    I am trying to move a table that I made in pages.  For some reason it will not let me move it away from where it is. Can you please help me?
    Thanks,
    Ry

    Approach your table from the left with your mouse pointer still an I-beam. When it turns into a left diagonal facing black mouse pointer, click once to select your table.
    In the Inspector, choose the Wrap Inspector. As long as your table's object placement is enabled for inline moves with text, you won't be able to drag it anywhere. Select either floating, doesn't move with text, or in background. If you use the background setting, you may also want to select background objects are selectable.
    These settings will allow you to move the table.

  • IPS-Portchannel-EtherChannel Load Balancing

    I have two 4506 switches and 2 IPS 4260
    I have problem med Interfaces unjoin and join portchannel
    GigabitEthernet3/23 left the port-channel Port-channel1
    GigabitEthernet3/23 joined port-channel Port-channel1
    The IPS interfaces
    UDVIK01_AWG_IPS# sh interfaces brief
    CC   Interface            Sensing State   Link   Inline Mode        Pair Status
    *    Management0/0        Disabled        Up
         GigabitEthernet0/1   Disabled        Down   Unpaired           N/A
         GigabitEthernet2/0   Enabled         Up     Inline-vlan-pair   N/A
         GigabitEthernet2/1   Enabled         Up     Inline-vlan-pair   N/A
         GigabitEthernet2/2   Disabled        Down   Unpaired           N/A
         GigabitEthernet2/3   Disabled        Down   Unpaired           N/A
    I have uploaded Debug file and other file of my configuration
    Best Regard
    Rene Rolsted

    Debug from switch:
    Dec  8 15:11:41.363: FEC: pagp_switch_hotstandby: for agport Po1
    Dec  8 15:11:41.363: FEC: pagp_switch_hotstandby: PAgP not enabled on agport Po1
    Dec  8 15:11:41.367: FEC: pagp_switch_port_down: Gi3/23 Inform yes
    Dec  8 15:11:41.367: FEC: pagp_switch_invoke_port_down: Gi3/23
    Dec  8 15:11:41.367: FEC: fec_unbundle: Gi3/23
    Dec  8 15:11:41.367: FEC: pagp_switch_change_vgc: gcchngreq == 0 for Gi3/23
    Dec  8 15:11:41.367: FEC: pagp_switch_change_vgc: Gi3/23 gcchngreq = 0 gc = 0
    Dec  8 15:11:41.367: %EC-5-UNBUNDLE: Interface GigabitEthernet3/23 left the port-channel Port-channel1
    Dec  8 15:11:41.367: FEC: pagp_switch_delete_port_from_agport_internal: delete_port_from_agport: for port Gi3/23
    Dec  8 15:11:41.367: FEC: delete port (Gi3/23) from agport (Po1)
    Dec  8 15:11:41.367: FEC: pagp_switch_delete_port_from_agport_list: afb->nports-- = 1 [Gi3/23]
    Dec  8 15:11:41.367: FEC: Un-Bndl msg NOT send to PM for port Gi3/23 from Po1
    Dec  8 15:11:41.367: FEC: pagp_switch_reset_load_index: reading load-index for port Po1
    Dec  8 15:11:45.363: FEC: pagp_switch_port_up: Gi3/23
    Dec  8 15:11:45.363: FEC: pagp_switch_invoke_port_up: Gi3/23
    Dec  8 15:11:45.363: FEC: pagp_switch_agc_compatable: comparing GC values of Gi3/23 Gi3/24 flag = 1 1
    Dec  8 15:11:45.363: FEC: pagp_switch_port_attrib_diff: Gi3/23 Gi3/24 same
    Dec  8 15:11:45.363: FEC: pagp_switch_agc_compatable: GC values are compatable
    Dec  8 15:11:45.363: FEC: fec_bundle: Gi3/23
    Dec  8 15:11:45.363: FEC: add port (Gi3/23) to agport (Po1)
    Dec  8 15:11:45.363: FEC: pagp_switch_add_port_to_agport_list: afb->nports++ = 2 [Gi3/23]
    Dec  8 15:11:45.363: %EC-5-BUNDLE: Interface GigabitEthernet3/23 joined port-channel Port-channel1
    Dec  8 15:11:45.363: FEC: pagp_switch_add_port_to_agport_internal: msg to PM to bundle port Gi3/23 with Po1
    Dec  8 15:11:45.363: FEC: pagp_switch_want_to_bundle: Bndl msg to PM for port Gi3/23 to Agport Po1
    Dec  8 15:11:45.363: FEC: pagp_switch_hotstandby: for agport Po1
    Dec  8 15:11:45.363: FEC: pagp_switch_hotstandby: PAgP not enabled on agport Po1
    Dec  8 15:11:45.367: FEC: pagp_switch_reset_load_index: reading load-index for port Po1
    Dec  8 15:12:08.370: FEC: pagp_switch_hotstandby: for agport Po1
    Dec  8 15:12:08.370: FEC: pagp_switch_hotstandby: PAgP not enabled on agport Po1
    Dec  8 15:12:08.374: FEC: pagp_switch_port_down: Gi3/24 Inform yes
    Dec  8 15:12:08.374: FEC: pagp_switch_invoke_port_down: Gi3/24
    Dec  8 15:12:08.374: FEC: fec_unbundle: Gi3/24
    Dec  8 15:12:08.374: FEC: pagp_switch_change_vgc: gcchngreq == 0 for Gi3/24
    Dec  8 15:12:08.374: FEC: pagp_switch_change_vgc: Gi3/24 gcchngreq = 0 gc = 0
    Dec  8 15:12:08.374: %EC-5-UNBUNDLE: Interface GigabitEthernet3/24 left the port-channel Port-channel1
    Dec  8 15:12:08.374: FEC: pagp_switch_delete_port_from_agport_internal: delete_port_from_agport: for port Gi3/24
    Dec  8 15:12:08.374: FEC: delete port (Gi3/24) from agport (Po1)
    Dec  8 15:12:08.374: FEC: pagp_switch_delete_port_from_agport_list: afb->nports-- = 1 [Gi3/24]
    Dec  8 15:12:08.374: FEC: Un-Bndl msg NOT send to PM for port Gi3/24 from Po1
    Dec  8 15:12:08.374: FEC: pagp_switch_reset_load_index: reading load-index for port Po1
    Dec  8 15:12:13.362: FEC: pagp_switch_port_up: Gi3/24
    Dec  8 15:12:13.362: FEC: pagp_switch_invoke_port_up: Gi3/24
    Dec  8 15:12:13.362: FEC: pagp_switch_agc_compatable: comparing GC values of Gi3/24 Gi3/23 flag = 1 1
    Dec  8 15:12:13.362: FEC: pagp_switch_port_attrib_diff: Gi3/24 Gi3/23 same
    Dec  8 15:12:13.362: FEC: pagp_switch_agc_compatable: GC values are compatable
    Dec  8 15:12:13.362: FEC: fec_bundle: Gi3/24
    Dec  8 15:12:13.362: FEC: add port (Gi3/24) to agport (Po1)
    Dec  8 15:12:13.362: FEC: pagp_switch_add_port_to_agport_list: afb->nports++ = 2 [Gi3/24]
    Dec  8 15:12:13.362: %EC-5-BUNDLE: Interface GigabitEthernet3/24 joined port-channel Port-channel1
    Dec  8 15:12:13.362: FEC: pagp_switch_add_port_to_agport_internal: msg to PM to bundle port Gi3/24 with Po1
    Dec  8 15:12:13.362: FEC: pagp_switch_want_to_bundle: Bndl msg to PM for port Gi3/24 to Agport Po1
    Dec  8 15:12:13.362: FEC: pagp_switch_hotstandby: for agport Po1
    Dec  8 15:12:13.362: FEC: pagp_switch_hotstandby: PAgP not enabled on agport Po1
    Dec  8 15:12:13.366: FEC: pagp_switch_reset_load_index: reading load-index for port Po1

  • Performance Diference between debug mode and release mode

    Hi ,
    I have been running an C++ multithreaded application with below technical specification on Production for more than an year.
    OS - Solaris 10 , Opteron
    Compiler - Sun Studio 11
    Bit Mode - 64
    I wanted to know what is the difference in the debug mode of an C++ application compiled with -g option and a release mode compiled with an optimization apart from the size of the binary and availability of debug information in case of a crash.
    1) Does it degrade the performance of the application? If yes by what extent?
    2) Does it use more memory?
    3) Will switching from Debug to Release mode with some optimization coupled with any kind of risk like byte guard etc which could lead to dumps and all? If yes what could those be?
    4) Which optimization level should be used?
    Regards,
    Ankur Verma

    If you compile without any optimization (with or without -g), you will see a noticeable difference in performance in most programs compared to compiling with a reasonable level of optimization. How much difference depends on the nature of the program, and what percentage of time is spent in code regions that can benefit from the code improvements.
    If you add -g, function inlining is disabled, which can dramatically reduce program performance. You can't debug a function that is generated inline, which is why this option disables inlining. (The +d option also disables inlining.)
    If you use -g0 instead of -g, function inlining is preserved.
    If you use -g0 with optimization, you get the advantages of optimization while still allowing limited debugging. (Local variables are not visible.) Beginning with Sun Studio 12 update 1, the current release, -g with optimization enables function inlining, so the effect of (for example) "-O -g" becomes the same as "-O -g0".
    A few optimizations are disabled with -g or -g0, the exact difference depending on the compiler release and patch level. Most programs won't see a difference in performance.
    Since you are running on Solaris 10, you should upgrade to the current release, Sun Studio 12 update 1. You will get many improvements and some new diagnostic tools. The new release is a drop-in replacement for Studio 11. You don't have to recompile any existing binaries, but you will want to recompile to get improved performance.
    [http://developers.sun.com/sunstudio/]

  • Is it possible to disable the + button at the bottom of a view where Inline Editing in enabled?

    As per the title, I have a list view where Inline Editing is enabled. I need to know how to disable or hide the green plus icon at the bottom of the list (Add new item).

    Thank you Wendy! That solution works great.
    So all that is needed is this:
    <script
    src="http://code.jquery.com/jquery-1.10.2.min.js"
    type="text/javascript">
    </script>
    <style
    type="text/css">
    .ms-listviewtable
    img[alt='New']{
      display:none;
    </style>

  • How do I enable inline autocomplete for Firefox 5.0.1 Mac?

    I just installed Firefox 5 on my Macbook, and I'm trying to enable inline autocomplete (like that found in Chrome, IE, and Safari). I've followed the instructions that I found on the internet (about:config, set browser.urlbar.autoFill to true) but autofill still isn't working. This has happened to me with earlier versions of Firefox as well. I would really like to figure this out, as it is what is currently holding me back from making the full switch to Firefox, so help would be greatly appreciated. Thank you!

    Digital Persona went out of the touchpad software business without doing an updated version of their software for IE9 and Firefox 4.0 - so later versions of Firefox aren't supported either.
    This support thread - https://support.mozilla.com/en-US/questions/814397 - has information about Egistec who is now doing the HP Simple Pass software for HP laptops. Not sure if they have an update for Firefox 8.0 or not.

  • Row highlighting is gone on enabling inline style for columns

    We have a multi-select enabled table on which cusomter wanted to change the color based on row stauts (a column in the table).
    We did it on the column component of the table as background-color:#{row.Status == 'Inactive'? '#A5A5A5': row.Status == 'Draft'?'#D8D8D8':''};
    this works great though as soon as this is done the row highlight color is gone from the table and hence makes it impossible to know which rows are actually selected.
    we are using RUP3 (Rel 4) version of jdev 11.1.1.6.2 version from edelivery.

    To apply that css rules to only one table set property styleClass="MyCustomTable" of the <af:table> and change the above rules for these (note that each rule starts with af|table.MyCustomTable):
    af|table.MyCustomTable::status-message {background-color: #0090c1; color: white; border: 2px #a0b4ba inset;}
    af|table.MyCustomTable::column-resize-indicator {border: 1px solid #51bfff;}
    af|table.MyCustomTable::data-row:selected af|column::data-cell {border-top: 1px solid #00afea; border-bottom: 1px solid #00afea;}
    af|table.MyCustomTable::data-row:selected af|column::banded-data-cell {border-top: 1px solid orange; border-bottom: 1px solid orange;}
    af|table.MyCustomTable::data-row:selected:focused af|column::data-cell {border-top: 1px dashed #00afea; border-bottom: 1px dashed #00afea;}
    af|table.MyCustomTable::data-row:selected:focused af|column::banded-data-cell {border-top: 1px dashed orange; border-bottom: 1px dashed orange;}
    af|table.MyCustomTable::data-row:selected:inactive af|column::data-cell {border-top: 1px solid #84e0ff; border-bottom: 1px solid #84e0ff;}
    af|table.MyCustomTable::data-row:selected:inactive af|column::banded-data-cell {border-top: 1px solid green; border-bottom: 1px solid green;}
    af|table.MyCustomTable::data-row:hover af|column::data-cell,af|table.MyCustomTable::data-row:hover af|column::banded-data-cell {background-color: #bfd6b0 !important;}
    af|table.MyCustomTable af|column::data-cell:selected {background-color: #9CACC9 !important;}AP

  • How to Create Inline Table to Display Detail Data in a Master Table in 11g?

    Hi,
    I have a requirement to create inline table inside master table to show data.
    I found this 10g article for this http://download.oracle.com/docs/cd/B31017_01/web.1013/b28967/web_masterdetail006.htm#BABCDCGE
    I couldn't find such option in 11g. Am i missing something? Please let me know where i can find more details.
    Required Output:
    [+] DepartmentId DepartmentName
    [-] DepartmentId DepartmentName
    EmployeeId FirstName LastName
    EmployeeId FirstName LastName
    EmployeeId FirstName LastName
    [+] DepartmentId DepartmentName
    Also, I tried creating the Page as below (Departments -Employees Relation). i.e I have tried using the ADF treeModel in the bindings and then created a table/inline table manually to populate. The data is available in the iterators (i found using sops in back bean), but the inline table is not showing any data. I tried enabling PPR on detail based on master. But no luck.
    <af:table rows="#{bindings.Departments1.rangeSize}"
    emptyText="#{bindings.findAllStaff1.viewable ? \'No rows yet.\' :
    \'Access Denied.\'}"
    var="row" value="#{bindings.Departments1.treeModel}">
    <af:column headerText="#{bindings.Departments1.labels.DepartmentId}"
    sortable="false" sortProperty="DepartmentId">
    <af:outputText value="#{row.DepartmentId}"/>
    </af:column>
    <af:column headerText="#{bindings.Departments1.labels.DepartmentName}"
    sortable="false" sortProperty="DepartmentName">
    <af:outputText value="#{row.DepartmentName}"/>
    </af:column>
    <f:facet name="detailStamp">
    <af:table rows="#{bindings.Departments1.rangeSize}"
    emptyText="No rows yet." var="detailRow"
    value="#{row.children}">
    <af:column headerText="#{row.children[0].labels.EmployeeId}"
    sortable="false" sortProperty="EmployeeId">
    <af:outputText value="#{detailRow.EmployeeId}"/>
    </af:column>
    <af:column headerText="#{row.children[0].labels.FirstName}"
    sortable="false" sortProperty="FirstName">
    <af:outputText value="#{detailRow.FirstName}"/>
    </af:column>
    <af:column headerText="#{row.children[0].labels.LastName}"
    sortable="false" sortProperty="LastName">
    <af:outputText value="#{detailRow.LastName}"/>
    </af:column>
    </af:table>
    </f:facet>
    </af:table>
    Thanks in Advance,
    Harikiran

    Hi,
    After reading the above links end-to-end twice, I'm finally able to establish the relationship in UI. I've used iterator for my specific purpose, although it can be done using a table/forEach.
    1) Create VOs for Dept and Emp, i.e. DeptVO and EmpVO.
    2) Then a View Link on deptID, i.e DeptEmpVL
    3) Drag and drop the Dept as AdfTreeTable, b'coz it will create the treeBinding and also add the emp accessor by selecting it in the binding window. (refer to above doc links from BaiG)
    4) In my Page UI, i've created a new table and an iterator in the detailStamp.
    Dept Table ->
    o Value = #{bindings.Departments1.treeModel}
    o Var = dept
    o varStaus = deptVarStatus
    Add these:
    Column1-> OutputText -> #{dept.DepartmentId}
    Column2-> OutputText -> #{dept.DepartmentName}
    Insert into TableFacets -> detailStamp -> iterator
    Iterator ->
    o Value = #{dept.children}
    o Var = emp
    o varStatus = empVarStatus
    Add these:
    OutputText -> #{emp.EmployeeId}
    OutputText -> #{emp.EmployeeName}
    OutputText -> #{emp.Salary}
    This iterator/forEach comes in handy for having n Number of regions inside a layout.
    Thanks,
    Harikiran

  • Very slow boot and very slow to enable the keyboard/touchpad

    Hello everyone.
    After searching this community and elsewhere too, and having tried all suggestions, which I'll list below, I've decided to try to post my case in a new discussion.
    I have a Mac mini mid 2011 with 8GB of RAM, OS X 10.8.5.
    The problem: when rebooting I have to wait 2-5 minutes of grey screen before getting to my desktop (I have enabled auto-login) and several more minutes of colored-spinning busy icon before getting to the possibility of using my (wired) keyboard or (wireless) touchpad. If I am patient enough, which I always am, after that the system works as perfectly as always.
    I have done all suggestions I could get my eyes on, including:
    - resetting NVRAM / PRAM
    - booting in singleuser mode, fsck, normal boot
    - boot in safe mode
    - reinstalled the OS (I did not format my hard drive)
    - disabled Spotlight
    - disabled all login items (only iTunesHelper was active)
    - disconnected all external peripherals
    Below are the latest console messages since boot, and further down there is more output to show what is currently running on my mini.
    Thanks for any help,
    Joe
    27/10/13 19:16:28,000 kernel[0]: PMAP: PCID enabled
    27/10/13 19:16:28,000 kernel[0]: Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    27/10/13 19:16:28,000 kernel[0]: vm_page_bootstrap: 1837787 free pages and 242981 wired pages
    27/10/13 19:16:28,000 kernel[0]: kext submap [0xffffff7f80742000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000742000]
    27/10/13 19:16:28,000 kernel[0]: zone leak detection enabled
    27/10/13 19:16:28,000 kernel[0]: standard timeslicing quantum is 10000 us
    27/10/13 19:16:28,000 kernel[0]: standard background quantum is 2500 us
    27/10/13 19:16:28,000 kernel[0]: mig_table_max_displ = 74
    27/10/13 19:16:28,000 kernel[0]: TSC Deadline Timer supported and enabled
    27/10/13 19:16:28,000 kernel[0]: corecrypto kext started!
    27/10/13 19:16:28,000 kernel[0]: Running kernel space in FIPS MODE
    27/10/13 19:16:28,000 kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    27/10/13 19:16:28,000 kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    27/10/13 19:15:45,287 com.apple.launchd[1]: *** launchd[1] has started up. ***
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    27/10/13 19:16:28,000 kernel[0]: corecrypto.kext FIPS POST passed!
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    27/10/13 19:16:28,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    27/10/13 19:16:28,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    27/10/13 19:16:28,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    27/10/13 19:16:28,000 kernel[0]: calling mpo_policy_init for Sandbox
    27/10/13 19:16:28,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    27/10/13 19:15:45,287 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    27/10/13 19:16:28,000 kernel[0]: calling mpo_policy_init for Quarantine
    27/10/13 19:16:28,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    27/10/13 19:16:28,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    27/10/13 19:16:28,380 com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    27/10/13 19:16:28,000 kernel[0]: The Regents of the University of California. All rights reserved.
    27/10/13 19:16:28,000 kernel[0]: MAC Framework successfully initialized
    27/10/13 19:16:28,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    27/10/13 19:16:28,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    27/10/13 19:16:28,000 kernel[0]: ACPI: sleep states S3 S4 S5
    27/10/13 19:16:28,000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    27/10/13 19:16:28,000 kernel[0]: AppleIntelCPUPowerManagement: (built 13:50:43 Sep 29 2013) initialization complete
    27/10/13 19:16:28,000 kernel[0]: pci build Sep 29 2013 13:35:16, flags 0x23008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    27/10/13 19:16:28,000 kernel[0]: [ PCI configuration begin ]
    27/10/13 19:16:28,000 kernel[0]: console relocated to 0xf81000000
    27/10/13 19:16:28,000 kernel[0]: [ PCI configuration end, bridges 13, devices 16 ]
    27/10/13 19:16:28,000 kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    27/10/13 19:16:28,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    27/10/13 19:16:28,000 kernel[0]: rooting via boot-uuid from /chosen: F47B0803-7F96-3B8A-A025-DB74B67338B2
    27/10/13 19:16:28,000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    27/10/13 19:16:28,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    27/10/13 19:16:28,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    27/10/13 19:16:28,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    27/10/13 19:16:28,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    27/10/13 19:16:28,000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    27/10/13 19:16:28,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/TOSHIBA MK5065GSXF Media/IOGUIDPartitionScheme/Customer@2
    27/10/13 19:16:28,000 kernel[0]: BSD root: disk0s2, major 1, minor 1
    27/10/13 19:16:28,000 kernel[0]: BTCOEXIST off
    27/10/13 19:16:28,000 kernel[0]: BRCM tunables:
    27/10/13 19:16:28,000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    27/10/13 19:16:28,000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID a4b197fffeaf7c74; max speed s800.
    27/10/13 19:16:28,000 kernel[0]: Kernel is LP64
    27/10/13 19:16:28,000 kernel[0]: USBMSC Identifier (non-unique): 㥒〳䜶䑗〳<U+3130>䩘†ँ 0xe8d 0x1956 0x0, 2
    27/10/13 19:16:28,000 kernel[0]: USBMSC Identifier (non-unique): KXGBB140833      0x5ac 0x1500 0x200, 2
    27/10/13 19:16:29,000 kernel[0]: BCM5701Enet: Ethernet address 3c:07:54:4c:6b:11
    27/10/13 19:16:29,000 kernel[0]: AirPort_Brcm4331: Ethernet address 60:c5:47:22:70:71
    27/10/13 19:16:29,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    27/10/13 19:16:29,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    27/10/13 19:16:30,107 airportd[25]: _processDLILEvent: en1 attached (down)
    27/10/13 19:16:30,159 com.apple.SecurityServer[16]: Session 100000 created
    27/10/13 19:16:30,000 kernel[0]: createVirtIf(): ifRole = 1
    27/10/13 19:16:30,000 kernel[0]: in func createVirtualInterface ifRole = 1
    27/10/13 19:16:30,000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff803d734000
    27/10/13 19:16:30,000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    27/10/13 19:16:30,000 kernel[0]: Created virtif 0xffffff803d734000 p2p0
    27/10/13 19:16:30,324 com.apple.SecurityServer[16]: Entering service
    27/10/13 19:16:30,691 UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    27/10/13 19:16:30,000 kernel[0]: Previous Shutdown Cause: 5
    27/10/13 19:16:30,000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    27/10/13 19:16:30,000 kernel[0]: IOBluetoothUSBDFU::probe
    27/10/13 19:16:30,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8281 FirmwareVersion - 0x0125
    27/10/13 19:16:30,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff803d5b0400 ****
    27/10/13 19:16:30,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff803d5b0400
    27/10/13 19:16:30,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    27/10/13 19:16:30,000 kernel[0]: Waves SoundGrid Version: 2.0.0.14, Non-Interleaved Playback
    27/10/13 19:16:30,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    27/10/13 19:16:30,000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    27/10/13 19:16:30,000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    27/10/13 19:16:30,000 kernel[0]: DSMOS has arrived
    27/10/13 19:16:30,000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000060
    27/10/13 19:16:31,227 mDNSResponder[35]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    27/10/13 19:16:31,442 systemkeychain[38]: done file: /var/run/systemkeychaincheck.done
    27/10/13 19:16:31,493 mDNSResponder[35]: D2D_IPC: Loaded
    27/10/13 19:16:31,493 mDNSResponder[35]: D2DInitialize succeeded
    27/10/13 19:16:31,680 blued[51]: Read the UHE Info
    27/10/13 19:16:31,681 blued[51]: Read version 2 info.  Number of devices:1
    27/10/13 19:16:31,681 blued[51]: Class of device:     0x2594
    27/10/13 19:16:31,681 blued[51]: Device name: 'Apple Wireless Trackpad' length:24
    27/10/13 19:16:31,681 blued[51]: Finished reading the HID data
    27/10/13 19:16:31,681 blued[51]: Found a device with PID:0x030e VID:0x05ac
    27/10/13 19:16:31,844 configd[17]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    27/10/13 19:16:31,844 configd[17]: DHCP en1: INIT transmit failed
    27/10/13 19:16:31,861 configd[17]: setting hostname to "Mac-mini-di-Giuseppe-4.local"
    27/10/13 19:16:31,873 configd[17]: network changed: DNS*
    27/10/13 19:16:33,585 hidd[78]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    27/10/13 19:16:33,789 hidd[78]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    27/10/13 19:16:33,997 loginwindow[73]: Login Window Application Started
    27/10/13 19:16:34,163 awacsd[86]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    27/10/13 19:16:34,359 awacsd[86]: InnerStore CopyAllZones: no info in Dynamic Store
    27/10/13 19:16:34,383 com.apple.usbmuxd[59]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    27/10/13 19:16:34,607 locationd[74]: NOTICE,Location icon should now be in state 0
    27/10/13 19:16:34,607 locationd[74]: locationd was started after an unclean shutdown
    27/10/13 19:16:34,000 kernel[0]: macx_swapon SUCCESS
    27/10/13 19:16:34,794 kdc[76]: label: default
    27/10/13 19:16:34,794 kdc[76]:  dbname: od:/Local/Default
    27/10/13 19:16:34,794 kdc[76]:  mkey_file: /var/db/krb5kdc/m-key
    27/10/13 19:16:34,795 kdc[76]:  acl_file: /var/db/krb5kdc/kadmind.acl
    27/10/13 19:16:34,899 kdc[76]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    27/10/13 19:16:34,991 kdc[76]: KDC started
    27/10/13 19:16:34,966 appleeventsd[83]: main: Starting up
    27/10/13 19:16:35,784 apsd[88]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    27/10/13 19:16:35,785 apsd[88]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    27/10/13 19:16:35,000 kernel[0]: [BNBTrackpadDevice::init][75.19] init is complete
    27/10/13 19:16:35,000 kernel[0]: [BNBTrackpadDevice::handleStart][75.19] returning 1
    27/10/13 19:16:35,000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    27/10/13 19:16:36,000 kernel[0]: [AppleMultitouchDevice::start] entered
    27/10/13 19:16:37,205 mds[70]: (Normal) FMW: FMW 0 0
    27/10/13 19:16:37,269 coreservicesd[28]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    27/10/13 19:16:37,270 WindowServer[97]: Server is starting up
    27/10/13 19:16:43,807 digest-service[99]: label: default
    27/10/13 19:16:43,807 digest-service[99]:       dbname: od:/Local/Default
    27/10/13 19:16:43,807 digest-service[99]:       mkey_file: /var/db/krb5kdc/m-key
    27/10/13 19:16:43,807 digest-service[99]:       acl_file: /var/db/krb5kdc/kadmind.acl
    27/10/13 19:16:43,810 digest-service[99]: digest-request: uid=0
    27/10/13 19:16:43,955 rpcsvchost[100]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    27/10/13 19:16:43,960 digest-service[99]: digest-request: init request
    27/10/13 19:16:44,000 digest-service[99]: digest-request: init return domain: BUILTIN server: MAC-MINI-DI-GIUSEPPE-4
    27/10/13 19:16:44,805 stackshot[62]: Timed out waiting for IOKit to finish matching.
    27/10/13 19:16:45,788 apsd[88]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    27/10/13 19:16:47,836 AGProtocolService[89]: Waves SG Protocol Service: Could not Start Kernel Driver Streaming!
    27/10/13 19:16:49,361 awacsd[86]: Exiting
    27/10/13 19:17:05,066 _networkd[104]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    27/10/13 19:17:05,498 _networkd[107]: Unable to resolve hostname(s)
    27/10/13 19:17:05,511 ntpd[53]: proto: precision = 1.000 usec
    27/10/13 19:17:28,888 configd[17]: InterfaceNamer: timed out waiting for IOKit to quiesce
    27/10/13 19:17:28,888 configd[17]: Busy services :
    27/10/13 19:17:28,889 configd[17]:   Macmini5,1 [1, 106028 ms]
    27/10/13 19:17:28,889 configd[17]:   Macmini5,1/AppleACPIPlatformExpert [1, 106011 ms]
    27/10/13 19:17:28,889 configd[17]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0 [1, 105987 ms]
    27/10/13 19:17:28,889 configd[17]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI [1, 105975 ms]
    27/10/13 19:17:28,889 configd[17]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C [1, 105974 ms]
    27/10/13 19:17:28,889 configd[17]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBridge [1, 105971 ms]
    27/10/13 19:17:28,889 configd[17]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBridge/ SDXC@0,1 [!matched, 1, 105971 ms]
    27/10/13 19:17:37,272 WindowServer[97]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    27/10/13 19:17:37,272 WindowServer[97]: IOKitWaitQuiet: (iokit/common) I/O Timeout
    27/10/13 19:17:37,275 WindowServer[97]: Session 256 retained (2 references)
    27/10/13 19:17:37,275 WindowServer[97]: Session 256 released (1 references)
    27/10/13 19:17:37,283 WindowServer[97]: Session 256 retained (2 references)
    27/10/13 19:17:37,284 WindowServer[97]: init_page_flip: page flip mode is on
    27/10/13 19:17:37,562 WindowServer[97]: mux_initialize: Couldn't find any matches
    27/10/13 19:17:37,576 WindowServer[97]: GLCompositor enabled for tile size [256 x 256]
    27/10/13 19:17:37,576 WindowServer[97]: CGXGLInitMipMap: mip map mode is on
    27/10/13 19:17:37,611 WindowServer[97]: WSMachineUsesNewStyleMirroring: false
    27/10/13 19:17:37,611 WindowServer[97]: Display 0x0b418576: GL mask 0x4; bounds (0, 0)[1920 x 1080], 16 modes available
    Main, Active, on-line, enabled, boot, Vendor 4c2d, Model 6dd, S/N 43423234, Unit 2, Rotation 0
    UUID 0x00004c2d000006dd4342323400000000
    27/10/13 19:17:37,611 WindowServer[97]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    27/10/13 19:17:37,611 WindowServer[97]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    27/10/13 19:17:37,616 WindowServer[97]: Created shield window 0x5 for display 0x0b418576
    27/10/13 19:17:37,616 WindowServer[97]: Created shield window 0x6 for display 0x003f003c
    27/10/13 19:17:37,616 WindowServer[97]: Created shield window 0x7 for display 0x003f003d
    27/10/13 19:17:37,617 WindowServer[97]: Display 0x0b418576: GL mask 0x4; bounds (0, 0)[1920 x 1080], 16 modes available
    Main, Active, on-line, enabled, boot, Vendor 4c2d, Model 6dd, S/N 43423234, Unit 2, Rotation 0
    UUID 0x00004c2d000006dd4342323400000000
    27/10/13 19:17:37,617 WindowServer[97]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    27/10/13 19:17:37,617 WindowServer[97]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    27/10/13 19:17:37,618 WindowServer[97]: CGXPerformInitialDisplayConfiguration
    27/10/13 19:17:37,618 WindowServer[97]:   Display 0x0b418576: MappedDisplay Unit 2; Vendor 0x4c2d Model 0x6dd S/N 1128411700 Dimensions 6.30 x 3.54; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    27/10/13 19:17:37,618 WindowServer[97]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    27/10/13 19:17:37,618 WindowServer[97]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    27/10/13 19:17:38,098 WindowServer[97]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000007, accelerator 0x00003343, unit 0, caps QEX|QGL|MIPMAP, vram 579 MB
    27/10/13 19:17:38,098 WindowServer[97]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000007, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    27/10/13 19:17:38,102 loginwindow[73]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    27/10/13 19:17:38,363 WindowServer[97]: Created shield window 0x8 for display 0x0b418576
    27/10/13 19:17:38,364 WindowServer[97]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:17:38,389 launchctl[117]: com.apple.findmymacmessenger: Already loaded
    27/10/13 19:17:38,502 com.apple.SecurityServer[16]: Session 100005 created
    27/10/13 19:17:38,716 locationd[128]: NOTICE,Location icon should now be in state 0
    27/10/13 19:17:38,721 loginwindow[73]: Login Window Started Security Agent
    27/10/13 19:17:38,728 UserEventAgent[120]: cannot find useragent 1102
    27/10/13 19:17:38,865 SecurityAgent[129]: This is the first run
    27/10/13 19:17:38,865 SecurityAgent[129]: MacBuddy was run = 0
    27/10/13 19:17:38,975 SecurityAgent[129]: User info context values set for Guest1
    27/10/13 19:17:39,617 WindowServer[97]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    27/10/13 19:17:39,638 WindowServer[97]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:17:39,652 WindowServer[97]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:17:41,501 loginwindow[73]: Login Window - Returned from Security Agent
    27/10/13 19:17:41,507 loginwindow[73]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    27/10/13 19:17:41,510 loginwindow[73]: USER_PROCESS: 73 console
    27/10/13 19:17:42,256 locationd[157]: NOTICE,Location icon should now be in state 0
    27/10/13 19:17:42,320 UserEventAgent[149]: cannot find fw daemon port 1102
    27/10/13 19:17:42,933 com.apple.SecurityServer[16]: Session 100006 created
    27/10/13 19:17:43,500 WindowServer[97]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    27/10/13 19:17:43,853 WindowServer[97]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:17:44,386 coreaudiod[176]: Enabled automatic stack shots because audio IO is inactive
    27/10/13 19:17:44,469 NetworkBrowserAgent[177]: Starting NetworkBrowserAgent
    27/10/13 19:17:44,511 coreservicesd[28]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationBirth to notificationID=124
    27/10/13 19:17:46,656 imagent[191]: [Warning] Setting up a new messages database.
    27/10/13 19:18:01,657 com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[124]) Exit timeout elapsed (20 seconds). Killing
    27/10/13 19:18:09,952 com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    27/10/13 19:21:34,887 com.apple.launchd[1]: (com.apple.xprotectupdater[56]) Exited with code: 255
    27/10/13 19:21:37,583 hidd[78]: Timeout waiting for IOKit to be quiet
    27/10/13 19:21:51,266 WindowServer[97]: Unable to open IOHIDSystem (e00002bd)
    27/10/13 19:21:51,000 kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    27/10/13 19:22:02,105 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,105 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,105 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,106 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,106 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,106 WindowServer[97]: dict count after removing entry for window 0x21 is 0
    27/10/13 19:22:02,131 com.apple.launchd[1]: (com.apple.quicklook.satellite.A22FF53D-2A2D-4123-B8BF-017578848F85[224]) Could not terminate job: 3: No such process
    27/10/13 19:22:02,131 com.apple.launchd[1]: (com.apple.quicklook.satellite.A22FF53D-2A2D-4123-B8BF-017578848F85[224]) Using fallback option to terminate job...
    27/10/13 19:22:02,135 coreservicesd[28]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=167
    27/10/13 19:22:02,136 coreservicesd[28]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=116
    27/10/13 19:22:02,136 coreservicesd[28]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=174
    27/10/13 19:22:02,139 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,139 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,140 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,140 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,140 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,162 loginwindow[73]: DEAD_PROCESS: 73 console
    27/10/13 19:22:02,387 loginwindow[73]: FolderManager: Failed looking up user domain root; url='file://localhost/Users/Guest1/' path=/Users/Guest1/ err=-43 uid=201 euid=201
    27/10/13 19:22:02,388 loginwindow[73]: FolderManager: Failed looking up user domain root; url='file://localhost/Users/Guest1/' path=/Users/Guest1/ err=-43 uid=201 euid=201
    27/10/13 19:22:02,388 loginwindow[73]: FolderManager: Failed looking up user domain root; url='file://localhost/Users/Guest1/' path=/Users/Guest1/ err=-43 uid=201 euid=201
    27/10/13 19:22:02,644 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,644 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,645 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,645 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:02,645 WindowServer[97]: CGXGetConnectionProperty: Invalid connection 37903
    27/10/13 19:22:04,076 coreservicesd[28]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=134
    27/10/13 19:22:04,082 loginwindow[73]: FolderManager: Failed looking up user domain root; url='file://localhost/Users/Guest1/' path=/Users/Guest1/ err=-43 uid=201 euid=201
    27/10/13 19:22:04,082 loginwindow[73]: FolderManager: Failed looking up user domain root; url='file://localhost/Users/Guest1/' path=/Users/Guest1/ err=-43 uid=201 euid=201
    27/10/13 19:22:04,082 loginwindow[73]: FolderManager: Failed looking up user domain root; url='file://localhost/Users/Guest1/' path=/Users/Guest1/ err=-43 uid=201 euid=201
    27/10/13 19:22:04,083 WindowServer[97]: CGXRestartSessionWorkspace: session workspace exited for session 256 (on console)
    27/10/13 19:22:04,083 WindowServer[97]: Session 256 released (1 references)
    27/10/13 19:22:04,083 WindowServer[97]: Session 256 released (0 references)
    27/10/13 19:22:04,084 WindowServer[97]: loginwindow connection closed; closing server.
    27/10/13 19:22:04,085 loginwindow[73]: CGSFlushWindowContentRegion: Invalid connection
    27/10/13 19:22:04,085 coreservicesd[28]: FindBestLSSession(), no match for inSessionID kLSCurrentSessionID auditTokenInfo( uid=201 euid=201 auSessionID=100005 create=true
    27/10/13 19:22:04,089 UserEventAgent[149]: CGSGetNextEventRecord (Inline) connection 0x7917, 16384 bytes
    27/10/13 19:22:04,089 UserEventAgent[149]: CGSShutdownServerConnections: Detaching application from window server
    27/10/13 19:22:04,089 UserEventAgent[149]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    27/10/13 19:22:04,089 Software Update[209]: CGSGetNextEventRecord (Inline) connection 0xcc13, 16384 bytes
    27/10/13 19:22:04,090 Software Update[209]: CGSShutdownServerConnections: Detaching application from window server
    27/10/13 19:22:04,090 Software Update[209]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    27/10/13 19:22:04,172 loginwindow[73]: CGSNewWindowWithOpaqueShape: Invalid connection
    27/10/13 19:22:04,177 loginwindow[73]: CGSFlushWindowContentRegion: Invalid connection
    27/10/13 19:22:04,179 Download Java Components[208]: CGSGetNextEventRecord (Inline) connection 0xc803, 16384 bytes
    27/10/13 19:22:04,179 Download Java Components[208]: CGSShutdownServerConnections: Detaching application from window server
    27/10/13 19:22:04,180 Download Java Components[208]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    27/10/13 19:22:04,182 coreservicesd[28]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=116
    27/10/13 19:22:04,183 UserEventAgent[11]: Captive: [UserAgentDied:139] User Agent @port=43783 Died
    27/10/13 19:22:04,188 blued[51]: -[CBManager init] init returning self:0x7f8ed230e200
    27/10/13 19:22:04,190 apsd[203]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    27/10/13 19:22:04,228 loginwindow[252]: Login Window Application Started
    27/10/13 19:22:04,297 WindowServer[253]: Server is starting up
    27/10/13 19:22:04,298 WindowServer[253]: Session 256 retained (2 references)
    27/10/13 19:22:04,298 WindowServer[253]: Session 256 released (1 references)
    27/10/13 19:22:04,301 WindowServer[253]: Session 256 retained (2 references)
    27/10/13 19:22:04,302 WindowServer[253]: init_page_flip: page flip mode is on
    27/10/13 19:22:04,341 WindowServer[253]: mux_initialize: Couldn't find any matches
    27/10/13 19:22:04,389 WindowServer[253]: GLCompositor enabled for tile size [256 x 256]
    27/10/13 19:22:04,389 WindowServer[253]: CGXGLInitMipMap: mip map mode is on
    27/10/13 19:22:04,407 WindowServer[253]: WSMachineUsesNewStyleMirroring: false
    27/10/13 19:22:04,408 WindowServer[253]: Display 0x0b418576: GL mask 0x4; bounds (0, 0)[1920 x 1080], 16 modes available
    Main, Active, on-line, enabled, boot, Vendor 4c2d, Model 6dd, S/N 43423234, Unit 2, Rotation 0
    UUID 0x00004c2d000006dd4342323400000000
    27/10/13 19:22:04,408 WindowServer[253]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    27/10/13 19:22:04,408 WindowServer[253]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    27/10/13 19:22:04,412 WindowServer[253]: Created shield window 0x4 for display 0x0b418576
    27/10/13 19:22:04,412 WindowServer[253]: Created shield window 0x5 for display 0x003f003c
    27/10/13 19:22:04,412 WindowServer[253]: Created shield window 0x6 for display 0x003f003d
    27/10/13 19:22:04,414 WindowServer[253]: Display 0x0b418576: GL mask 0x4; bounds (0, 0)[1920 x 1080], 16 modes available
    Main, Active, on-line, enabled, boot, Vendor 4c2d, Model 6dd, S/N 43423234, Unit 2, Rotation 0
    UUID 0x00004c2d000006dd4342323400000000
    27/10/13 19:22:04,414 WindowServer[253]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    27/10/13 19:22:04,414 WindowServer[253]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    27/10/13 19:22:04,414 WindowServer[253]: CGXPerformInitialDisplayConfiguration
    27/10/13 19:22:04,414 WindowServer[253]:   Display 0x0b418576: MappedDisplay Unit 2; Vendor 0x4c2d Model 0x6dd S/N 1128411700 Dimensions 6.30 x 3.54; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    27/10/13 19:22:04,414 WindowServer[253]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    27/10/13 19:22:04,415 WindowServer[253]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    27/10/13 19:22:04,421 WindowServer[253]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000007, accelerator 0x00003343, unit 0, caps QEX|QGL|MIPMAP, vram 579 MB
    27/10/13 19:22:04,422 WindowServer[253]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000007, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    27/10/13 19:22:04,454 loginwindow[252]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    27/10/13 19:22:04,483 WindowServer[253]: Created shield window 0x7 for display 0x0b418576
    27/10/13 19:22:04,484 WindowServer[253]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:22:04,508 launchctl[255]: com.apple.findmymacmessenger: Already loaded
    27/10/13 19:22:04,637 com.apple.SecurityServer[16]: Session 100007 created
    27/10/13 19:22:05,401 loginwindow[252]: Login Window Started Security Agent
    27/10/13 19:22:05,443 UserEventAgent[257]: cannot find useragent 1102
    27/10/13 19:22:05,524 SecurityAgent[264]: MacBuddy was run = 0
    27/10/13 19:22:06,413 WindowServer[253]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    27/10/13 19:22:06,437 WindowServer[253]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:22:06,454 WindowServer[253]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:22:11,294 cfprefsd[147]: Failed to open parent directory, errno was 2
    27/10/13 19:22:12,510 SecurityAgent[264]: User info context values set for joe
    27/10/13 19:22:12,766 SecurityAgent[264]: Login Window login proceeding
    27/10/13 19:22:13,123 loginwindow[252]: Login Window - Returned from Security Agent
    27/10/13 19:22:13,184 loginwindow[252]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    27/10/13 19:22:13,218 loginwindow[252]: USER_PROCESS: 252 console
    27/10/13 19:22:13,547 com.apple.launchd.peruser.501[273]: (com.divx.agent.postinstall) Unknown key: LimitToSessionType
    27/10/13 19:22:13,547 com.apple.launchd.peruser.501[273]: (com.spotify.webhelper) Unknown key: SpotifyPath
    27/10/13 19:22:13,547 com.apple.launchd.peruser.501[273]: (com.citrix.ServiceRecords) Unknown key for string: CitrixVersionString
    27/10/13 19:22:13,547 com.apple.launchd.peruser.501[273]: (com.citrix.ServiceRecords) Unknown key: CitrixVersionString
    27/10/13 19:22:13,548 com.apple.launchd.peruser.501[273]: (com.apple.gamed) Ignored this key: UserName
    27/10/13 19:22:13,548 com.apple.launchd.peruser.501[273]: (com.apple.gamed) Ignored this key: GroupName
    27/10/13 19:22:13,549 com.apple.launchd.peruser.501[273]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    27/10/13 19:22:13,553 loginwindow[252]: Connection with distnoted server was invalidated
    27/10/13 19:22:13,564 distnoted[277]: # distnote server agent  absolute time: 390.832594115   civil time: Sun Oct 27 19:22:13 2013   pid: 277 uid: 501  root: no
    27/10/13 19:22:13,662 WindowServer[253]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    27/10/13 19:22:13,849 coreservicesd[28]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=191
    27/10/13 19:22:14,231 talagent[286]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    27/10/13 19:22:14,241 com.apple.launchd.peruser.501[273]: (com.apple.afpstat-qfa[309]) Exited with code: 2
    27/10/13 19:22:14,251 talagent[286]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    27/10/13 19:22:14,318 com.apple.launchd.peruser.501[273]: ([email protected][317]) Exited with code: 2
    27/10/13 19:22:14,549 com.apple.launchd.peruser.501[273]: (com.adobe.CS4ServiceManager[312]) Exited with code: 97
    27/10/13 19:22:14,568 PlexHelper[314]: PlexHelper 0.7 starting up...
    27/10/13 19:22:14,000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=315[GoogleSoftwareUp] clearing CS_VALID
    27/10/13 19:22:14,881 NetworkBrowserAgent[324]: Starting NetworkBrowserAgent
    27/10/13 19:22:14,914 WindowServer[253]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/10/13 19:22:14,929 com.apple.launchd.peruser.501[273]: (com.apple.mrt.uiagent[299]) Exited with code: 255
    27/10/13 19:22:16,076 locationd[334]: NOTICE,Location icon should now be in state 0
    27/10/13 19:22:16,493 Google Drive[332]: PyObjCPointer created: at 0xac523da8 of type {__CFBoolean=}
    27/10/13 19:22:16,494 Google Drive[332]: PyObjCPointer created: at 0xac523da0 of type {__CFBoolean=}
    27/10/13 19:22:16,495 Google Drive[332]: PyObjCPointer created: at 0xac523db0 of type {__CFNumber=}
    27/10/13 19:22:16,496 Google Drive[332]: PyObjCPointer created: at 0xac523dc0 of type {__CFNumber=}
    27/10/13 19:22:16,497 Google Drive[332]: PyObjCPointer created: at 0xac523dd0 of type {__CFNumber=}
    27/10/13 19:22:16,814 UserEventAgent[276]: cannot find fw daemon port 1102
    27/10/13 19:22:18,428 apsd[203]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    27/10/13 19:22:20,344 Software Update[336]: Couldn't contact spell checker for Italiano
    27/10/13 19:22:20,784 UserEventAgent[276]: rcdevent.plugin : IOHIDManagerOpen returned an error but continuing anyway.
    27/10/13 19:22:21,122 Download Java Components[323]: Java Install cancelled
    27/10/13 19:22:21,136 locationd[355]: NOTICE,Location icon should now be in state 0
    27/10/13 19:22:21,351 com.apple.SecurityServer[16]: Session 100009 created
    Mac-mini-di-Giuseppe-4:~ joe$ kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}'
    com.Cycling74.driver.Soundflower (1.6.2)
    com.waves.driver.soundgrid (2.0.0)
    com.cleverandson.driver.XAerial (1.0.0)
    Mac-mini-di-Giuseppe-4:~ joe$ sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfi x|x)/{print $3}'
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    org.macosforge.xquartz.privileged_startx
    com.waves.daemon.SoundGridProtocolService
    com.oracle.java.Helper-Tool
    com.cleverfiles.cfbackd
    com.adobe.versioncueCS4
    com.adobe.fpsaud
    Mac-mini-di-Giuseppe-4:~ joe$ launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}'
    com.paragon.ntfs.trial
    com.paragon.extfs.trial
    org.macosforge.xquartz.startx
    com.oracle.java.Java-Updater
    com.citrix.ServiceRecords
    com.citrix.ReceiverHelper
    com.citrix.AuthManager_Mac
    com.adobe.CS4ServiceManager
    com.spotify.webhelper
    com.plexapp.helper
    com.google.keystone.user.agent
    com.divx.agent.postinstall
    com.adobe.ARM.930da3ce175de4e82bd3cdf1dd8571f74bd3b6a7236bc94bfc00f6e9
    Mac-mini-di-Giuseppe-4:~ joe$ osascript -e 'tell application "System Events" to get name of every login item' 2> /dev/null
    iTunesHelper, Canon IJ Network Scanner Selector EX, Google Drive
    Mac-mini-di-Giuseppe-4:~ joe$ sudo iotop -C 5 12
    Tracing... Please wait.
    2013 Oct 27 19:49:46,  load: 0.42,  disk_r:     36 KB,  disk_w:      0 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
        0     12      1 kextd            ??        1   1 R            36864
    2013 Oct 27 19:49:51,  load: 0.71,  disk_r:    100 KB,  disk_w:     16 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
      501    424    273 Terminal         ??        1   1 W            16384
      501    424    273 Terminal         ??        1   1 R           102400
    2013 Oct 27 19:49:56,  load: 0.65,  disk_r:      0 KB,  disk_w:     16 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
      501    390    388 WebProcess       ??        1   1 W            16384
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    dtrace: error on enabled probe ID 5 (ID 1031: io:mach_kernel:buf_strategy:start): illegal operation in action #3 at DIF offset 0
    2013 Oct 27 19:50:01,  load: 0.60,  disk_r:      0 KB,  disk_w:    120 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
        0      1      0 launchd          ??        1   1 W           122880
        0      0      0                  ??        1   1            1952768
    2013 Oct 27 19:50:06,  load: 0.63,  disk_r:    232 KB,  disk_w:    216 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
      501    388    273 Safari           ??        1   1 W           221184
      501    388    273 Safari           ??        1   1 R           237568
    2013 Oct 27 19:50:11,  load: 0.58,  disk_r:      0 KB,  disk_w:     36 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
      501    390    388 WebProcess       ??        1   1 W            36864
    2013 Oct 27 19:50:16,  load: 0.53,  disk_r:      0 KB,  disk_w:      0 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
    2013 Oct 27 19:50:21,  load: 0.49,  disk_r:      0 KB,  disk_w:      0 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
    2013 Oct 27 19:50:26,  load: 0.45,  disk_r:      0 KB,  disk_w:     44 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
      501    390    388 WebProcess       ??        1   1 W            45056
    2013 Oct 27 19:50:31,  load: 0.41,  disk_r:      0 KB,  disk_w:     96 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
        0      1      0 launchd          ??        1   1 W            98304
        0      0      0                  ??        1   1             133120
    2013 Oct 27 19:50:36,  load: 0.54,  disk_r:      0 KB,  disk_w:      0 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
    2013 Oct 27 19:50:41,  load: 0.49,  disk_r:      0 KB,  disk_w:    420 KB
      UID    PID   PPID CMD              DEVICE  MAJ MIN D            BYTES
      501    390    388 WebProcess       ??        1   1 W            61440
      501    346    273 cookied          ??        1   1 W           368640

    Thanks for pointing me to places to look into that I had not looked into before. I was very hopeful!
    I did again the SafeBoot test, and SafeBoot does not show the problem.
    Some other findings:
    /private/var/run/StartupItems does not appear to exist in my machine
    /Library/StartupItems and /System/Library/StartupItems are/system/ empty
    /System/Library/LaunchDaemons contains a lot of stuff, at first glance I could not say what might be causing the problem, here is the list
    31316461 -rw-r--r--    1 wheel   678 27 Ott 15:24 bootps.plist
    31328716 -rw-r--r--    1 wheel   729 27 Ott 15:26 com.apple.AOSNotificationFMM.plist
    31335194 -rw-r--r--    1 wheel   480 27 Ott 15:26 com.apple.AirPlayXPCHelper.plist
    31316468 -rw-r--r--    1 wheel   811 27 Ott 15:24 com.apple.AppleFileServer.plist
    31316480 -rw-r--r--    1 wheel   626 27 Ott 15:24 com.apple.CoreRAID.plist
    31394633 -rw-r--r--    1 wheel   647 27 Ott 15:28 com.apple.DiagnosticReportCleanUp.plist
    31415806 -rw-r--r--    1 wheel   906 27 Ott 15:29 com.apple.DumpGPURestart.plist
    31394634 -rw-r--r--    1 wheel   352 27 Ott 15:28 com.apple.DumpPanic.plist
    31316489 -rw-r--r--    1 wheel   296 27 Ott 15:25 com.apple.FileCoordination.plist
    31407998 -rw-r--r--    1 wheel   952 27 Ott 15:29 com.apple.FileSyncAgent.sshd.plist
    31316494 -rw-r--r--    1 wheel   610 27 Ott 15:25 com.apple.FontWorker.plist
    31420695 -rw-r--r--    1 wheel   372 27 Ott 15:29 com.apple.IFCStart.plist
    31422263 -rw-r--r--    1 wheel   546 27 Ott 15:29 com.apple.IOAccelMemoryInfoCollector.plist
    31423939 -rw-r--r--    1 wheel   714 27 Ott 15:30 com.apple.IOBluetoothUSBDFU.plist
    31432840 -rw-r--r--    1 wheel   731 27 Ott 15:30 com.apple.InternetSharing.plist
    31420053 -rw-r--r--    1 wheel   526 27 Ott 15:29 com.apple.Kerberos.digest-service.plist
    31420054 -rw-r--r--    1 wheel   586 27 Ott 15:29 com.apple.Kerberos.kadmind.plist
    31420055 -rw-r--r--    1 wheel   524 27 Ott 15:29 com.apple.Kerberos.kcm.plist
    31420056 -rw-r--r--    1 wheel   850 27 Ott 15:29 com.apple.Kerberos.kdc.plist
    31420057 -rw-r--r--    1 wheel   588 27 Ott 15:29 com.apple.Kerberos.kpasswdd.plist
    31316499 -rw-r--r--    1 wheel   449 27 Ott 15:25 com.apple.KernelEventAgent.plist
    31446907 -rw-r--r--    1 wheel   457 27 Ott 15:31 com.apple.ManagedClient.plist
    31446908 -rw-r--r--    1 wheel   585 27 Ott 15:31 com.apple.ManagedClient.startup.plist
    31316508 -rw-r--r--    1 wheel   418 27 Ott 15:25 com.apple.NetBootClientStatus.plist
    31316511 -rw-r--r--    1 wheel   585 27 Ott 15:25 com.apple.NetworkDiagnostics.plist
    31316512 -rw-r--r--    1 wheel   486 27 Ott 15:25 com.apple.NetworkLinkConditioner.plist
    31455980 -rw-r--r--    1 wheel   575 27 Ott 15:31 com.apple.ODSAgent.plist
    31406688 -rw-r--r--    1 wheel   561 27 Ott 15:28 com.apple.PCIELaneConfigTool.plist
    31534137 -rw-r--r--    1 wheel   621 27 Ott 15:34 com.apple.PasswordService.plist
    31659830 -rw-r--r--    1 wheel   618 27 Ott 23:40 com.apple.RFBEventHelper.plist
    31659831 -rw-r--r--    1 wheel   676 27 Ott 23:40 com.apple.RemoteDesktop.PrivilegeProxy.plist
    31316516 -rw-r--r--    1 wheel   614 27 Ott 15:25 com.apple.ReportCrash.Root.plist
    31316518 -rw-r--r--    1 wheel   459 27 Ott 15:25 com.apple.SCHelper.plist
    31316519 -rw-r--r--    1 wheel   696 27 Ott 15:25 com.apple.SecurityAgent.plist
    31485183 -rw-r--r--    1 wheel   620 27 Ott 15:33 com.apple.ServerPerfLog.aslmanager.plist
    31485184 -rw-r--r--    1 wheel   510 27 Ott 15:33 com.apple.ServerPerfLog.plist
    31316523 -rw-r--r--    1 wheel   611 27 Ott 15:25 com.apple.SystemStarter.plist
    31316525 -rw-r--r--    1 wheel   766 27 Ott 15:25 com.apple.TrustEvaluationAgent.system.plist
    31502162 -rw-r--r--    1 wheel   541 27 Ott 15:33 com.apple.UserEventAgent-System.plist
    31502236 -rw-r--r--    1 wheel   453 27 Ott 15:33 com.apple.UserNotificationCenter.plist
    31316526 -rw-r--r--    1 wheel   647 27 Ott 15:25 com.apple.WindowServer.plist
    31331043 -rw-r--r--    1 wheel   764 27 Ott 15:26 com.apple.activitymonitord.plist
    31316462 -rw-r--r--    1 wheel   491 27 Ott 15:24 com.apple.afpfs_afpLoad.plist
    31316463 -rw-r--r--    1 wheel   524 27 Ott 15:24 com.apple.afpfs_checkafp.plist
    31316464 -rw-r--r--    1 wheel   541 27 Ott 15:24 com.apple.airport.wps.plist
    31316466 -rw-r--r--    1 wheel   583 27 Ott 15:24 com.apple.airportPrefsUpdater.plist
    31316465 -rw-r--r--    1 wheel   662 27 Ott 15:24 com.apple.airportd.plist
    31316467 -rw-r--r--    1 wheel   778 27 Ott 15:24 com.apple.alf.agent.plist
    31342500 -rw-r--r--    1 wheel   571 27 Ott 15:26 com.apple.appleprofilepolicyd.plist
    31316469 -rw-r--r--    1 wheel   794 27 Ott 15:24 com.apple.apsd.plist
    31551319 -rw-r--r--    1 wheel   168 27 Ott 15:34 com.apple.aslmanager.plist
    31551328 -rw-r--r--    1 wheel   444 27 Ott 15:34 com.apple.atrun.plist
    31316470 -rw-r--r--    1 wheel   880 27 Ott 15:24 com.apple.audio.coreaudiod.plist
    31456531 -rw-r--r--    1 wheel   581 27 Ott 15:31 com.apple.auditd.plist
    31316471 -rw-r--r--    1 wheel   658 27 Ott 15:24 com.apple.authorizationhost.plist
    31507587 -rw-r--r--    1 wheel   456 27 Ott 15:33 com.apple.autofsd.plist
    31507588 -rw-r--r--    1 wheel   633 27 Ott 15:33 com.apple.automountd.plist
    31422241 -rw-r--r--    1 wheel   841 27 Ott 15:29 com.apple.avbdeviced.plist
    31507914 -rw-r--r--    1 wheel   484 27 Ott 15:33 com.apple.awacsd.plist
    31316472 -rw-r--r--    1 wheel   589 27 Ott 15:24 com.apple.backupd-attach.plist
    31316473 -rw-r--r--    1 wheel   808 27 Ott 15:24 com.apple.backupd-auto.plist
    31316474 -rw-r--r--    1 wheel   551 27 Ott 15:24 com.apple.backupd-wake.plist
    31316475 -rw-r--r--    1 wheel   880 27 Ott 15:24 com.apple.backupd.plist
    31316476 -rw-r--r--    1 wheel   941 27 Ott 15:24 com.apple.blued.plist
    31422378 -rw-r--r--    1 wheel   887 27 Ott 15:29 com.apple.bnepd.plist
    31316477 -rw-r--r--    1 wheel   758 27 Ott 15:24 com.apple.bsd.dirhelper.plist
    31529702 -rw-r--r--    1 wheel   470 27 Ott 15:34 com.apple.bsd.launchdadd.plist
    31316478 -rw-r--r--    1 wheel   248 27 Ott 15:24 com.apple.cfprefsd.xpc.daemon.plist
    31393460 -rw-r--r--    1 wheel   565 27 Ott 15:28 com.apple.cmio.AVCAssistant.plist
    31339848 -rw-r--r--    1 wheel   572 27 Ott 15:26 com.apple.cmio.AppleCameraAssistant.plist
    31393461 -rw-r--r--    1 wheel   584 27 Ott 15:28 com.apple.cmio.IIDCVideoAssistant.plist
    31393462 -rw-r--r--    1 wheel   565 27 Ott 15:28 com.apple.cmio.VDCAssistant.plist
    31530636 -rw-r--r--    1 wheel   619 27 Ott 15:34 com.apple.comsat.plist
    31316479 -rw-r--r--    1 wheel   677 27 Ott 15:24 com.apple.configd.plist
    31433300 -rw-r--r--    1 wheel   520 27 Ott 15:30 com.apple.configureLocalKDC.plist
    31328223 -rw-r--r--    1 wheel   608 27 Ott 15:26 com.apple.coreservices.appleevents.plist
    31456366 -rw-r--r--    1 wheel   590 27 Ott 15:31 com.apple.coreservices.appleid.passwordcheck.plist
    31316481 -rw-r--r--    1 wheel   683 27 Ott 15:24 com.apple.coreservicesd.plist
    31394243 -rw-r--r--    1 wheel   619 27 Ott 15:28 com.apple.corestorage.corestoraged.plist
    31455957 -rw-r--r--    1 wheel  1744 27 Ott 15:31 com.apple.corestorage.corestoragehelperd.plist
    31316482 -rw-r--r--    1 wheel   549 27 Ott 15:24 com.apple.coresymbolicationd.plist
    31381675 -rw-r--r--    1 wheel   509 27 Ott 15:27 com.apple.cvmsServ.plist
    31316483 -rw-r--r--    1 wheel   495 27 Ott 15:25 com.apple.diskarbitrationd.plist
    31316484 -rw-r--r--    1 wheel   528 27 Ott 15:25 com.apple.diskmanagementd.plist
    31316485 -rw-r--r--    1 wheel   328 27 Ott 15:25 com.apple.distnoted.xpc.daemon.plist
    31530627 -rw-r--r--    1 wheel   425 27 Ott 15:34 com.apple.dnsextd.plist
    31404424 -rw-r--r--    1 wheel   552 27 Ott 15:28 com.apple.docsetinstalld.plist
    31339991 -rw-r--r--    1 wheel   510 27 Ott 15:26 com.apple.dpd.plist
    31508305 -rw-r--r--    1 wheel   620 27 Ott 15:33 com.apple.dspluginhelperd.plist
    31394886 -rw-r--r--    1 wheel   494 27 Ott 15:28 com.apple.dvdplayback.setregion.plist
    31551329 -rw-r--r--    1 wheel   687 27 Ott 15:34 com.apple.dynamic_pager.plist
    31316486 -rw-r--r--    1 wheel   452 27 Ott 15:25 com.apple.eapolcfg_auth.plist
    31508522 -rw-r--r--    1 wheel   485 27 Ott 15:33 com.apple.efax.plist
    31316487 -rw-r--r--    1 wheel   571 27 Ott 15:25 com.apple.efilogin-helper.plist
    31484993 -rw-r--r--    1 wheel   788 27 Ott 15:33 com.apple.emlog.plist
    31484994 -rw-r--r--    1 wheel   613 27 Ott 15:33 com.apple.emond.aslmanager.plist
    31484995 -rw-r--r--    1 wheel   582 27 Ott 15:47 com.apple.emond.plist
    31340780 -rw-r--r--    1 wheel   917 27 Ott 15:26 com.apple.eppc.plist
    31316488 -rw-r--r--    1 wheel   734 27 Ott 15:25 com.apple.familycontrols.plist
    31316490 -rw-r--r--    1 wheel   583 27 Ott 15:25 com.apple.findmymac.plist
    31316491 -rw-r--r--    1 wheel   557 27 Ott 15:25 com.apple.findmymacmessenger.plist
    31507694 -rw-r--r--    1 wheel   461 27 Ott 15:33 com.apple.firmwaresyncd.plist
    31316492 -rw-r--r--    1 wheel   681 27 Ott 15:25 com.apple.fontd.plist
    31316493 -rw-r--r--    1 wheel   570 27 Ott 15:25 com.apple.fontmover.plist
    31406991 -rw-r--r--    1 wheel  1059 27 Ott 15:28 com.apple.fseventsd.plist
    31316495 -rw-r--r--    1 wheel   891 27 Ott 15:25 com.apple.ftp-proxy.plist
    31400445 -rw-r--r--    1 wheel   641 27 Ott 15:28 com.apple.geod.plist
    31551330 -rw-r--r--    1 wheel   477 27 Ott 15:34 com.apple.getty.plist
    31316496 -rw-r--r--    1 wheel   504 27 Ott 15:25 com.apple.gkreport.plist
    31509496 -rw-r--r--    1 wheel   945 27 Ott 15:33 com.apple.gssd.plist
    31403939 -rw-r--r--    1 wheel   527 27 Ott 15:28 com.apple.hdiejectd.plist
    31316497 -rw-r--r--    1 wheel   607 27 Ott 15:25 com.apple.hidd.plist
    31316498 -rw-r--r--    1 wheel   713 27 Ott 15:25 com.apple.installd.plist
    31609928 -rw-r--r--    1 wheel   514 21 Mag 21:42 com.apple.installer.osmessagetracing.plist~orig
    31434578 -rw-r--r--    1 wheel   384 27 Ott 15:31 com.apple.kcproxy.plist
    31534026 -rw-r--r--    1 wheel   734 27 Ott 15:34 com.apple.kdumpd.plist
    31316500 -rw-r--r--    1 wheel   829 27 Ott 15:25 com.apple.kextd.plist
    31316501 -rw-r--r--    1 wheel   518 27 Ott 15:25 com.apple.kuncd.plist
    31550684 -rw-r--r--    1 wheel   802 27 Ott 15:34 com.apple.locate.plist
    31316502 -rw-r--r--    1 wheel   530 27 Ott 15:25 com.apple.locationd.plist
    31450791 -rw-r--r--    1 wheel   849 27 Ott 15:31 com.apple.lockd.plist
    31316503 -rw-r--r--    1 wheel   518 27 Ott 15:25 com.apple.locum.plist
    31529737 -rw-r--r--    1 wheel   517 27 Ott 15:34 com.apple.logind.plist
    31529793 -rw-r--r--    1 wheel   501 27 Ott 15:34 com.apple.loginwindow.plist
    31529794 -rw-r--r--    1 wheel   627 27 Ott 15:34 com.apple.loginwindow.secureerase.plist
    31316504 -rw-r--r--    1 wheel  1035 27 Ott 15:25 com.apple.mDNSResponder.plist
    31316505 -rw-r--r--    1 wheel   593 27 Ott 15:25 com.apple.mDNSResponderHelper.plist
    31437595 -rw-r--r--    1 wheel   523 27 Ott 15:31 com.apple.mbicloudsetupd.plist
    31436571 -rw-r--r--    1 wheel  1130 27 Ott 15:31 com.apple.mdmclient.daemon.plist
    31492205 -rw-r--r--    1 wheel   828 27 Ott 15:33 com.apple.metadata.mds.plist
    31492206 -rw-r--r--    1 wheel   751 27 Ott 15:33 com.apple.metadata.mds.scan.plist
    31492207 -rw-r--r--    1 wheel   754 27 Ott 15:33 com.apple.metadata.mds.spindump.plist
    31504692 -rw-r--r--    1 wheel   510 27 Ott 15:33 com.apple.mrt.plist
    31550739 -rw-r--r--    1 wheel   952 27 Ott 15:34 com.apple.msrpc.echosvc.plist
    31550740 -rw-r--r--    1 wheel  1073 27 Ott 15:34 com.apple.msrpc.lsarpc.plist
    31550741 -rw-r--r--    1 wheel   814 27 Ott 15:34 com.apple.msrpc.mdssvc.plist
    31550742 -rw-r--r--    1 wheel   832 27 Ott 15:34 com.apple.msrpc.netlogon.plist
    31550743 -rw-r--r--    1 wheel  1074 27 Ott 15:34 com.apple.msrpc.srvsvc.plist
    31550744 -rw-r--r--    1 wheel  1086 27 Ott 15:34 com.apple.msrpc.wkssvc.plist
    31450665 -rw-r--r--    1 wheel   930 27 Ott 15:31 com.apple.mtmd.plist
    31450666 -rw-r--r--    1 wheel   792 27 Ott 15:31 com.apple.mtmfs.plist
    31316506 -rw-r--r--    1 wheel   512 27 Ott 15:25 com.apple.netauth.sys.auth.plist
    31316507 -rw-r--r--    1 wheel   507 27 Ott 15:25 com.apple.netauth.sys.gui.plist
    31550745 -rw-r--r--    1 wheel  1934 27 Ott 15:34 com.apple.netbiosd.plist
    31316509 -rw-r--r--    1 wheel   945 27 Ott 15:25 com.apple.networkd.plist
    31316510 -rw-r--r--    1 wheel   517 27 Ott 15:25 com.apple.networkd_privileged.plist
    31507917 -rw-r--r--    1 wheel   509 27 Ott 15:33 com.apple.newsyslog.plist
    31450792 -rw-r--r--    1 wheel   472 27 Ott 15:31 com.apple.nfsconf.plist
    31450793 -rw-r--r--    1 wheel   445 27 Ott 15:31 com.apple.nfsd.plist
    31538639 -rw-r--r--    1 wheel   438 27 Ott 15:34 com.apple.nis.rpc.yppasswdd.plist
    31538640 -rw-r--r--    1 wheel   454 27 Ott 15:34 com.apple.nis.ypbind.plist
    31538641 -rw-r--r--    1 wheel   424 27 Ott 15:34 com.apple.nis.ypserv.plist
    31435710 -rw-r--r--    1 wheel   723 27 Ott 15:31 com.apple.notifyd.plist
    31316514 -rw-r--r--    1 wheel   516 27 Ott 15:25 com.apple.ocspd.plist
    31534038 -rw-r--r--    1 wheel   601 27 Ott 15:34 com.apple.odproxyd.plist
    31534060 -rw-r--r--    1 wheel   665 27 Ott 15:34 com.apple.opendirectoryd.plist
    31507918 -rw-r--r--    1 wheel   620 27 Ott 15:33 com.apple.periodic-daily.plist
    31507919 -rw-r--r--    1 wheel   664 27 Ott 15:33 com.apple.periodic-monthly.plist
    31507920 -rw-r--r--    1 wheel   666 27 Ott 15:33 com.apple.periodic-weekly.plist
    31458019 -rw-r--r--    1 wheel   625 27 Ott 15:31 com.apple.pfctl.plist
    31460035 -rw-r--r--    1 wheel   335 27 Ott 15:32 com.apple.platform.ptmd.plist
    31460626 -rw-r--r--    1 wheel   679 27 Ott 15:32 com.apple.powerd.plist
    31399223 -rw-r--r--    1 wheel   618 27 Ott 15:28 com.apple.preferences.timezone.admintool.plist
    31399224 -rw-r--r--    1 wheel   884 27 Ott 15:28 com.apple.preferences.timezone.auto.plist
    31465867 -rw-r--r--    1 wheel   690 27 Ott 15:32 com.apple.printtool.daemon.plist
    31529687 -rw-r--r--    1 wheel   307 27 Ott 15:34 com.apple.racoon.plist
    31342377 -rw-r--r--    1 wheel   421 27 Ott 15:26 com.apple.remotepairtool.plist
    31417729 -rw-r--r--    1 wheel   609 27 Ott 15:29 com.apple.revisiond.plist
    31534055 -rw-r--r--    1 wheel   760 27 Ott 15:34 com.apple.rpcbind.plist
    31316517 -rw-r--r--    1 wheel   639 27 Ott 15:25 com.apple.sandboxd.plist
    31659832 -rw-r--r--    1 wheel  1013 27 Ott 23:40 com.apple.screensharing.plist
    31550664 -rw-r--r--    1 wheel   453 27 Ott 15:34 com.apple.scsid.plist
    31484914 -rw-r--r--    1 wheel   507 27 Ott 15:33 com.apple.secd.plist
    31394244 -rw-r--r--    1 wheel   560 27 Ott 15:28 com.apple.security.FDERecoveryAgent.plist
    31550680 -rw-r--r--    1 wheel   510 27 Ott 15:34 com.apple.security.syspolicy.plist
    31316520 -rw-r--r--    1 wheel   646 27 Ott 15:25 com.apple.securityd.plist
    31492194 -rw-r--r--    1 wheel   575 27 Ott 15:33 com.apple.shutdown_monitor.plist
    31487764 -rw-r--r--    1 wheel   529 27 Ott 15:33 com.apple.sleepservicesd.plist
    31550746 -rw-r--r--    1 wheel  1067 27 Ott 15:34 com.apple.smb.preferences.plist
    31550747 -rw-r--r--    1 wheel   724 27 Ott 15:34 com.apple.smbd.plist
    31488479 -rw-r--r--    1 wheel   675 27 Ott 15:33 com.apple.softwareupdatecheck.initial.plist
    31488480 -rw-r--r--    1 wheel   647 27 Ott 15:33 com.apple.softwareupdatecheck.periodic.plist
    31492195 -rw-r--r--    1 wheel   500 27 Ott 15:33 com.apple.spindump.plist
    31492196 -rw-r--r--    1 wheel   499 27 Ott 15:33 com.apple.spindump_symbolicator.plist
    31551314 -rw-r--r--    1 wheel   531 27 Ott 15:34 com.apple.stackshot.plist
    31450794 -rw-r--r--    1 wheel   474 27 Ott 15:31 com.apple.statd.notify.plist
    31316521 -rw-r--r--    1 wheel   599 27 Ott 15:25 com.apple.storereceiptinstaller.plist
    31488481 -rw-r--r--    1 wheel   505 27 Ott 15:33 com.apple.suhelperd.plist
    31316522 -rw-r--r--    1 wheel   578 27 Ott 15:25 com.apple.syslogd.plist
    31551323 -rw-r--r--    1 wheel   189 27 Ott 15:34 com.apple.sysmond.plist
    31550681 -rw-r--r--    1 wheel   620 27 Ott 15:34 com.apple.systemkeychain.plist
    31497607 -rw-r--r--    1 wheel   594 27 Ott 15:33 com.apple.systempreferences.installer.plist
    31335168 -rw-r--r--    1 wheel   582 27 Ott 15:26 com.apple.systempreferences.writeconfig.plist
    31446909 -rw-r--r--    1 wheel   455 27 Ott 15:31 com.apple.taskgated-helper.plist
    31316524 -rw-r--r--    1 wheel   677 27 Ott 15:25 com.apple.taskgated.plist
    31342389 -rw-r--r--    1 wheel   430 27 Ott 15:26 com.apple.ucupdate.plist
    31500932 -rw-r--r--    1 wheel   503 27 Ott 15:33 com.apple.uninstalld.plist
    31502039 -rw-r--r--    1 wheel   513 27 Ott 15:33 com.apple.unmountassistant.sysagent.plist
    31529466 -rw-r--r--    1 wheel   868 27 Ott 15:34 com.apple.usbmuxd.plist
    31555158 -rw-r--r--    1 wheel   617 27 Ott 15:34 com.apple.uucp.plist
    31507921 -rw-r--r--    1 wheel   734 27 Ott 15:33 com.apple.var-db-dslocal-backup.plist
    31508287 -rw-r--r--    1 wheel   509 27 Ott 15:33 com.apple.vsdbutil.plist
    31555174 -rw-r--r--    1 wheel   975 27 Ott 15:34 com.apple.warmd.plist
    31335579 -rw-r--r--    1 wheel   512 27 Ott 15:26 com.apple.wdhelper.plist
    31555175 -rw-r--r--    1 wheel   487 27 Ott 15:34 com.apple.webdavfs_load_kext.plist
    31394608 -rw-r--r--    1 wheel   482 27 Ott 15:28 com.apple.wifid.plist
    31316527 -rw-r--r--    1 wheel   796 27 Ott 15:25 com.apple.xpcd.plist
    31613000 -rw-r--r--    1 wheel   513 27 Ott 15:50 com.apple.xprotectupdater.plist
    31504809 -rw-r--r--    1 wheel   386 27 Ott 15:33 com.apple.xprotectupdaterinit.plist
    31505658 -rw-r--r--    1 wheel   979 27 Ott 15:33 com.apple.xsan.plist
    31555275 -rw-r--r--    1 wheel  1160 27 Ott 15:34 com.apple.xsanmgrd.plist
    31387781 -rw-r--r--    1 wheel   442 27 Ott 15:28 com.apple.xscertadmin.plist
    31387782 -rw-r--r--    1 wheel   481 27 Ott 15:28 com.apple.xscertd-helper.plist
    31387783 -rw-r--r--    1 wheel   646 27 Ott 15:28 com.apple.xscertd.plist
    31530639 -rw-r--r--    1 wheel   672 27 Ott 15:34 com.danga.memcached.plist
    31507915 -rw-r--r--    1 wheel   574 27 Ott 15:33 com.vix.cron.plist
    31538642 -rw-r--r--    1 wheel   613 27 Ott 15:34 exec.plist
    31506099 -rw-r--r--    1 wheel   682 27 Ott 15:33 finger.plist
    31530620 -rw-r--r--    1 wheel   763 27 Ott 15:34 ftp.plist
    31538643 -rw-r--r--    1 wheel   246 27 Ott 15:34 login.plist
    31538644 -rw-r--r--    1 wheel   627 27 Ott 15:34 ntalk.plist
    31507016 -rw-r--r--    1 wheel   625 27 Ott 15:33 org.apache.httpd.plist
    31508037 -rw-r--r--    1 wheel   771 27 Ott 15:33 org.cups.cups-lpd.plist
    31508038 -rw-r--r--    1 wheel  1480 27 Ott 15:33 org.cups.cupsd.plist
    31508821 -rw-r--r--    1 wheel   489 27 Ott 15:33 org.freeradius.radiusd.plist
    31507685 -rw-r--r--    1 wheel   900 27 Ott 15:33 org.isc.named.plist
    31534022 -rw-r--r--    1 wheel   495 27 Ott 15:34 org.net-snmp.snmpd.plist
    31534037 -rw-r--r--    1 wheel   625 27 Ott 15:34 org.ntp.ntpd.plist
    31456907 -rw-r--r--    1 wheel   966 27 Ott 15:31 org.openldap.slapd.plist
       73515 -rw-r--r--    1 wheel   585 11 Ott  2011 org.postfix.master.plist
    31460618 -rw-r--r--    1 wheel  1284 27 Ott 15:32 org.postgresql.postgres_alt.plist
    31538645 -rw-r--r--    1 wheel   238 27 Ott 15:34 shell.plist
    31316528 -rw-r--r--    1 wheel   884 27 Ott 15:25 ssh.plist
    31538646 -rw-r--r--    1 wheel   260 27 Ott 15:34 telnet.plist
    31538647 -rw-r--r--    1 wheel   715 27 Ott 15:34 tftp.plist
    in /Library/LaunchDaemons I did some cleanup, but it did not solve the problem, what is left in it appears to be rather innoxious stuff:
    26830321 -rw-r--r--   1 wheel   377 26 Ago  2010 com.apple.qmaster.qmasterd.plist
    27073794 lrwxr-xr-x   1 wheel   103  7 Giu 13:39 com.oracle.java.Helper-Tool.plist -> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/com.oracle.java.Helper-Tool .plist
    7743408 -rwxr-xr-x   1 wheel   621 30 Mag 07:49 com.teamviewer.teamviewer_service.plist
    16433156 -rw-r--r--   1 wheel   661 28 Set  2012 org.macosforge.xquartz.privileged_startx.plist
    I have disconnected all external peripherals, except the usb keyboard and the SuperDrive.
    Below are the console messages for the safeboot and the regular boot after the latest changes:
    ===== SAFEBOOT ======
    28/10/13 08:53:34,000 bootlog[0]: BOOT_TIME 1382946814 0
    28/10/13 08:58:10,000 kernel[0]: PMAP: PCID enabled
    28/10/13 08:58:10,000 kernel[0]: Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    28/10/13 08:58:10,000 kernel[0]: vm_page_bootstrap: 544974 free pages and 1552178 wired pages
    28/10/13 08:58:10,000 kernel[0]: kext submap [0xffffff7f80742000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000742000]
    28/10/13 08:58:10,000 kernel[0]: zone leak detection enabled
    28/10/13 08:58:10,000 kernel[0]: standard timeslicing quantum is 10000 us
    28/10/13 08:58:10,000 kernel[0]: standard background quantum is 2500 us
    28/10/13 08:58:10,000 kernel[0]: mig_table_max_displ = 74
    28/10/13 08:58:10,000 kernel[0]: TSC Deadline Timer supported and enabled
    28/10/13 08:58:10,000 kernel[0]: SAFE BOOT DETECTED - only valid OSBundleRequired kexts will be loaded.
    28/10/13 08:58:10,000 kernel[0]: corecrypto kext started!
    28/10/13 08:58:10,000 kernel[0]: Running kernel space in FIPS MODE
    28/10/13 08:58:10,000 kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    28/10/13 08:58:10,000 kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    28/10/13 08:58:10,000 kernel[0]: corecrypto.kext FIPS POST passed!
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    28/10/13 08:58:10,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    28/10/13 08:58:10,000 kernel[0]: calling mpo_policy_init for Sandbox
    28/10/13 08:58:10,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    28/10/13 08:58:10,000 kernel[0]: calling mpo_policy_init for Quarantine
    28/10/13 08:58:10,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    28/10/13 08:53:36,648 com.apple.launchd[1]: *** launchd[1] has started up. ***
    28/10/13 08:58:10,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    28/10/13 08:58:10,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    28/10/13 08:58:10,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    28/10/13 08:58:10,000 kernel[0]: The Regents of the University of California. All rights reserved.
    28/10/13 08:58:10,000 kernel[0]: MAC Framework successfully initialized
    28/10/13 08:58:10,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    28/10/13 08:58:10,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    28/10/13 08:58:10,000 kernel[0]: ACPI: sleep states S3 S4 S5
    28/10/13 08:58:10,000 kernel[0]: pci build Sep 29 2013 13:35:16, flags 0x23008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    28/10/13 08:58:10,000 kernel[0]: [ PCI configuration begin ]
    28/10/13 08:58:10,000 kernel[0]: console relocated to 0xf81000000
    28/10/13 08:58:10,000 kernel[0]: [ PCI configuration end, bridges 13, devices 16 ]
    28/10/13 08:58:10,000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    28/10/13 08:58:10,000 kernel[0]: AppleIntelCPUPowerManagement: (built 13:50:43 Sep 29 2013) initialization complete
    28/10/13 08:58:10,000 kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    28/10/13 08:53:36,648 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    28/10/13 08:58:10,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    28/10/13 08:58:10,000 kernel[0]: BTCOEXIST off
    28/10/13 08:58:06,093 com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    28/10/13 08:58:10,000 kernel[0]: BRCM tunables:
    28/10/13 08:58:10,000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    28/10/13 08:58:10,000 kernel[0]: rooting via boot-uuid from /chosen: F47B0803-7F96-3B8A-A025-DB74B67338B2
    28/10/13 08:58:10,000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    28/10/13 08:58:10,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    28/10/13 08:58:10,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    28/10/13 08:58:10,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    28/10/13 08:58:10,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    28/10/13 08:58:10,000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    28/10/13 08:58:10,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/TOSHIBA MK5065GSXF Media/IOGUIDPartitionScheme/Customer@2
    28/10/13 08:58:10,000 kernel[0]: BSD root: disk0s2, major 1, minor 3
    28/10/13 08:58:10,000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID a4b197fffeaf7c74; max speed s800.
    28/10/13 08:58:10,000 kernel[0]: Kernel is LP64
    28/10/13 08:58:10,000 kernel[0]: USBMSC Identifier (non-unique): KXGBB140833      0x5ac 0x1500 0x200, 2
    28/10/13 08:58:10,000 kernel[0]: USBMSC Identifier (non-unique): 㥒〳䜶䑗〳㄰䩘†ँ 0xe8d 0x1956 0x0, 2
    28/10/13 08:58:12,159 hidd[46]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    28/10/13 08:58:12,400 hidd[46]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    28/10/13 08:58:13,708 fseventsd[47]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (3 278 303)
    28/10/13 08:58:14,181 fseventsd[47]: log dir: /.fseventsd getting new uuid: D46E90BB-2E65-4FCD-8C2C-8BA0108DADCF
    28/10/13 08:58:15,000 kernel[0]: macx_swapon SUCCESS
    28/10/13 08:58:16,000 kernel[0]: BCM5701Enet: Ethernet address 3c:07:54:4c:6b:11
    28/10/13 08:58:16,000 kernel[0]: AirPort_Brcm4331: Ethernet address 60:c5:47:22:70:71
    28/10/13 08:58:16,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    28/10/13 08:58:16,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    28/10/13 08:58:20,000 kernel[0]: Waiting for DSMOS...
    28/10/13 08:58:20,325 kdc[44]: label: default
    28/10/13 08:58:20,326 kdc[44]:           dbname: od:/Local/Default
    28/10/13 08:58:20,326 kdc[44]:           mkey_file: /var/db/krb5kdc/m-key
    28/10/13 08:58:20,326 kdc[44]:           acl_file: /var/db/krb5kdc/kadmind.acl
    28/10/13 08:58:21,645 appleeventsd[52]: main: Starting up
    28/10/13 08:58:22,391 com.apple.SecurityServer[15]: Session 100000 created
    28/10/13 08:58:22,423 mDNSResponder[38]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    28/10/13 08:58:22,718 coreservicesd[62]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    28/10/13 08:58:22,740 airportd[64]: _processDLILEvent: en1 attached (down)
    28/10/13 08:58:22,000 kernel[0]: createVirtIf(): ifRole = 1
    28/10/13 08:58:22,000 kernel[0]: in func createVirtualInterface ifRole = 1
    28/10/13 08:58:22,000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff8009a23c00
    28/10/13 08:58:22,000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    28/10/13 08:58:22,000 kernel[0]: Created virtif 0xffffff8009a23c00 p2p0
    28/10/13 08:58:23,433 com.apple.usbmuxd[26]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    28/10/13 08:58:23,000 kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    28/10/13 08:58:23,000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    28/10/13 08:58:24,005 configd[16]: setting hostname to "Mac-mini-di-Giuseppe-4.local"
    28/10/13 08:58:24,014 configd[16]: network changed.
    28/10/13 08:58:24,143 com.apple.SecurityServer[15]: Entering service
    28/10/13 08:58:26,000 kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0301,0de1,0300,45e1,0000]
    28/10/13 08:58:27,901 kdc[44]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    28/10/13 08:58:27,894 systemkeychain[71]: done file: /var/run/systemkeychaincheck.done
    28/10/13 08:58:28,229 configd[16]: network changed: v4(en0+:192.168.1.101) DNS+ Proxy+ SMB+
    28/10/13 08:58:28,292 configd[16]: network changed: v4(en0:192.168.1.101) DNS* Proxy SMB
    28/10/13 08:58:29,498 mDNSResponder[38]: D2D_IPC: Loaded
    28/10/13 08:58:29,499 mDNSResponder[38]: D2DInitialize succeeded
    28/10/13 08:58:29,502 mDNSResponder[38]: ConfigResolvers: interface specific index 4 not found
    28/10/13 08:58:29,552 mDNSResponder[38]: ConfigResolvers: interface specific index 4 not found
    28/10/13 08:58:29,723 kdc[44]: KDC started
    28/10/13 08:58:30,179 locationd[42]: NOTICE,Location icon should now be in state 0
    28/10/13 08:58:31,807 awacsd[56]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    28/10/13 08:58:31,853 stackshot[29]: Timed out waiting for IOKit to finish matching.
    28/10/13 08:58:31,000 kernel[0]: Previous Shutdown Cause: 3
    28/10/13 08:58:31,000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    28/10/13 08:58:32,348 apsd[58]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28/10/13 08:58:32,349 apsd[58]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28/10/13 08:58:32,393 com.apple.kextd[11]: Can't load /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAController.ke xt - ineligible during safe boot.
    28/10/13 08:58:32,395 com.apple.kextd[11]: Load com.apple.driver.AppleHDAController failed; removing personalities from kernel.
    28/10/13 08:58:32,600 com.apple.kextd[11]: Can't load /System/Library/Extensions/AppleThunderboltEDMService.kext/Contents/PlugIns/App leThunderboltEDMSink.kext - ineligible during safe boot.
    28/10/13 08:58:32,602 com.apple.kextd[11]: Load com.apple.driver.AppleThunderboltEDMSink failed; removing personalities from kernel.
    28/10/13 08:58:32,706 awacsd[56]: InnerStore CopyAllZones: no info in Dynamic Store
    28/10/13 08:58:32,802 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOFireWireIP.kext - ineligible during safe boot.
    28/10/13 08:58:32,803 com.apple.kextd[11]: Load com.apple.iokit.IOFireWireIP failed; removing personalities from kernel.
    28/10/13 08:58:35,906 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/AppleSM CPDRC.kext - ineligible during safe boot.
    28/10/13 08:58:35,908 com.apple.kextd[11]: Load com.apple.driver.AppleSMCPDRC failed; removing personalities from kernel.
    28/10/13 08:58:36,623 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothU SBDFU.kext - ineligible during safe boot.
    28/10/13 08:58:36,630 com.apple.kextd[11]: Load com.apple.iokit.IOBluetoothUSBDFU failed; removing personalities from kernel.
    28/10/13 08:58:36,724 com.apple.kextd[11]: Can't load /System/Library/Extensions/AppleIntelHD3000Graphics.kext - ineligible during safe boot.
    28/10/13 08:58:36,728 com.apple.kextd[11]: Load com.apple.driver.AppleIntelHD3000Graphics failed; removing personalities from kernel.
    28/10/13 08:58:36,812 com.apple.kextd[11]: Can't load /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext - ineligible during safe boot.
    28/10/13 08:58:36,816 com.apple.kextd[11]: Load com.apple.driver.AppleMikeyDriver failed; removing personalities from kernel.
    28/10/13 08:58:36,873 com.apple.kextd[11]: Can't load /System/Library/Extensions/AppleTyMCEDriver.kext - ineligible during safe boot.
    28/10/13 08:58:36,876 com.apple.kextd[11]: Load com.apple.driver.AppleTyMCEDriver failed; removing personalities from kernel.
    28/10/13 08:58:36,994 com.apple.kextd[11]: Can't load /System/Library/Extensions/ApplePlatformEnabler.kext - ineligible during safe boot.
    28/10/13 08:58:36,997 com.apple.kextd[11]: Load com.apple.driver.ApplePlatformEnabler failed; removing personalities from kernel.
    28/10/13 08:58:37,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff80091e5c00 ****
    28/10/13 08:58:39,109 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS erialManager.kext - ineligible during safe boot.
    28/10/13 08:58:39,114 com.apple.kextd[11]: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    28/10/13 08:58:39,190 com.apple.kextd[11]: Can't load /System/Library/Extensions/AppleUpstreamUserClient.kext - ineligible during safe boot.
    28/10/13 08:58:39,195 com.apple.kextd[11]: Load com.apple.driver.AppleUpstreamUserClient failed; removing personalities from kernel.
    28/10/13 08:58:39,199 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS erialManager.kext - ineligible during safe boot.
    28/10/13 08:58:39,203 com.apple.kextd[11]: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    28/10/13 08:58:39,723 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOUserEthernet.kext - ineligible during safe boot.
    28/10/13 08:58:39,727 com.apple.kextd[11]: Load com.apple.iokit.IOUserEthernet failed; removing personalities from kernel.
    28/10/13 08:58:39,797 com.apple.kextd[11]: Can't load /System/Library/Extensions/Soundflower.kext - ineligible during safe boot.
    28/10/13 08:58:39,800 com.apple.kextd[11]: Load com.Cycling74.driver.Soundflower failed; removing personalities from kernel.
    28/10/13 08:58:39,885 com.apple.kextd[11]: Can't load /System/Library/Extensions/SoundGrid.kext - ineligible during safe boot.
    28/10/13 08:58:39,889 com.apple.kextd[11]: Load com.waves.driver.soundgrid failed; removing personalities from kernel.
    28/10/13 08:58:39,951 com.apple.kextd[11]: Can't load /System/Library/Extensions/XAerial.kext - ineligible during safe boot.
    28/10/13 08:58:39,955 com.apple.kextd[11]: Load com.cleverandson.driver.XAerial failed; removing personalities from kernel.
    28/10/13 08:58:40,048 blued[55]: Read the UHE Info
    28/10/13 08:58:40,049 blued[55]: Read version 2 info.  Number of devices:1
    28/10/13 08:58:40,050 blued[55]: Class of device:     0x2594
    28/10/13 08:58:40,050 blued[55]: Device name: 'Apple Wireless Trackpad' length:24
    28/10/13 08:58:40,050 blued[55]: Finished reading the HID data
    28/10/13 08:58:40,051 blued[55]: Found a device with PID:0x030e VID:0x05ac
    28/10/13 08:58:40,000 kernel[0]: DSMOS has arrived
    28/10/13 08:58:40,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff80091e5c00
    28/10/13 08:58:40,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    28/10/13 08:58:40,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    28/10/13 08:58:40,230 loginwindow[41]: Login Window Application Started
    28/10/13 08:58:42,353 apsd[58]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28/10/13 08:58:42,000 kernel[0]: [BNBTrackpadDevice::init][75.19] init is complete
    28/10/13 08:58:43,094 digest-service[96]: label: default
    28/10/13 08:58:43,095 digest-service[96]:           dbname: od:/Local/Default
    28/10/13 08:58:43,095 digest-service[96]:           mkey_file: /var/db/krb5kdc/m-key
    28/10/13 08:58:43,096 digest-service[96]:           acl_file: /var/db/krb5kdc/kadmind.acl
    28/10/13 08:58:43,103 digest-service[96]: digest-request: uid=0
    28/10/13 08:58:43,000 kernel[0]: [BNBTrackpadDevice::handleStart][75.19] returning 1
    28/10/13 08:58:43,000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    28/10/13 08:58:43,000 kernel[0]: [AppleMultitouchDevice::start] entered
    28/10/13 08:58:44,918 rpcsvchost[99]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    28/10/13 08:58:45,015 digest-service[96]: digest-request: init request
    28/10/13 08:58:45,050 digest-service[96]: digest-request: init return domain: BUILTIN server: MAC-MINI-DI-GIUSEPPE-4
    28/10/13 08:58:45,284 ntpd[92]: proto: precision = 1.000 usec
    28/10/13 08:58:48,402 awacsd[56]: Exiting
    28/10/13 08:58:48,730 mds[37]: (Normal) FMW: FMW 0 0
    28/10/13 08:58:48,892 WindowServer[89]: Server is starting up
    28/10/13 08:59:11,727 com.apple.kextd[11]: Safe boot mode detected; invalidating system extensions caches.
    28/10/13 08:59:14,893 configd[16]: InterfaceNamer: timed out waiting for IOKit to quiesce
    28/10/13 08:59:14,894 configd[16]: Busy services :
    28/10/13 08:59:14,894 configd[16]:   Macmini5,1 [1, 341418 ms]
    28/10/13 08:59:14,894 configd[16]:   Macmini5,1/AppleACPIPlatformExpert [1, 341304 ms]
    28/10/13 08:59:14,895 configd[16]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0 [1, 340972 ms]
    28/10/13 08:59:14,895 configd[16]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI [1, 340967 ms]
    28/10/13 08:59:14,895 configd[16]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C [1, 340972 ms]
    28/10/13 08:59:14,896 configd[16]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBridge [1, 340283 ms]
    28/10/13 08:59:14,896 configd[16]:   Macmini5,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBridge/ SDXC@0,1 [!matched, 1, 340282 ms]
    28/10/13 08:59:37,669 WindowServer[89]: Session 256 retained (2 references)
    28/10/13 08:59:37,669 WindowServer[89]: Session 256 released (1 references)
    28/10/13 08:59:37,851 WindowServer[89]: Session 256 retained (2 references)
    28/10/13 08:59:37,854 WindowServer[89]: init_page_flip: page flip mode is on
    28/10/13 08:59:37,858 com.apple.kextd[11]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories/System/Library/Extensi ons/KextIdentifiers.plist.gz is out of date; not using.
    28/10/13 08:59:38,122 WindowServer[89]: mux_initialize: Couldn't find any matches
    28/10/13 08:59:38,435 WindowServer[89]: GLCompositor enabled for tile size [256 x 256]
    28/10/13 08:59:38,435 WindowServer[89]: CGXGLInitMipMap: mip map mode is on
    28/10/13 08:59:38,491 WindowServer[89]: WSMachineUsesNewStyleMirroring: false
    28/10/13 08:59:38,492 WindowServer[89]: Display 0x0b418576: GL mask 0x4; bounds (0, 0)[1920 x 1080], 16 modes available
    Main, Active, on-line, enabled, boot, Vendor 4c2d, Model 6dd, S/N 43423234, Unit 2, Rotation 0
    UUID 0x00004c2d000006dd4342323400000000
    28/10/13 08:59:38,493 WindowServer[89]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    28/10/13 08:59:38,493 WindowServer[89]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    28/10/13 08:59:38,507 WindowServer[89]: Created shield window 0x5 for display 0x0b418576
    28/10/13 08:59:38,507 WindowServer[89]: Created shield window 0x6 for display 0x003f003c
    28/10/13 08:59:38,508 WindowServer[89]: Created shield window 0x7 for display 0x003f003d
    28/10/13 08:59:38,513 WindowServer[89]: Display 0x0b418576: GL mask 0x4; bounds (0, 0)[1920 x 1080], 16 modes available
    Main, Active, on-line, enabled, boot, Vendor 4c2d, Model 6dd, S/N 43423234, Unit 2, Rotation 0
    UUID 0x00004c2d000006dd4342323400000000
    28/10/13 08:59:38,513 WindowServer[89]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    28/10/13 08:59:38,513 WindowServer[89]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    28/10/13 08:59:38,514 WindowServer[89]: CGXPerformInitialDisplayConfiguration
    28/10/13 08:59:38,514 WindowServer[89]:   Display 0x0b418576: MappedDisplay Unit 2; Vendor 0x4c2d Model 0x6dd S/N 1128411700 Dimensions 6.30 x 3.54; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    28/10/13 08:59:38,514 WindowServer[89]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    28/10/13 08:59:38,515 WindowServer[89]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    28/10/13 08:59:38,591 loginwindow[41]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    28/10/13 08:59:43,885 WindowServer[89]: Unable to open IOHIDSystem (e00002bd)
    28/10/13 08:59:43,000 kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    28/10/13 08:59:47,330 WindowServer[89]: Created shield window 0x8 for display 0x0b418576
    28/10/13 08:59:47,332 WindowServer[89]: Display 0x0b418576: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28/10/13 08:59:49,308 com.apple.SecurityServer[15]: Session 100002 created
    28/10/13 08:59:49,345 loginwindow[41]: Login Window Started Security Agent
    28/10/13 08:59:49,452 launchctl[105]: com.apple.findmymacmessenger: Already loaded
    28/10/13 08:59:51,146 SecurityAgent[109]: This is the first run
    28/10/13 08:59:51,147 SecurityAgent[109]: MacBuddy was run = 0
    28/10/13 08:59:51,208 locationd[117]: NOTICE,Location icon should now be in state 0
    28/10/13 08:59:51,637 UserEventAgent[110]: cannot find useragent 1102
    28/10/13 08:59:53,416 warmd[25]: [warmctl_evt_timer_bc_activation_timeout:286] BC activation bcstop timer fired!
    28/10/13 09:00:01,833 genatsdb[120]: ########## genatsdb Sandboxed. ##########
    28/10/13 09:00:07,033 SecurityAgent[109]: User info context values set for joe
    28/10/13 09:00:17,044 SecurityAgent[109]: Login Window login proceeding
    28/10/13 09:00:18,047 loginwindow[41]: Login Window - Returned from Security Agent
    28/10/13 09:00:18,137 loginwindow[41]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    28/10/13 09:00:18,233 loginwindow[41]: USER_PROCESS: 41 console
    28/10/13 09:00:19,783 com.apple.launchd.peruser.501[130]: (com.apple.gamed) Ignored this key: UserName
    28/10/13 09:00:19,783 com.apple.launchd.peruser.501[130]: (com.apple.gamed) Ignored this key: GroupName
    28/10/13 09:00:19,786 com.apple.launchd.peruser.501[130]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    28/10/13 09:00:19,803 loginwindow[41]: Connection with distnoted server was invalidated
    28/10/13 09:00:19,878 distnoted[134]: # distnote server agent  absolute time: 406.527413823   civil time: Mon Oct 28 09:00:19 2013   pid: 134 uid: 501  root: no
    28/10/13 09:00:19,881 distnoted[134]: Bug: 12F45: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    28/10/13 09:00:21,661 com.apple.launchd.peruser.501[130]: (com.apple.afpstat-qfa[160]) Exited with code: 2
    28/10/13 09:00:27,903 coreservicesd[62]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationBirth to notificationID=121
    28/10/13 09:00:32,899 talagent[142]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    28/10/13 09:00:32,901 talagent[142]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    28/10/13 09:00:34,907 com.apple.launchd.peruser.501[130]: (com.apple.mrt.uiagent[150]) Exited with code: 255
    28/10/13 09:00:36,308 locationd[174]: NOTICE,Location icon should now be in state 0
    28/10/13 09:00:36,488 coreaudiod[167]: Enabled automatic stack shots because audio IO is inactive
    28/10/13 09:00:39,247 UserEventAgent[133]: cannot find fw daemon port 1102
    28/10/13 09:00:40,268 WindowServer[89]: CGXDisableUpdate: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    28/10/13 09:00:42,141 WindowServer[89]: reenable_update_for_connection: UI updates were finally reenabled by application "SystemUIServer" after 2.87 seconds (server forcibly re-enabled them after 1.00 seconds)
    28/10/13 09:00:44,609 com.apple.SecurityServer[15]: Session 100005 created
    28/10/13 09:00:44,740 NetworkBrowserAgent[187]: Starting NetworkBrowserAgent
    28/10/13 09:00:44,854 locationd[188]: NOTICE,Location icon should now be in state 0
    28/10/13 09:00:45,561 mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    28/10/13 09:00:46,792 mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28/10/13 09:00:46,859 mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28/10/13 09:00:52,138 locationd[192]: NOTICE,Location icon should now be in state 0
    28/10/13 09:00:55,201 apsd[168]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    28/10/13 09:01:01,168 SystemUIServer[162]: 2013-10-28 09:01:01.167495 AM [AVSystemController] AirPlay became the default audio device
    28/10/13 09:01:01,683 WindowServer[89]: CGXDisableUpdate: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    28/10/13 09:01:02,057 WindowServer[89]: reenable_update_for_connection: UI updates were finally reenabled by application "Finder" after 1.37 seconds (server forcibly re-enabled them after 1.00 seconds)
    28/10/13 09:01:02,517 WindowServer[89]: _CGXWindowRightsRelinquish: Invalid window 0x1d
    28/10/13 09:01:02,518 talagent[142]: CGSConnectionRelinquishWindowRights(cid, newWindowNumber, reservedRights): CGError 1001 on line 717
    28/10/13 09:01:02,520 WindowServer[89]: CGXTerminateWindowList: Invalid window 0x1d
    28/10/13 09:01:02,534 mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28/10/13 09:01:02,535 talagent[142]: CGSReleaseWindow(cid, wid): CGError 1001 on line 878
    28/10/13 09:01:06,108 com.apple.time[133]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    28/10/13 09:01:17,316 genatsdb[120]: *GENATSDB* FontObjects generated = 524
    28/10/13 09:01:35,430 WindowServer[89]: CGXDisableUpdate: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    28/10/13 09:01:36,477 WindowServer[89]: reenable_update_for_connection: UI updates were finally reenabled by application "Console" after 2.05 seconds (server forcibly re-enabled them after 1.00 seconds)
    ==== REGULAR BOOT =====
    28/10/13 09:04:54,000 bootlog[0]: BOOT_TIME 1382947494 0
    28/10/13 09:05:10,000 kernel[0]: PMAP: PCID enabled
    28/10/13 09:05:10,000 kernel[0]: Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    28/10/13 09:05:10,000 kernel[0]: vm_page_bootstrap: 1973469 free pages and 107299 wired pages
    28/10/13 09:05:10,000 kernel[0]: kext submap [0xffffff7f80742000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000742000]
    28/10/13 09:05:10,000 kernel[0]: zone leak detection enabled
    28/10/13 09:05:10,000 kernel[0]: standard timeslicing quantum is 10000 us
    28/10/13 09:05:10,000 kernel[0]: standard background quantum is 2500 us
    28/10/13 09:05:10,000 kernel[0]: mig_table_max_displ = 74
    28/10/13 09:05:10,000 kernel[0]: TSC Deadline Timer supported and enabled
    28/10/13 09:05:10,000 kernel[0]: corecrypto kext started!
    28/10/13 09:05:10,000 kernel[0]: Running kernel space in FIPS MODE
    28/10/13 09:05:10,000 kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    28/10/13 09:05:10,000 kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    28/10/13 09:05:10,000 kernel[0]: corecrypto.kext FIPS POST passed!
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    28/10/13 09:05:10,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    28/10/13 09:05:10,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    28/10/13 09:05:10,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    28/10/13 09:05:10,000 kernel[0]: calling mpo_policy_init for Sandbox
    28/10/13 09:04:55,537 com.apple.launchd[1]: *** launchd[1] has started up. ***
    28/10/13 09:05:10,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    28/10/13 09:05:10,000 kernel[0]: calling mpo_policy_init for Quarantine
    28/10/13 09:05:10,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    28/10/13 09:05:10,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    28/10/13 09:05:10,000 kernel[0]: The Regents of the University of California. All rights reserved.
    28/10/13 09:05:10,000 kernel[0]: MAC Framework successfully initialized
    28/10/13 09:05:10,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    28/10/13 09:05:10,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    28/10/13 09:05:10,000 kernel[0]: ACPI: sleep states S3 S4 S5
    28/10/13 09:05:10,000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    28/10/13 09:05:10,000 kernel[0]: AppleIntelCPUPowerManagement: (built 13:50:43 Sep 29 2013) initialization complete
    28/10/13 09:05:10,000 kernel[0]: pci build Sep 29 2013 13:35:16, flags 0x23008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    28/10/13 09:05:10,000 kernel[0]: [ PCI configuration begin ]
    28/10/13 09:05:10,000 kernel[0]: console relocated to 0xf81000000
    28/10/13 09:04:55,537 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    28/10/13 09:05:08,923 com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    28/10/13 09:05:10,000 kernel[0]: [ PCI configuration end, bridges 13, devices 16 ]
    28/10/13 09:05:10,000 kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    28/10/13 09:05:10,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    28/10/13 09:05:10,000 kernel[0]: rooting via boot-uuid from /chosen: F47B0803-7F96-3B8A-A025-DB74B67338B2
    28/10/13 09:05:10,000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    28/10/13 09:05:10,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    28/10/13 09:05:10,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    28/10/13 09:05:10,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    28/10/13 09:05:10,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    28/10/13 09:05:10,000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    28/10/13 09:05:10,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/TOSHIBA MK5065GSXF Media/IOGUIDPartitionScheme/Customer@2
    28/10/13 09:05:10,000 kernel[0]: BSD root: disk0s2, major 1, minor 1
    28/10/13 09:05:10,000 kernel[0]: BTCOEXIST off
    28/10/13 09:05:10,000 kernel[0]: BRCM tunables:
    28/10/13 09:05:10,000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    28/10/13 09:05:10,000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID a4b197fffeaf7c74; max speed s800.
    28/10/13 09:05:10,000 kernel[0]: Kernel is LP64
    28/10/13 09:05:10,000 kernel[0]: USBMSC Identifier (non-unique): KXGBB140833      0x5ac 0x1500 0x200, 2
    28/10/13 09:05:10,000 kernel[0]: USBMSC Identifier (non-unique): 㥒〳䜶䑗〳㄰䩘†ँ 0xe8d 0x1956 0x0, 2
    28/10/13 09:05:12,000 kernel[0]: BCM5701Enet: Ethernet address 3c:07:54:4c:6b:11
    28/10/13 09:05:12,000 kernel[0]: AirPort_Brcm4331: Ethernet address 60:c5:47:22:70:71
    28/10/13 09:05:12,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    28/10/13 09:05:12,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    28/10/13 09:05:14,989 hidd[49]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    28/10/13 09:05:15,016 hidd[49]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    28/10/13 09:05:18,000 kernel[0]: macx_swapon SUCCESS
    28/10/13 09:05:21,000 kernel[0]: Waiting for DSMOS...
    28/10/13 09:05:21,356 kdc[47]: label: default
    28/10/13 09:05:21,356 kdc[47]:           dbname: od:/Local/Default
    28/10/13 09:05:21,356 kdc[47]:           mkey_file: /var/db/krb5kdc/m-key
    28/10/13 09:05:21,356 kdc[47]:           acl_file: /var/db/krb5kdc/kadmind.acl
    28/10/13 09:05:22,495 com.apple.SecurityServer[18]: Session 100000 created
    28/10/13 09:05:22,689 appleeventsd[55]: main: Starting up
    28/10/13 09:05:23,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    28/10/13 09:05:23,000 kernel[0]: Waves SoundGrid Version: 2.0.0.14, Non-Interleaved Playback
    28/10/13 09:05:23,000 kernel[0]: IOBluetoothUSBDFU::probe
    28/10/13 09:05:23,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8281 FirmwareVersion - 0x0125
    28/10/13 09:05:23,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff801c143c00 ****
    28/10/13 09:05:23,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff801c143c00
    28/10/13 09:05:23,000 kernel[0]: Previous Shutdown Cause: 5
    28/10/13 09:05:23,000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    28/10/13 09:05:23,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    28/10/13 09:05:23,000 kernel[0]: DSMOS has arrived
    28/10/13 09:05:23,000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000060
    28/10/13 09:05:23,081 coreservicesd[65]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    28/10/13 09:05:23,086 mDNSResponder[41]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    28/10/13 09:05:24,138 airportd[69]: _processDLILEvent: en1 attached (down)
    28/10/13 09:05:24,000 kernel[0]: createVirtIf(): ifRole = 1
    28/10/13 09:05:24,000 kernel[0]: in func createVirtualInterface ifRole = 1
    28/10/13 09:05:24,000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff801c12b000
    28/10/13 09:05:24,000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    28/10/13 09:05:24,000 kernel[0]: Created virtif 0xffffff801c12b000 p2p0
    28/10/13 09:05:26,418 com.apple.usbmuxd[29]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    28/10/13 09:05:30,806 com.apple.SecurityServer[18]: Entering service
    28/10/13 09:05:31,742 systemkeychain[74]: done file: /var/run/systemkeychaincheck.done
    28/10/13 09:05:31,750 kdc[47]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    28/10/13 09:05:32,018 stackshot[32]: Timed out waiting for IOKit to finish matching.
    28/10/13 09:05:34,919 mDNSResponder[41]: D2D_IPC: Loaded
    28/10/13 09:05:34,919 mDNSResponder[41]: D2DInitialize succeeded
    28/10/13 09:05:35,301 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28/10/13 09:05:35,302 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28/10/13 09:05:35,612 kdc[47]: KDC started
    28/10/13 09:05:36,300 locationd[45]: NOTICE,Location icon should now be in state 0
    28/10/13 09:05:36,568 loginwindow[44]: Login Window Application Started
    28/10/13 09:05:37,167 UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    28/10/13 09:05:39,622 awacsd[59]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    28/10/13 09:05:39,627 awacsd[59]: InnerStore CopyAllZones: no info in Dynamic Store
    28/10/13 09:05:43,553 blued[58]: Read the UHE Info
    28/10/13 09:05:43,553 blued[58]: Read version 2 info.  Number of devices:1
    28/10/13 09:05:43,553 blued[58]: Class of device:     0x2594
    28/10/13 09:

  • Javascript to enable button and open popup needed

    Hello all,
    I have a form with a report that contains a checkbox. The user is to provide a document id which is applied to all checked items in the report. The problem is I need them to view the document referenced first and verify it is correct.
    My approach has been ...
    1) disable the apply button
    2) create a validate document button
    3) when validate is pressed open popup with document displayed, as well as enable apply button
    4) Provide button on display screen to close the popup window
    5) When apply button is pressed use a cursor to update all marked records
    The problem I am running into is I can get the javascript on button press to open the new window, or to enable the button, but not both. I have tried with inline javascript as well as with a function in the page header.
    Any help would be greatly appreciated.
    --Adam Cumming, Marion County, OR ([email protected])                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Wouldn't you know it. As soon as I post to the forum I figure it out...
    FYI here is the function that works...
    function html_EnableItem(a)
    var Elem_1 = document.getElementById(a);
    Elem_1.disabled = false;
    var LF_View = window.open('f?p=&APP_ID.:120:&SESSION.:::::', 'LF_Preview', 'width=800, height=600, toolbar=0, status=0');
    }

  • XSLT List View Web part with Inline Editing changing value for one field changes the other lookup field

    Hi
    It's a bit of a weird one. In an XSLT List View web part when Inline editing is enabled if I change the date column, it changes the lookup field column as well. This behavior only occurs if the lookup list has more than 20 entries. Below 20 and we are
    OK.
    Let me explain by example:
    MileStones List - Having more than 20 items
    Tasks List - having a lookup to the Title field from MileStones list. Also having a due date field.
    Simple web part page with one XSLT List View web part for Tasks having inline editing enabled.
    When I edit the first record's due date and press enter (which saves the changes and moves onto next record) and change the due date on second record without even touching the MileStone field. Press enter to commit changes and you see the milestone changing
    on first record!
    The wierd thing is that if the MileStone list has less than 20 items all works as expected.
    Any pointers will be appreciated
    Thanks

    Hi,
    This is a known limitation when working with complex fields like Lookup field.
    A workaround is that we can avoid using the inline edit feature when there are
    complex fields in a list.
    You can take a look at this KB from Microsoft Support to get more details:
    http://support.microsoft.com/kb/2600186/en-us
    A similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/3d369611-ee79-4b5c-86bb-c0f3878cd746/standard-list-view-with-inline-editing-lookup-column-copies-preceding-or-following-items-related?forum=sharepointgeneralprevious
    Thanks
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • GR/IR Revaluation Accounting Entries

    I need the related accounting entries for eg. I assume at goods receipt, the foreign denominated PO would be received and recorded in local currency at the current u201Cspotu201D exchange rate loaded into the system.  My questions are: 1)      Is the

  • How to extract Chinese text from font embedded text PDF?

    This is actually font embedded text PDF (Used: type 1 fonts & custom encoding) and not scanned PDF, however I am unable to extract the "Chinese language" text properly and found only the garbled text when "Copy & Paste" (or save as RTF). Kindly refer

  • Data source 0BBP_TD_SC_APPR_1 - delta update in SRM

    Hello, I use 0BBP_TD_SC_APPR_1 data source. I have made the delta initialisation with the data transfer into the ODS. Worked fine: data is in and the delta is initialised. The problem is, that the delta queue is never updated in the SRM (RSA7). Do yo

  • [Solved]Curl and Libcurl doesn't honor http(s)_proxy

    Like the title says I have the problem that curl and libcurl doesn't honor http(s)_proxy if used with pacman, I tried to add http(s):// to my proxy but no change. Has anyone an idea? EDIT: solved I had to use  sudo -E as my proxy isn't set through /e

  • Wish list: Meta tag editing

    We're using ICE internally and it would be a very nice feature if meta tags (title, description, keywords) could be edited as well. I now still have to access each page to manually edit these tags and most of our marketing staff are capable enough to