Slow boot and eventual freeze of system

ok here is the low down, my computer is booting up fairly slow at times, and other times at normal speed. Sometimes it does not boot at all. When it does boot up, it appears to be running normally, then all of the sudden nothing happens. I can move the mouse but nothing is reacting. the programs do not respond, nothing that is supose to be animated moves, and essentially everything stops, except I can still move the mouse freely. I am getting about 15 min of good use out of it before it kills over and freezes up, that is if it will boot properly.
Is this a Hard Drive or system error and how would I go about getting my information off of the computer.

To get the information off the computer, if you can get it to boot, you should backup your data. There are many means of backing up data, though if you can't boot, Getting an external Firewire hard drive that is at least 80 GB, and Prosoft Data Rescue may be necessary if you haven't backed up. Prosoft Data Rescue can be found here:
http://www.prosofteng.com/
Once you know you have a complete backup of your data, you may want examine the drive's directory and see if it can be repaired following these instructions:
http://docs.info.apple.com/article.html?artnum=106214
If it can't be repaired, you can either get Alsoft Disk Warrior from:
http://www.alsoft.com/
Or erase and install the operating system while there are no hard drive's connected externally, and upgrade back to 10.3.9 with the combo update:
http://www.apple.com/support/downloads/macosxcombinedupdate1039.html
If after doing that and not installing any third party peripherals or software it still is slowing down, then you may have a hardware issue which needs to be examined with the hardware test disk that came with your machine. I'm not certain, but I think all 17" Powerbooks have the hardware test as a second bootable volume on the restore disk that is bootable via the Startup Manager described here:
http://docs.info.apple.com/article.html?artnum=106178
Run the extended test, and report back the results if you end up having to go this far.

Similar Messages

  • After formatting my HD and eventually restore my system from a backup on Time Capsule, will I still have access to my old backups as normally used to do via Time Machine?

    I have a Time Capsule (4th Gen) and my backups on it, I need to completely erase my hard drive. My question is: after formatting my MacBook HD and eventually restore my system (OS X 10.6.8) from a backup on Time Capsule, will I still have access to my old* backups as normally used to do via Time Machine?
    *(-and to the newer backups- if I had not restored my system from the last backup).
    THANKS

    That's a good question. Technically, Time Machine should make a new backup but not erase any old backups. But if there isn't sufficient space on the backup drive, then I'm not sure if Time Machine will simply warn you or just go ahead and remove old backups to make room for the new ones.
    In any case, the new backup should have a different backup folder on the backup drive. That's my understanding. You can learn more at pondini.org.

  • ArchTaz Live: boot and run an Arch system entirely in RAM

    ArchTaz Live Boot: A method to boot and run an Arch system entirely in RAM using tmpfs.
    As the name suggests it was inspired by (copied entirely from) SliTaz http://www.slitaz.org/ and boots in exacly the same way.
    It needs a custom init script in the root directory and for some reason that I can't work out a hook for sysinit_premount in rc.sysinit to remount / rw.
    The /usr/bin/archfs script is just a chunk of Slitaz's Tazusb utility with some minor changes (and I haven't properly tested the lzma or no compression).
    The /init script is modified from the usual initramfs /usr/lib/initcpio/init with hints from the SliTaz /init script (and some personal additions for my system).
    Copy init to the root directory, run archfs (eg. # archfs writefs gzip) and move the resulting archfs.gz to your boot partition/directory and boot with archfs.gz as your initrd.
    I run a fairly light system (Openbox, Firefox, Gnome-Mplayer, SpaceFM, no dev packages) and gzip compression gives me an archfs.gz just over 230MB that boots in just over 30 seconds using 138MB RAM on startup, and most applications start instantly (2GHz Core2Duo, 4G RAM). Lzma compression generally gives a smaller archfs.gz but takes longer to boot. I have a persistent home partition, I install packages as I need them and then they're gone on next reboot if I don't do a new archfs.gz to keep them. I delete man pages, unneeded locales, etc. Obviously if you're running a hefty install on a limited box you may run into problems.
    Any tips, cleanups, corrections welcome. It's been a mostly copy and paste and mash stuff together process so it isn't neat. And I think I may need some serious help when systemd becomes default.
    /usr/bin/archfs:
    #!/bin/sh
    # Archfs - entirely copied from part of the Tazusb utility supplied with
    # SLiTaz GNU Linux - with some cosmetic changes.
    ### Tazusb - SliTaz LiveUSB
    ### Tazusb is an utility to generate, configure and manipulate SliTaz LiveUSB
    ### bootable media and/or USB /home partition, such as flash keys, SD card or
    ### USB harddisk.
    ### Authors : Christophe Lincoln (Pankso) <[email protected]>
    ### Andrew Miller (Spode) <[email protected]>
    COMMAND=$1
    case $COMMAND in
    writefs)
    # Writefs to rootfs.gz
    if [ -z $2 ]; then
    COMPRESSION=none
    else
    COMPRESSION=$2
    fi
    # Start info
    echo ""
    echo -e "\033[1mWrite filesystem\033[0m
    ===============================================================================
    The command writefs will write all the current filesystem into a suitable cpio
    archive (rootfs.gz) usable on a bootable LiveUSB media.
    Archive compression: $COMPRESSION"
    echo ""
    # Create list of files
    find /bin /etc /init /sbin /var /lib /lib64 /root /usr >/tmp/list
    for dir in /boot /dev /home /proc /sys /tmp /mnt /media /run
    do
    echo $dir >>/tmp/list
    done
    # Generate initramfs with specified compression
    if [ "$COMPRESSION" = "lzma" ]; then
    echo -n "Creating archfs.gz with lzma compression... "
    cat /tmp/list | cpio -o -H newc | lzma > /archfs.gz
    elif [ "$COMPRESSION" = "gzip" ]; then
    echo -n "Creating archfs.gz with gzip compression... "
    cat /tmp/list | cpio -o -H newc | gzip -9 > /archfs.gz
    else
    echo -n "Creating archfs.gz without compression... "
    cat /tmp/list | cpio -o -H newc > /archfs.gz
    fi
    # Get initramfs size
    size=`du -sh /archfs.gz | cut -f 1`
    echo "==============================================================================="
    echo "Root filesystem size: $size"
    echo ""
    echo -en "----\nENTER to continue..."; read i
    esac
    exit 0
    /init:
    #!/bin/bash
    PATH=/bin:/usr/bin:/usr/sbin:/sbin
    udevd_running=0
    if [ -x /usr/bin/systemd-timestamp ]; then
    RD_TIMESTAMP=$(systemd-timestamp)
    fi
    . /usr/lib/initcpio/init_functions
    mount -t proc proc /proc -o nosuid,noexec,nodev
    mount -t sysfs sys /sys -o nosuid,noexec,nodev
    mount -t devtmpfs dev /dev -o mode=0755,nosuid
    mount -t tmpfs run /run -o nosuid,nodev,mode=0755
    mkdir -m755 /run/initramfs
    # parse the kernel command line
    parse_cmdline
    for d in ${disablehooks//,/ }; do
    [ -e "/hooks/$d" ] && chmod 644 "/hooks/$d"
    done
    #. /config
    run_hookfunctions 'run_earlyhook' 'early hook' $EARLYHOOKS
    [ -n "${earlymodules//[[:space:]]}" ] && modprobe -qab ${earlymodules//,/ }
    [ -n "${MODULES//[[:space:]]}" ] && modprobe -qab $MODULES
    # If rootdelay is empty or not a non-negative integer, set it to 10
    if [ -z "${rootdelay}" ] || ! [ "${rootdelay}" -ge 0 ]; then
    rootdelay=10
    fi
    run_hookfunctions 'run_hook' 'hook' $HOOKS
    # honor the old behavior of break=y as a synonym for break=premount
    if [ "${break}" = "y" ] || [ "${break}" = "premount" ]; then
    echo ":: Pre-mount break requested, type 'exit' to resume operation"
    launch_interactive_shell
    fi
    rootdev=$(resolve_device "$root") && root=$rootdev
    unset rootdev
    #fsck_root
    # Make /new_root
    mkdir /new_root
    # Mount root at /new_root
    #${mount_handler:-default_mount_handler} /new_root
    echo -e "Switching / to tmpfs..."
    mount -t tmpfs tmpfs /new_root
    run_hookfunctions 'run_latehook' 'late hook' $LATEHOOKS
    run_hookfunctions 'run_cleanuphook' 'cleanup hook' $CLEANUPHOOKS
    # Stop udevd if is running
    if [ "${udevd_running}" -eq 1 ]; then
    udevadm control --exit
    udevadm info --cleanup-db
    fi
    # Copy root
    echo -e "Copying root..."
    for i in $(ls -a /); do
    case "$i" in
    .|..) ;;
    mnt) mkdir /new_root/mnt;;
    proc) mkdir /new_root/proc;;
    sys) mkdir /new_root/sys;;
    dev) mkdir /new_root/dev;;
    run) mkdir /new_root/run;;
    new_root) ;;
    *) cp -a /$i /new_root
    esac
    done
    # Create mountpoints
    mkdir /new_root/mnt/sda1
    mkdir /new_root/mnt/sda2
    mkdir /new_root/mnt/sda3
    mkdir /new_root/mnt/sda4
    init=${init:-/sbin/init}
    echo -e "Switching root..."
    exec env -i \
    "TERM=$TERM" \
    "RD_TIMESTAMP=$RD_TIMESTAMP" \
    /sbin/switch_root /new_root $init "$@"
    ## Mount root at /new_root
    #${mount_handler:-default_mount_handler} /new_root
    #run_hookfunctions 'run_latehook' 'late hook' $LATEHOOKS
    #run_hookfunctions 'run_cleanuphook' 'cleanup hook' $CLEANUPHOOKS
    init=${init:-/sbin/init}
    if [ "$(stat -c %D /)" = "$(stat -c %D /new_root)" ]; then
    # Nothing got mounted on /new_root. This is the end, we don't know what to do anymore
    # We fall back into a shell, but the shell has now PID 1
    # This way, manual recovery is still possible.
    err "Failed to mount the real root device."
    echo "Bailing out, you are on your own. Good luck."
    echo
    launch_interactive_shell --exec
    elif [ ! -x "/new_root${init}" ]; then
    # Successfully mounted /new_root, but ${init} is missing
    # The same logic as above applies
    err "Root device mounted successfully, but ${init} does not exist."
    echo "Bailing out, you are on your own. Good luck."
    echo
    launch_interactive_shell --exec
    fi
    if [ "${break}" = "postmount" ]; then
    echo ":: Post-mount break requested, type 'exit' to resume operation"
    launch_interactive_shell
    fi
    exec env -i \
    "TERM=$TERM" \
    "RD_TIMESTAMP=$RD_TIMESTAMP" \
    /sbin/switch_root /new_root $init "$@"
    # vim: set ft=sh ts=4 sw=4 et:
    /etc/rc.d/functions.d/root_rw:
    root_rw() {
    mount -o remount,rw /
    add_hook sysinit_premount root_rw
    archfs:
    http://pastebin.com/RNTDWhFc
    init:
    http://pastebin.com/n4vcqG62
    root_rw:
    http://pastebin.com/i1LV61SV
    Last edited by 0ddba11 (2012-12-30 10:12:35)

    Oh yes any man directory was symlinked to /tmp long ago, so they don't even get installed.
    Right, new boot process:
    Using hooks in normal initramfs-linux.img to unpack archfs.gz into tmpfs and boot it.
    Create an initcpio preset file /etc/mkinitcpio.d/archfs.preset:
    # mkinitcpio preset file for the 'archfs' package
    ALL_config="/etc/mkinitcpio.conf"
    ALL_kver="/boot/vmlinuz-linux"
    PRESETS=('archfs')
    archfs_config="/etc/mkinitcpio.conf"
    archfs_image="/boot/archfs-linux.lzo"
    archfs_options="-S fsck -A tmpfs -z lzop"
    Or append to the standard 'linux.preset' file so the initramfs is created automatically when you upgrade your kernel. Or alter /etc/mkinitcpio.conf to add options.
    Create the file /lib/initcpio/hooks/tmpfs:
    #!/usr/bin/ash
    run_latehook() {
    # Mount tmpfs root
    mount -t tmpfs tmpfs /mnt
    # Unpack rootfs
    msg "Unpacking rootfs..."
    cd /mnt
    # parse the kernel command line
    parse_cmdline
    for archfs in ${archfs//,/ }; do
    if [ "$archfs" = "xz" ]; then
    xz -d < /new_root/boot/archfs.xz | cpio -imd --no-absolute-filenames > /dev/null 2>&1
    elif [ "$archfs" = "gzip" ]; then
    gzip -dc /new_root/boot/archfs.gz | cpio -imd --no-absolute-filenames > /dev/null 2>&1
    elif [ "$archfs" = "lzo" ]; then
    lzop -d < /new_root/boot/archfs.lzo | cpio -imd --no-absolute-filenames > /dev/null 2>&1
    elif [ "$archfs" = "img" ]; then
    cpio -imd --no-absolute-filenames /new_root/boot/archfs.img > /dev/null 2>&1
    fi
    done
    # Switch tmpfs to new root
    umount /new_root
    mount -M /mnt /new_root
    # vim: set ft=sh ts=4 sw=4 et:
    And the file  /lib/initcpio/install/tmpfs:
    #!/bin/bash
    build() {
    add_dir /mnt
    add_module ext3
    add_binary cpio
    add_binary xz
    add_binary gzip
    add_binary lzop
    add_binary fsck.ext4
    add_symlink /usr/bin/fsck.ext2 fsck.ext4
    add_symlink /usr/bin/fsck.ext3 fsck.ext4
    add_runscript
    help() {
    cat <<HELPEOF
    This hook creates the tmpfs root, mounts the device that contains the
    rootfs and extracts it into the tmpfs root.
    HELPEOF
    # vim: set ft=sh ts=4 sw=4 et:
    This loads modules and fsck binaries for the filesystem of my /boot partition into the initramfs. It also adds all the relevant compression binaries (some which can also be compiled into busybox or left out if not needed). I'm working on automatically reading the filesystem from your /boot partition based on the "root=" kernel command line option and adding the appropriate modules.
    Create a new archfs.gz (or new extensions) with new cleaned up /usr/bin/archfs:
    http://pastebin.com/xiqgyYyL
    Now run with:
    # archfs lzo
    (or whichever crompression you choose). It also takes care of any mounting directories you have in /mnt. And "writefs" is no longer needed, that's all it does anyway.
    Then simply add the "root=(your boot partition)" and "archfs=lzo" (or whichever compression you chose) command line options to your grub.cfg.
    Run:
    # mkinitcpio -p archfs
    That'll create an initramfs: archfs-linux.lzo that you need to move to your boot partition with your kernel and archfs.gz. Then point grub to that as your initrd.
    This will boot and the tmpfs hook will do it's work just after init has mounted your boot partition and then init will switch roots and run /sbin/init as it would on any normal install.
    Mix and match as needed. You can remove the /init file from the root of your filesystem or leave it there and all but an xz compressed archfs.gz will boot the old way aswell (the kernel can't handle the xz version). It should all be fairly upgrade proof, barring any major changes to mkinitcpio.
    Boot for me with lzo compression is at least twice as fast as old method. Partly due to lzo compression which is super fast (especially creating the archfs.lzo). It makes for a bigger file but it's still only 350MB (pretty much half my uncompressed root filesystem).

  • Slow boot and performance?

    I recently did a fresh install of snow leopard as I had slow performance (particularly logic) slow boot and trouble shutting down. This fixed all these problems, but created new ones. For example i lost a whole bunch of logic exs synth factory presets and there seems to be no way of getting them back, so having kept an copy of the original HD I had to use it instead if I want logic to work.
    To improve performance I have done a complete defrag with iDefrag and 'cleaned up' using Clean myMac. This has hardly improved things at all.
    What can I do to increase performance?

    Clean MyMac has been mentioned enough with people having trouble there ought to be a warning.
    Fragmented free space is not something that is handled automatically and depending can get too fragmented so even with 30% free space it is all in smaller chunks.
    If it was less than 1% (0.25) that would effectively be "none" instead of 1/4 used.
    And I am old school in the best method has not changed really in over 30 yrs: dump clone backup to tape as you will, and do a format restore.
    and don't use the boot drive for editing if at all possible. If you must use something like iDefrag then backup, and boot from another hard drive to run it.

  • PC with slow boot and pc speed, sudden high pc usage, delay-freeze when opening/performing something

    Hi,
    Before everything, two things:
    1. I'm not a native english speaker so i may have some problems to speak properly/as objective as i'd like to.
    2 . I'm writing in this section because i don't know the cause of my pc issues so i can't categorize them.
    Now, my computer is a Toshiba satellite L755-S5244, Windows 7 Home premium 64 bits, Intel pentium CPU B940 2Ghz, 4 Gb RAM, and I'm writing this message using it.
    I bought the laptop in December of 2011 and at the beggining it was working normally. Someone else used the computer these last months and he left the pc without antivirus protection; when i installed one (Avast) and start to analyze the pc it suddenly shutted down. It wasn't able to boot, so after some trys to restore/enter in safe mode I finally used the Toshiba Recovery Wizard to get the pc to the original factory settings. The process was sucessfull, so the first thing i did after finish the process was install a new antivirus (this time i used Kaspersky Pure) and the the analysis showed no threats as i expected.
    However, before the recovery process i realized of some slow performance on the computer, like talking a bit too long to opening files or menus, control panel... almost anything was opening with a little delay even just after start the pc. This problem continued even after the recovery process. Also, an online game -League of legends- which was working fine when i just bought the pc, developed some issue: the screen and the audio randomly frezees for like 3-5 seconds. These problems seems to be related between each other.
    But that wasn't all. After the recovery to the original factory settings, i just installed a few things:
    -Kaspersky Pure 2.0, CCleaner (free), Mozila Firefox, and League of legends.
    Later I also installed Microsoft Office 2010.
    The antivirus showed no threats. The game kept with the freeze thing.
    And 2 days ago i was playing league of legends and downloading Skype when the pc suddenly got too slow. I restarted it. After the restart it took a long time to boot, and before the windows login screen loaded there was a black screen where only the mouse was showed; the start-up was slow too, (this one showed a blue screen with the mouse too -but not BSOD-) all this took like 15-20 minutes; that never happened before so i restarted the computer again but the problem was the same: slow boot, slow desktop start-up (let's not even talk about opening something).
    I went to the repair menu (f8) and try to restore the system but it didn't change anything. I checked for memory issues but there wasn't. I looked also for starting problems but the repair didn't find anything. All in there was saying: "the computer performance seems normal", but it wasn't. Like entering to windows in normal mode was talking to long, i tried the safe mode. It was also slow but not that much. When i entered, a system restore which i wasn't able to performance before in normal mode popped-up and said that the system was restored sucessfully to the first restore point -just after the factory recovery, but it apparently didn't fix the slow bot issue.
    Even in safe mode the software was working slow so i decided to go for the toshiba recovery wizard again, and looked in here, the forums -and the rest of the net- for problems like mine.
    This time the Toshiba Recovery Wizard took like ages to finish. 3 hours just for recovering, and like 7 more hours just installing the drivers. The boot/start-up was still slow, so i think this was the cause of the slow recovery because the wizard restarts the computer a lot.
    When the factory settings recovery finished, the first boot was slow, also the start up, the programs, the start menu, the control panel, ... everything was slow the first time i opened it. If i keep using the same program, it seems normal, but randomly freezes if i select some option, of press something (like this browser, google chrome, even now when i'm writing this message or before where i was registering into the forums). As obvious, because this slow performance i'm really not comfortable using this computer.
    I used the HDD SDD Alert but it says the HDD is working fine (the hard drive doesn't make weirds sounds, i almost don't hear it at all); also i did a PC Diagnostic with the PC diagnostic tool and everything passed the test. I can't think of virus/malware because i did the recovery wizard, twice. I just installed Avast again and it didn't find anything. With the task manager i noticed of a high pc usage (almost always 100%) was showing for a really short moment when/after the computer freezes.
    So, i don't know how to solve this slow performance.
    The last thing i did was download those speed-up softwares: SpeedUpMyPc, RegCurePro, SpeedyPC pro and Pareto logic Health Advisor. They scanned the pc for free and found like 100 system performance issues, but I'm not able to use these programms to fix the issues if i dont buy them. Also i'm not even sure if that will fix my problems.
    That's why i'm here, looking for a way to identify/fix them. One last thing: all this time i've been checking the temperature of the laptop but is never hot -now is not even warm. Now i'm afraid of restarting the PC again cuz i know it will take a long time to get into a kinda stable performance like right now.
    So that's all.  If you read all this, have my thanks. Also, any help would be really appreciated it.
    EDIT: 
    A new thing happened. When i try to installed league of legends, the setup told me that my hard drive may be corrupted and the file won't copy, i skip it a few times but the installation took a long of time (half hour) and the error kept ocurring.  I hope this can may be a clue about what is happening to my pc. 

    Satellite L755-S5244
    If you restore the hard disk to its original out-of-the-box contents using Toshiba recovery media and still have trouble, then you know it's not due to software.
    the setup told me that my hard drive may be corrupted and the file won't copy, i skip it a few times but the installation took a long of time (half hour) and the error kept ocurring.
    In particular, that sort of thing occurs when a hard drive is failing. Time to call Toshiba's tech support at 1-800-457-7777 (from the US) or 1-949-859-4273 (from outside the US).
    -Jerry

  • Slow boot and overall system sluggishness.

    My Macbook Pro is booting up very slow sometimes. It will take 10-15 minutes to be usable even though there are almost no startup items. It will happen only sometimes, most of the time I will boot in about a minute like it should. Still the system will slow down from time to time, for example the photoshop file open dialogue is extremely slow as is accessing files in the finder.
    I already did PRAM and SMC reset and repaired permissions using the restore partition. Below are my EtreCheck results and a bootlog from a slow boot a few days ago.
    EtreCheck version: 1.9.15 (52)
    Report generated 3. Oktober 2014 16:59:07 MESZ
    Hardware Information: ?
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.7 GHz Intel Core i7 CPU: 2 cores
      8 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.5 (13F34) - Uptime: 0 days 21:8:6
    Disk Information: ?
      Hitachi HTS547550A9E384 disk0 : (500,11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209,7 MB
      HDD (disk0s2) / [Startup]: 499,25 GB (375,48 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-8A8 
    USB Information: ?
      Apple Inc. iPhone
      Native Instruments Audio Kontrol 1
      Apple Computer, Inc. IR Receiver
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Configuration files: ?
      /etc/hosts - Count: 31
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [loaded] com.caiaq.driver.NIUSBHardwareDriver (2.6.0 - SDK 10.8) Support
      [not loaded] com.caiaq.driver.NIUSBMaschineControllerDriver (2.5.2 - SDK 10.7) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.klieme.TMSHelper.plist Support
      [not loaded] com.maintain.AutoLoginUserScreenLocked.plist Support
      [not loaded] com.maintain.CocktailScheduler.plist Support
      [not loaded] com.maintain.HideSpotlightMenuBarIcon.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
      [loaded] net.freemacsoft.LiteIcon.LIHelperTool.plist Support
    Launch Agents: ?
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [not loaded] com.maintain.LogOut.plist Support
      [not loaded] com.maintain.PurgeInactiveMemory.plist Support
      [not loaded] com.maintain.Restart.plist Support
      [not loaded] com.maintain.ShutDown.plist Support
      [not loaded] com.maintain.Sleep.plist Support
      [running] com.maintain.SystemEvents.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ?
      iTunesHelper
      Alfred 2
      WDQuickView
    Internet Plug-ins: ?
      AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      AdobePDFViewerNPAPI: Version: 10.1.12 Support
      AdobePDFViewer: Version: 10.1.12 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Safari Extensions: ?
      Adblock Plus
      ClickToPlugin-2
      Awesome Screenshot (Disabled)
      LinkThing
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Native Instruments USB Audio  Support
    Time Machine: ?
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      HDD: Disk size: 464.96 GB Disk used: 115.27 GB
      Destinations:
      TimeMachine [Network] (Last used)
      Total size: 3 TB
      Total number of backups: 17
      Oldest backup: 2014-08-03 17:35:39 +0000
      Last backup: 2014-09-30 20:23:15 +0000
      Size of backup disk: Excellent
      Backup size 3 TB > (Disk size 464.96 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          7% WindowServer
          5% Safari
          2% hidd
          0% fontd
          0% SystemUIServer
    Top Processes by Memory: ?
      180 MB Safari
      147 MB mds_stores
      131 MB com.apple.IconServicesAgent
      115 MB Finder
      82 MB com.apple.WebKit.WebContent
    Virtual Memory Information: ?
      3.46 GB Free RAM
      2.05 GB Active RAM
      1.19 GB Inactive RAM
      1.30 GB Wired RAM
      691 MB Page-ins
      0 B Page-outs
    29.09.14 09:06:40,000
    bootlog[0]
    BOOT_TIME 1411974400 0
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    syslogd[20]
    Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    29.09.14 09:09:10,000
    kernel[0]
    Longterm timer threshold: 1000 ms
    29.09.14 09:09:10,000
    kernel[0]
    PMAP: PCID enabled
    29.09.14 09:09:10,000
    kernel[0]
    Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    29.09.14 09:09:10,000
    kernel[0]
    vm_page_bootstrap: 1953945 free pages and 126823 wired pages
    29.09.14 09:09:10,000
    kernel[0]
    kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    29.09.14 09:09:10,000
    kernel[0]
    zone leak detection enabled
    29.09.14 09:09:10,000
    kernel[0]
    "vm_compressor_mode" is 4
    29.09.14 09:09:10,000
    kernel[0]
    standard timeslicing quantum is 10000 us
    29.09.14 09:09:10,000
    kernel[0]
    standard background quantum is 2500 us
    29.09.14 09:09:10,000
    kernel[0]
    mig_table_max_displ = 74
    29.09.14 09:09:10,000
    kernel[0]
    TSC Deadline Timer supported and enabled
    29.09.14 09:09:10,000
    kernel[0]
    "name" not a kext
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    29.09.14 09:09:10,000
    kernel[0]
    AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    29.09.14 09:09:10,000
    kernel[0]
    calling mpo_policy_init for Sandbox
    29.09.14 09:09:10,000
    kernel[0]
    Security policy loaded: Seatbelt sandbox policy (Sandbox)
    29.09.14 09:09:10,000
    kernel[0]
    calling mpo_policy_init for Quarantine
    29.09.14 09:09:10,000
    kernel[0]
    Security policy loaded: Quarantine policy (Quarantine)
    29.09.14 09:09:10,000
    kernel[0]
    calling mpo_policy_init for TMSafetyNet
    29.09.14 09:09:10,000
    kernel[0]
    Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    29.09.14 09:09:10,000
    kernel[0]
    Copyright (c) 1982, 1986, 1989, 1991, 1993
    29.09.14 09:09:10,000
    kernel[0]
    The Regents of the University of California. All rights reserved.
    29.09.14 09:09:10,000
    kernel[0]
    MAC Framework successfully initialized
    29.09.14 09:09:10,000
    kernel[0]
    using 16384 buffer headers and 10240 cluster IO buffer headers
    29.09.14 09:09:10,000
    kernel[0]
    AppleKeyStore starting (BUILT: Aug 17 2014 20:21:39)
    29.09.14 09:09:10,000
    kernel[0]
    IOAPIC: Version 0x20 Vectors 64:87
    29.09.14 09:09:10,000
    kernel[0]
    ACPI: sleep states S3 S4 S5
    29.09.14 09:09:10,000
    kernel[0]
    pci (build 20:04:33 Aug 17 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    29.09.14 09:09:10,000
    kernel[0]
    [ PCI configuration begin ]
    29.09.14 09:09:10,000
    kernel[0]
    console relocated to 0xf80000000
    29.09.14 09:09:10,000
    kernel[0]
    [ PCI configuration end, bridges 12, devices 16 ]
    29.09.14 09:09:10,000
    kernel[0]
    AppleIntelCPUPowerManagement: Turbo Ratios 0057
    29.09.14 09:09:10,000
    kernel[0]
    AppleIntelCPUPowerManagement: (built 20:17:40 Aug 17 2014) initialization complete
    29.09.14 09:09:10,000
    kernel[0]
    mcache: 4 CPU(s), 64 bytes CPU cache line size
    29.09.14 09:09:10,000
    kernel[0]
    mbinit: done [96 MB total pool size, (64/32) split]
    29.09.14 09:09:10,000
    kernel[0]
    Pthread support ABORTS when sync kernel primitives misused
    29.09.14 09:09:10,000
    kernel[0]
    BTCOEXIST off
    29.09.14 09:09:10,000
    kernel[0]
    BRCM tunables:
    29.09.14 09:09:10,000
    kernel[0]
    pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    29.09.14 09:09:10,000
    kernel[0]
    rooting via boot-uuid from /chosen: 176B7B54-8174-3798-BF61-52E2B0E98E94
    29.09.14 09:09: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>
    29.09.14 09:09:10,000
    kernel[0]
    com.apple.AppleFSCompressionTypeDataless kmod start
    29.09.14 09:09:10,000
    kernel[0]
    com.apple.AppleFSCompressionTypeLZVN kmod start
    29.09.14 09:09:10,000
    kernel[0]
    com.apple.AppleFSCompressionTypeZlib kmod start
    29.09.14 09:09:10,000
    kernel[0]
    FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffe9af848; max speed s800.
    29.09.14 09:09:10,000
    kernel[0]
    com.apple.AppleFSCompressionTypeDataless load succeeded
    29.09.14 09:09:10,000
    kernel[0]
    com.apple.AppleFSCompressionTypeLZVN load succeeded
    29.09.14 09:09:10,000
    kernel[0]
    com.apple.AppleFSCompressionTypeZlib load succeeded
    29.09.14 09:09:10,000
    kernel[0]
    AppleIntelCPUPowerManagementClient: ready
    29.09.14 09:09: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/Hitachi HTS547550A9E384 Media/IOGUIDPartitionScheme/HRVSTR HDD@2
    29.09.14 09:09:10,000
    kernel[0]
    BSD root: disk0s2, major 1, minor 2
    29.09.14 09:09:10,000
    kernel[0]
    AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    29.09.14 09:09:10,000
    kernel[0]
    Thunderbolt Self-Reset Count = 0xedefbe00
    29.09.14 09:09:10,000
    kernel[0]
    hfs: mounted HDD on device root_device
    29.09.14 09:09:10,000
    kernel[0]
    Waiting for DSMOS...
    29.09.14 09:09:10,000
    kernel[0]
    process taskgated[13] caught causing excessive wakeups. Observed wakeups rate (per sec): 1423; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45017
    29.09.14 09:07:18,002
    com.apple.launchd[1]
    *** launchd[1] has started up. ***
    29.09.14 09:07:18,002
    com.apple.launchd[1]
    *** Shutdown logging is enabled. ***
    29.09.14 09:08:43,028
    fseventsd[45]
    event logs in /.fseventsd out of sync with volume.  destroying old logs. (3 122 43080)
    29.09.14 09:08:53,416
    hidd[44]
    void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    29.09.14 09:08:53,418
    hidd[44]
    Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    29.09.14 09:09:11,000
    kernel[0]
    VM Swap Subsystem is ON
    29.09.14 09:09:11,000
    kernel[0]
    IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    29.09.14 09:09:11,000
    kernel[0]
    IO80211Interface::efiNVRAMPublished(): 
    29.09.14 09:09:12,342
    com.apple.SecurityServer[26]
    Session 100000 created
    29.09.14 09:09:17,027
    com.apple.usbmuxd[18]
    usbmuxd-344 on Jul 29 2014 at 13:52:57, running 64 bit
    29.09.14 09:09:22,000
    kernel[0]
    Ethernet [AppleBCM5701Ethernet]: Link up on en0, 1-Gigabit, Full-duplex, No flow-control, Debug [796d,2301,0de1,0300,c1e1,3800]
    29.09.14 09:09:26,367
    stackshot[22]
    Timed out waiting for IOKit to finish matching.
    29.09.14 09:09:26,000
    kernel[0]
    AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    29.09.14 09:09:26,573
    spindump[71]
    CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    29.09.14 09:09:26,573
    spindump[71]
    Unable to register Stop Spinning port: 1011
    29.09.14 09:09:26,574
    spindump[71]
    CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    29.09.14 09:09:27,177
    configd[55]
    dhcp_arp_router: en1 SSID unavailable
    29.09.14 09:09:27,189
    configd[55]
    network changed.
    29.09.14 09:09:27,189
    configd[55]
    setting hostname to "Richard-Muhler.local"
    29.09.14 09:09:28,000
    kernel[0]
    flow_divert_kctl_disconnect (0): disconnecting group 1
    29.09.14 09:09:32,529
    com.apple.SecurityServer[26]
    Entering service
    29.09.14 09:09:32,619
    awacsd[58]
    Starting awacsd connectivity_executables-97.1 (Jul 27 2014 17:02:42)
    29.09.14 09:09:32,623
    awacsd[58]
    InnerStore CopyAllZones: no info in Dynamic Store
    29.09.14 09:09:32,643
    UserEventAgent[11]
    Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    29.09.14 09:09:32,654
    UserEventAgent[11]
    Captive: CNPluginHandler en1: Inactive
    29.09.14 09:09:32,657
    digest-service[64]
    label: default
    29.09.14 09:09:32,658
    digest-service[64]
    dbname: od:/Local/Default
    29.09.14 09:09:32,658
    digest-service[64]
    mkey_file: /var/db/krb5kdc/m-key
    29.09.14 09:09:32,658
    digest-service[64]
    acl_file: /var/db/krb5kdc/kadmind.acl
    29.09.14 09:09:32,660
    digest-service[64]
    digest-request: uid=0
    29.09.14 09:09:32,675
    mDNSResponder[36]
    mDNSResponder mDNSResponder-522.92.1 (Jul 27 2014 17:31:49) starting OSXVers 13
    29.09.14 09:09:32,000
    kernel[0]
    Sandbox: mDNSResponder(36) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    29.09.14 09:09:32,708
    digest-service[64]
    digest-request: netr probe 0
    29.09.14 09:09:32,709
    digest-service[64]
    digest-request: init request
    29.09.14 09:09:32,721
    digest-service[64]
    digest-request: init return domain: BUILTIN server: RICHARD-MUHLER indomain was: <NULL>
    29.09.14 09:09:32,737
    configd[55]
    network changed.
    29.09.14 09:09:32,740
    configd[55]
    network changed: DNS*
    29.09.14 09:09:32,741
    mDNSResponder[36]
    D2D_IPC: Loaded
    29.09.14 09:09:32,741
    mDNSResponder[36]
    D2DInitialize succeeded
    29.09.14 09:09:32,743
    mDNSResponder[36]
      4: Listening for incoming Unix Domain Socket client requests
    29.09.14 09:09:32,746
    systemkeychain[87]
    done file: /var/run/systemkeychaincheck.done
    29.09.14 09:09:32,776
    networkd[104]
    networkd.104 built Aug 24 2013 22:08:46
    29.09.14 09:09:33,089
    airportd[62]
    airportdProcessDLILEvent: en1 attached (up)
    29.09.14 09:09:33,000
    kernel[0]
    createVirtIf(): ifRole = 1
    29.09.14 09:09:33,000
    kernel[0]
    in func createVirtualInterface ifRole = 1
    29.09.14 09:09:33,000
    kernel[0]
    AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    29.09.14 09:09:33,000
    kernel[0]
    AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    29.09.14 09:09:33,000
    kernel[0]
    Created virtif 0xffffff8020d6b400 p2p0
    29.09.14 09:09:33,350
    locationd[41]
    NBB-Could not get UDID for stable refill timing, falling back on random
    29.09.14 09:09:33,808
    locationd[41]
    Location icon should now be in state 'Inactive'
    29.09.14 09:09:33,821
    aosnotifyd[61]
    ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    29.09.14 09:09:33,865
    mdmclient[37]
    ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    29.09.14 09:09:33,932
    apsd[60]
    CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    29.09.14 09:09:38,337
    sandboxd[107]
    ([62]) airportd(62) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.A041C59B-5480-5 7C2-875E-9C156DC9D4C9.plist
    29.09.14 09:09:44,006
    apsd[60]
    CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    29.09.14 09:09:47,632
    awacsd[58]
    Exiting
    29.09.14 09:09:48,556
    spindump[71]
    CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    29.09.14 09:09:49,000
    kernel[0]
    hfs: mounted Recovery HD on device disk0s3
    29.09.14 09:09:52,266
    configd[55]
    subnet_route: write routing socket failed, Network is unreachable
    29.09.14 09:09:54,196
    configd[55]
    network changed: Proxy
    29.09.14 09:10:10,177
    fseventsd[45]
    implementation_register_rpc: implementation_added_client() => 22
    29.09.14 09:10:11,655
    configd[55]
    InterfaceNamer: timed out waiting for IOKit to quiesce
    29.09.14 09:10:11,655
    configd[55]
    Busy services :
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1 [2, 212828 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert [7, 58245 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/CPU0@0 [1, 55411 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU [1, 55172 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0 [1, 57881 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI [9, 57875 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/MCHC@0 [1, 55180 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1 [1, 57873 ms]
    29.09.14 09:10:11,655
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP [1, 57273 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0 [1, 57273 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP [1, 56667 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP/DSB0@0 [1, 56667 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP/DSB0@0/IOPP [1, 56650 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP/DSB0@0/IOPP/NHI0@0 [1, 56650 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP/DSB0@0/IOPP/NHI0@0/AppleThunderboltHAL [1, 56311 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP/DSB0@0/IOPP/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType1 [1, 56311 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP/DSB0@0/IOPP/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType1/IOThunderbo ltController [1, 56311 ms]
    29.09.14 09:10:11,656
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/PEG1@1,1/IOPP/UPSB@0/ IOPP/DSB0@0/IOPP/NHI0@0/AppleThunderboltHAL/AppleThunderboltNHIType1/IOThunderbo ltController/IOThunderboltLocalNode [1, 55173 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/IGPU@2 [1, 55177 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/pci8086,1c3a@16 [1, 55177 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/EHC2@1A,7 [1, 57124 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/EHC2@1A,7/AppleUSBEHC I [1, 56602 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/EHC2@1A,7/AppleUSBEHC I/Bluetooth USB Host Controller@fa113000 [1, 55176 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/HDEF@1B [1, 55184 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2 [1, 56629 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPP [1, 56113 ms]
    29.09.14 09:10:11,657
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPP/FRWR@0 [1, 56113 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPP/FRWR@0 /AppleFWOHCI [!registered, !matched, 1, 55552 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPP/FRWR@0 /AppleFWOHCI/IOFireWireController [1, 55552 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPP/FRWR@0 /AppleFWOHCI/IOFireWireController/IOFireWireLocalNode [1, 55552 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/LPCB@1F [1, 55183 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SBUS@1F,3 [1, 55184 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/SMC [1, 55177 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/SMS0 [1, 55177 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/ALS0 [1, 55177 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/GMUX [1, 55177 ms]
    29.09.14 09:10:11,658
    configd[55]
      MacBookPro8,1/AppleACPIPlatformExpert/PNLF [1, 55177 ms]
    29.09.14 09:10:11,659
    configd[55]
      MacBookPro8,1/IOResources [1, 57289 ms]
    29.09.14 09:10:13,156
    fseventsd[45]
    log dir: /.fseventsd getting new uuid: 4D918F9C-D859-4503-908A-3E5829A68AB2
    29.09.14 09:10:20,817
    diskarbitrationd[51]
    kextd [12]:15659 not responding.
    29.09.14 09:10:22,503
    configd[55]
    network changed: v4(en0+:192.168.2.212) DNS+ Proxy+ SMB
    29.09.14 09:10:22,000
    kernel[0]
    hfs: unmount initiated on Recovery HD on device disk0s3
    29.09.14 09:10:23,445
    warmd[17]
    [warmctl_evt_timer_bc_activation_timeout:287] BC activation bcstop timer fired!
    29.09.14 09:10:27,173
    ntpd[120]
    proto: precision = 1.000 usec
    29.09.14 09:10:33,493
    apsd[60]
    Unrecognized leaf certificate
    29.09.14 09:10:36,913
    sandboxd[107]
    DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    29.09.14 09:10:37,000
    kernel[0]
    SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    29.09.14 09:10:37,000
    kernel[0]
    SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    29.09.14 09:10:37,000
    kernel[0]
    SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    29.09.14 09:10:37,000
    kernel[0]
    SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    29.09.14 09:10:37,000
    kernel[0]
    SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    29.09.14 09:10:37,000
    kernel[0]
    SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    29.09.14 09:10:37,000
    kernel[0]
    Previous Shutdown Cause: 5
    29.09.14 09:10:37,000
    kernel[0]
    SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    29.09.14 09:10:39,000
    kernel[0]
    en3: promiscuous mode enable succeeded
    29.09.14 09:10:41,000
    kernel[0]
    IOBluetoothUSBDFU::probe
    29.09.14 09:10:41,000
    kernel[0]
    IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    29.09.14 09:10:41,000
    kernel[0]
    **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb400 ****
    29.09.14 09:10:41,000
    kernel[0]
    **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb400 ****
    29.09.14 09:10:42,000
    kernel[0]
    fGPUIdleIntervalMS = 0
    29.09.14 09:10:42,793
    UserEventAgent[11]
    assertion failed: 13F34: com.apple.telemetry + 17682 [AE0C3032-1747-317E-9871-E26B5B6B0120]: 0xffffffffe0000001
    29.09.14 09:10:43,000
    kernel[0]
    init
    29.09.14 09:10:43,000
    kernel[0]
    probe
    29.09.14 09:10:43,000
    kernel[0]
    start
    29.09.14 09:10:43,000
    kernel[0]
    DSMOS has arrived
    29.09.14 09:10:43,000
    kernel[0]
    [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb400
    29.09.14 09:10:43,000
    kernel[0]
    [IOBluetoothHCIController][start] -- completed
    29.09.14 09:10:43,128
    loginwindow[39]
    Login Window Application Started
    29.09.14 09:10:43,000
    kernel[0]
    [IOBluetoothHCIController::setConfigState] calling registerService
    29.09.14 09:10:43,000
    kernel[0]
    **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xcd40 -- 0xb000 -- 0xb400 ****
    29.09.14 09:10:43,266
    WindowServer[132]
    Server is starting up
    29.09.14 09:10:43,283
    mds[35]
    (Normal) FMW: FMW 0 0
    29.09.14 09:10:44,000
    kernel[0]
    mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    29.09.14 09:10:44,370
    WindowServer[132]
    Session 256 retained (2 references)
    29.09.14 09:10:44,371
    WindowServer[132]
    Session 256 released (1 references)
    29.09.14 09:10:44,385
    WindowServer[132]
    Session 256 retained (2 references)
    29.09.14 09:10:44,388
    WindowServer[132]
    init_page_flip: page flip mode is on
    29.09.14 09:10:45,086
    WindowServer[132]
    Found 13 modes for display 0x00000000 [13, 0]
    29.09.14 09:10:45,095
    WindowServer[132]
    Found 18 modes for display 0x00000000 [18, 0]
    29.09.14 09:10:45,103
    WindowServer[132]
    Found 1 modes for display 0x00000000 [1, 0]
    29.09.14 09:10:45,110
    WindowServer[132]
    Found 1 modes for display 0x00000000 [1, 0]
    29.09.14 09:10:45,112
    WindowServer[132]
    mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000

    John Galt
    1. I have backed up my Mac on WD MyCloud, a small NAS with a Time Machine feature.
    2. I have uninstalled Cocktail and cleared all settings reverting them to default.
    3. I removed 30 entries for privacy reasons. If it's necessary i can PM you the full list.
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1 localhost
    255.255.255.255 broadcasthost
    ::1             localhost
    fe80::1%lo0 localhost
    127.0.0.1 *removed*
    127.0.0.1 *removed*
    127.0.0.1 *removed*
    Linc Davis
    I restarted in safe mode and restarted again. I guess I have to wait now to see if this is fixed or should post the console output?

  • Satellite Pro A300-28R: slow boot and freezing on Explorer/Internet

    I have recently bought a Satellite Pro A300-28R and I am quite disappointed about the performance.
    1) From the specs it looks like a decent laptop but with booting time of about 3 minutes, "please wait" it is surely not impressing me given the fact that i have not installed anything yet...
    2) I will try to uninstall applications like tempro but still I am puzzled by the slow reaction on internet pages.
    For example when i go on google and start typing something most of the times the cursor freezes and i have to wait a few seconds before I am able to see what i am typing.
    I have only bought it last Friday and I have not used much but surely a bit of a disappointment so far.
    Any ideas why the cursor freezes on google or on the internet explorer toolbar?
    for info i am using Vista Business OS and Internet explorer
    any help welcome

    Hello
    About slow boot you can read very interesting and useful thread under http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=134947
    I hope this will help you to understand why this can happen.
    After first start you can be faced with this behaviour. Few days updates will be downloaded and installed in the background and you will notice high HDD activity. These activities can slow down notebook performance and what you can notice is this slow typing reaction or freezing video play.
    So my advice is to disable automatic updates and set it when updates are available you should get notification but you can start it manually. These all possible vista updates installation is for me big mistake because if you check available updates many of them are optional and some of them are driver updates (3 of them) these updates must not be installed.
    Maybe you should install recovery image again. don't connect it to internet and do what is described in posted thread. After optimizing preinstalled OS change settings for Windows update and connect it to internet. Check list of available updates and install important and recommended stuff only.
    I do always so and I am happy with my Satellite P200 and new A300. Both of them runs well and I am satisfied with performance.

  • Safari version 5.1.2 keeps loading pages slowly and eventually freezing. Any ideas on what the problem is?

    I recently updated safari to version 5.1.2. And now all the time it loads everything frustratingly slow and then eventually freezes with the spinning wheel icon, forcing me to restart the computer (MacBook pro 2009). I am running Mac OSX Lion latest version.

    Several things to try...
    From your Safari menu bar click Safari / Preferences then select the Security tab. Deselect: Enable plug ins Quit then relaunch Safari. If Safari speeds up loading pages, troubleshooting help for > Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    Check Safari / Preferences - Extensions. If you have any installed, turn that off, quit, relaunch Safari.
    Quit Safari. Open a Finder window select your Home folder in the Sidebar on the left. Then open the Library folder, then the Caches folder, then the com.apple.Safari folder. Move the cache.db file from the com.apple.Safari folder to the Trash. Relaunch Safari.
    From the Safari menu bar click Safari / Reset Safari. Select the top 7 buttons, click Reset.
    Check for Login Items:  Open System Preferences/Accounts then select the Login Items tab. Delete any files or apps you have listed there. And go to /Library/Startup Items. Move any files in the Startup Items folder to the Trash.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you always have a minimum of 15% free disk space.
    Try Safari in another user account. Same problems there, then log back into your admin account, launch Disk Utility.  /Applications/Utilities
    Select MacintoshHD in the panel on the left then select the First Aid tab.
    Click: Verify Disk  (not Verify Disk Permissions). If the startup disk needs repairing, follow the instructions for Using Disk Utility to verify or repair disks

  • Slow boot and RAM Problems?

    My system began booting up very slow about a month or more back. It takes about 5 minutes to boot. I had a event that began a week back where the boot sequence would freeze on the RAM initialization step. So I took out one stick of the ram and it did boot but still took 5 min. or more to do so. I dont boot often but when I do Im not that patent and it is very anoying. I have almost decided to reinstall everything fresh to deal with that issue but I am wondering if the RAM issue may be the socket and not the ram itself. Can I put the 2nd ram stick of the pair in slot 4 instead of slot 3 with the first stick in slot 1 or do i need to pair 1 to 3 and 2 to 4. I also wonder if anyone has had this slow boot issue and if anything else could help me other than reinstall fresh? Thanks for any help.

    For dual channel, slots 1 & 3, or 2 & 4 need to be used. Have you tested & tried each stick individually in slot 1? Before doing a complete fresh OS install, try a CMOS clear with the power cord removed, set Optimized Defaults, & only 1 stick RAM. I wouldn't rule out the PSU beginning to act up either. If possible, test with a single rail +12V PSU of around 30 amps. You might try running some HDD diagnostic tests, & have you run any checks for viruses?

  • Extremely slow boot and shut down process; very stance crashes;

    I have re-installed OSX lion three times already. Everytime I carried out a clean install on my Macbook core duo 2 3Gb ram, 500GB hard drive, 2006 model.
    All the times the OS appears to be as slow as ever on booting (approx 2 minutes or more).
    The apple logo stays on for quite a while then It disappears and the cursor appears on screen then the logo comes back on again for another couple of seconds and then the desktop slowly appears but still i have to wait for another couple fo seconds before I can use it.
    Then once the desktop is up and running if I open safari along with Mail both of them stay unresponsive for a while before I can get to do some work.
    Not to mention the shut down process; it takes at times up to 2 minutes.
    I checked all the processes in the Activity Monitor and there doesn't seem to be any process slowing or taking loads of memory.
    The only app that i could think of is Quicksilver which I have promptly removed/unisntalled without any changes in boot times etc.
    Is there any other thing/test I could carry out to find out or resolve this issue??
    I have also run disk utility Permission check/fix, disk check from Rescue disk but nothing seems to work and I can't find anything to help on the net.

    Try running a cache cleaner and clear out all system and user cache files. Onyx is a good freeware application for this. There are several others of course.
    http://www.titanium.free.fr/pgs2/english/download.html

  • Extremely slow boot and shut down

    I've been experiencing VERY slow boot up and shut down times (in excess of one minute for both booting and shutting down). I've removed everything from my login items and I still have the same problem. I have a late 2007 black MacBook with 10.5.3 on it. Any help would be appreciated!

    Try running a cache cleaner and clear out all system and user cache files. Onyx is a good freeware application for this. There are several others of course.
    http://www.titanium.free.fr/pgs2/english/download.html

  • 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:

  • My Mac pro desktop is slow! And will freeze up.

    I was trying to move a lot of pictures to another user to the shared file folder. During the process I quickly discovered that it was moving it to the desktop. So I stopped the process and that's when the computer froze up. I ended up restarting the computer but no luck. I even went as far to re install the operating software. I have looked in the activity monitor, desk repair, but nothing shows a problem. What's weird is that all the other users work fine. I didn't have the time maching turned on. The computer is only about a year old with tons of free space. Some of the programs work ok before the desktop fills up. Is there a cache that I can empty? I don't have too many apps or even use the computer all that much. Please help I am somewhat new to Apple, but a fan for life!

    Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Safe mode is much slower to boot and run than normal. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    You may now be able to log in and move the files off the Desktop. Then reboot as usual.

  • Flash causes Firefox to slow down and even freeze (and on a gaming laptop, too). How to fix this?

    Every time I use the Flash plug-in (for videos on YouTube or PutLocker or whatever), FireFox just slows down a lot and even freezes. It happens very often now and it's really annoying.
    By the way, I am using a gaming laptop so I am not sure why I am having these problems. My Flash plug-in and firefox are updated to the latest versions, too.
    My specs:
    Windows 7 Home Premium
    Intel i7-2670QM CPU @ 2.20GHZ (8 CPUs)
    nVidia GTX 560m 3GB vRAM dedicated
    16GB RAM

    Okay, so I uninstalled and reinstalled it. That helped only for about ten minutes and it started doing it again.
    I don't know what else to do. :S

  • Since the upgrade to 4.0.1, both of my mac osx computers get multiple popups, despite being enable, and slow tracking and frequent freezing

    Since the upgrade to 4.0.1, both of my mac osx computers get multiple popups and popunders, despite the block popups being enabled, as well as slow tracking(at regular card game sites, and frequent freezing of open windows.

    Honestly I would never run both Win 7 & XP at the same time in a VM. 7 needs at least 4GB to run properly and uses more resources then XP.
    I personally use VMware Fusion and XP. At this time there is no software, that I'm aware of or use, that does not run on XP. So for my Mac Win VM purpose I only run XP with the software in need to use in Windows. This work very well for me. I have 2 CPUs and 3GBs of RAM assigned to XP. Leaving the other 2 CPU cores, 4 HT cores, and 5GBs of RAM for OS X.
    Not sure why you need, or want, to run both versions of Windows at the same time. I don't see the need as stated above.

Maybe you are looking for

  • Cc 18 cloud version installed(windows), old files in cc17 crashes....help

    cc 18 cloud version installed(windows) old files cc17 crashes......help

  • Usesdi=yes in formsweb.cfg

    Is there a way to set usesdi=yes in formsweb.cfg? I've tried it and I've tried otherparams=usesdi=yes. The server ignores the former and ignores all my parameters with the latter.

  • "Published"  Edit does not show up.

    I have successfully downloaded my trial version of Contribute CS3 and when I click my Contribute App. it opens and shows my web site name with the "not connected" line under it. I click on that and my front page shows up with the "connect" button abo

  • Phonebook contacts problem...

    Hi guys, I will have to consult with you again,as another problem accured with my N78... Does anyone know why when a contact of mine is calling me i can see his mobile number but not his name even though the contact is in my SIM or Phone memory?!Than

  • Ho to get all directories by computer name.

    I have a computer name (e.g \\NT_SERVER) how can i get a list of all the directories of this computer??