VM in locked State

Hi,
there is a patch for HyperV to solve the Problem of a locekd VM, but this patch is only for Server 2012 and 8.1, not For a HyperVServer 2012 R2
http://support2.microsoft.com/kb/2964439
Any ideas where to get a Version for HyperV Server?
Already tried to install but Update will say, wrong Operating System
Seidl Michael | http://www.techguy.at |
twitter.com/techguyat | facebook.com/techguyat

Well, I'm trying to isolate the problem and probably I found it:
If I login in my VM servers I find under:
/var/run/ovs-agent
discover_hardware.lock
which is the process (server discovery) the VM manager can't complete.
discover_hardware.lock is an EMPTY file...what can I do to solve this??
I suppose something went wrong when VM Manager was rebooted.
There's a way to UNLOCK these processes???
I was thinking to stop OVMM service, delete or rename that file and start OVMM service again...could that be a solution??
Thank you in advance.
EDIT: Stopped OVMM, deleted .lock file, started VM Manager again, nothing changed, lock file was recreated.
Edited by: 897966 on 12-lug-2012 6.02

Similar Messages

  • VMs on Failover Cluster hanging in "Locked" state

    I'm managing a Windows Server 2012 R2 2-node cluster that is backed up using a separate DPM 2012 R2 server. All VMs are on Cluster Shared Storage.
    I've noticed that some VMs keep hanging in a "Running (Locked)" state (in FOCM, in HVM it shows a "Backing up..." state). Things I noticed while the VMs are in this state are:
    every subsequent DPM backup will fail (it looks like DPM is the cause of this "Locked" state)
    the VM can't be moved to another node
    if the VM is backed up "Online", I can see AVHD files -- the VHD files have the date of the last succesful DPM backup
    if the VM is backed up "Offline", I can't find any snapshots (the VHD files have the date of the last succesful DPM backup, which is weird, since the data in the VM is actually changing)
    The only way out of this situation is to shut down the VMs and reboot both cluster nodes. Of course, this isn't something that I like to do on a weekly basis.
    My questions:
    - What can I do to prevent this "Locked" problem? (the last 2 months I've experienced this problem with 5 different VMs)
    - Is there another way to get out of the "Locked" situation? Preferably one that doesn't require a cluster reboot.
    - Are there any logs I can check to get more information about this problem?
    Thanks in advance!

    I don't have a couple of those hotfixes. Mainly because the hotfix page states that I only should install it if I experience the problems mentioned -- which isn't always the case.
    I have a service interval coming up and will install the relevant patches. I'll report back when I have new information.
    Thanks so far!

  • Starting WLS 5.1 in LOCKED state.

    Is it possible to start the WLS 5.1 in a LOCKED state (equal to "java weblogic.Admin
    <url> LOCK system <password> <lockMessage>").
    If so, how ?
    Sten Richard

    Is it possible to start the WLS 5.1 in a LOCKED state (equal to "java weblogic.Admin
    <url> LOCK system <password> <lockMessage>").
    If so, how ?
    Sten Richard

  • Tables with locked stats

    Hi: I am on 10.2.0.3.
    Anybody know a view which shows thw tables with locked stats?
    Thanks,
    Greg

    You can find table lock details from dba_tables / all_tables check table_lock column
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_2.htm#i1592091

  • Database locking (state versus stateless) and indexes on oracle database

    Does anyone have a link to a document talking about database locking (state versus stateless) and talking about indexes in oracle database?

    No version information and no information as to what you mean by "locking" so no help is possible.
    You could mean LOCK TABLE in version 7.3.4 or SELECT FOR UPDATE in 11.1.0.7 or something else entirely.

  • Is it possible to restore to ios5 after updating to ios6 when my phone returned to locked state to unlocked state. Pla help...

    Is it possible to restore to ios5 after updating to ios6 when my phone returned to locked state to unlocked state. Plshelp...

    Sounds like your iPhone was hacked/modified/jailbroken to work
    with wireless carrier other than the one it was purchased from. The
    update has relocked it to the original carrier. Contact the original
    carrier to see if they offer unlocking and if you qualify - only the
    carrier to which the iPhone is locked can unlock it.
    What does it say when you look at Settings=>General=>Carrier?
    Be advised that the previous modifications to change from original carrier
    to your current Carrier may have rendered the software unable to be
    officially unlocked and may prevent future updates.
    Reverting to a previous version of iOS is not supported. Even it it was,
    such reversion would not solve your problem because the iPhone has become
    relocked to the original wireless provider and that status will not change
    no matter what iOS version is installed.

  • Access to Scroll Lock State

    Jason,
    This is a follow up question to regarding my interest in keyboard functions,...
    I could not find the details in the CVI documentation
    regarding EVENT_KEYPRESS in a panel, but I learned that
    "eventData1" contains the key char, and eventData2
    contains a pointer to both the char and the extended
    ascii char! So I am able to get most of what I need.
    Still remaining is the question of how to get the scroll-lock state and Numlock/CapsLock etc.
    Are these variables that I can get at?
    What does *callbackData point to? Is it a pointer to
    a struct with keyboard data?
    Thanks DraftsmanEE Dude

    Hello
    You can use the GetKeyboardState(). Its one of the Win SDK functions. You can install the SDK's by starting up the CVI installer from the control panel (it doesnt install by default). The SDK help lists all the function parameters and the appropriate libraries and headers you would need. I found some sample code on how to use the function on from the MSDN (http://msdn.microsoft.com):
    The following sample program turns the NUM LOCK light on if it is off. The SetNumLock function defined here simulates pressing the NUM LOCK key, using keybd_event() with a virtual key of VK_NUMLOCK. It takes a boolean value that indicates whether the light should be turned off (FALSE) or on (TRUE).
    The same technique can be used for the CAPS LOCK key (VK_CAPI
    TAL) and the SCROLL LOCK key (VK_SCROLL).
    /* Compile options needed:
    #include
    void SetNumLock( BOOL bState )
    BYTE keyState[256];
    GetKeyboardState((LPBYTE)&keyState);
    if( (bState && !(keyState[VK_NUMLOCK] & 1)) ||
    (!bState && (keyState[VK_NUMLOCK] & 1)) )
    // Simulate a key press
    keybd_event( VK_NUMLOCK,
    0x45,
    KEYEVENTF_EXTENDEDKEY | 0,
    0 );
    // Simulate a key release
    keybd_event( VK_NUMLOCK,
    0x45,
    KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP,
    0);
    void main()
    SetNumLock( TRUE );
    Hope this helps
    Bilal Durrani
    NI

  • HT201441 I have an iPhone that is in 'activation lock' state no iCloud account details.

    Hi,
    I recently restored my iPhone and it's now in 'activation lock' state.
    I don't remember my iCloud account details, and I did not succeed in resetting the password (can't remember security answers).
    I can prove ownership of the device, is it possible for Apple to "unlink" my iPhone from the iCloud account?

    Sorry DrDevil,
    You are going to have to turn off Find My iPhone in order to get past the Activation Lock. Turning off Find My iPhone requires you to know your Apple/iCloud/iTunes password. If you can't remember your password, and you don't know the answers to your security questions, you will have to contact iTunes Support to reset them for you:
    http://support.apple.com/kb/HT5699?viewlocale=en_US
    or by email:
    https://ssl.apple.com/emea/support/itunes/contact.html
    Cheers,
    GB

  • Iphone on Ready-to-be-locked state

    Hi, I'm trying to unlock my iPhone 4S with Fido (without success).
    I just got a reply from them saying that my iPhone is on "ready-to-be-locked" state and I should contact apple.
    How should I proceed? Any advise?
    regards

    Hi Pogster,
    Thanks for your reply. I'm trying to unlock my phone since July 7th, they just sent me the following e-mail.
    I just got a reply from our network support team and I’m told that your device is not locked to any provider, it’s on a ready-to-be-locked state. Cases as such must go through Apple directly as we are unable to unlocked such devices.
    I apologize for the trouble this causes and thank you for your understanding.
    Regards,
    Any advise?
    Thanks

  • Different locking statements

    what can be the different types of locking statements in a Oracle Developer application. Two forms of locking i use are:-
    a) FOR UPDATE OF COLUMN_NAME NOWAIT;
    B) FOR UPDATE OF COLUMN_NAME;
    I hope my question is clear. Please help in solving my doubt as it is very urgent.

    are all records in the table locked? or is there another filter condition
    alternatively
    After the update statement ... issue commit/rollback

  • Double Click works in locked state!!

    I accidentally found out that the double click action works even at the locked screen!! i think this is a GREAT addition to iPhone. i have always hated having to close safari to change my songs and do other music related tasks while trying to browse the net. THANKS APPLE!!

    ....and don't forget, a feature that was built in from the start is included right in the headset. That little white mic hanging from the right cord is also a button. Press that between your fingers once to pause and unpause a song and twice to skip to the next song.
    I also agree the double click features works great that you mention! I love this phone!

  • 6180 Storage Controllers are in Locked down state

    1 disk on the array got faulted and on trying to replace it both controllers on the storage have gone into a
    locked state.Both controllers have an LU+OE errors codes. Borrowed a similar controller to try and reset the faulted 2.
    Followed the syshandbk method;
    For controllers showing:
    LU on one controller and the tray ID(85 or 99) on the other
    1. serial into the LU controller, and run lemClearLockdown
    2. Use the management interface to Online the Controller
    3. The booting controller should show the same tray ID as the surviving one.
    Am failing to serial into the LU controller. Is a special password needed for this? Am using kra16wen password.
    Can the controllers be unlocked?
    Edited by: 949609 on Jul 29, 2012 5:04 AM

    Hello,
    Yes a special Oracle restricted password is required to access the shell low level. This password is used only by Oracle authorized engineers. The "kra16wen" gives you the access to the Service Interface Menu which is a customer interface.
    If one controller reports LU, this means that further investigation needs to be done by an Oracle engineer in order to determine (using special logs) why the controller is in lock down mode. This is not necessarily a H/W issue.
    Regards
    Nicolas

  • Locked table stats on volatile IOT result in suboptimal execution plan

    Hello,
    since upgrading to 10gR2 we are experiencing weird behaviour in execution plans of queries which join tables with a volatile IOT on which we deleted and locked statistics.
    Execution plan of the example query running ok (SYS_IOT... is the volatile IOT):
       0       SELECT STATEMENT Optimizer Mode=ALL_ROWS (Cost=12 Card=1 Bytes=169)
       1    0    SORT AGGREGATE (Card=1 Bytes=169)
       2    1      NESTED LOOPS OUTER (Cost=12 Card=1 Bytes=169)
       3    2        NESTED LOOPS OUTER (Cost=10 Card=1 Bytes=145)
       4    3          NESTED LOOPS (Cost=6 Card=1 Bytes=121)
       5    4            NESTED LOOPS OUTER (Cost=5 Card=1 Bytes=100)
       6    5              NESTED LOOPS (Cost=5 Card=1 Bytes=96)
       7    6                INDEX FAST FULL SCAN ...SYS_IOT_TOP_76973 (Cost=2 Card=1 Bytes=28)
       8    6                TABLE ACCESS BY INDEX ROWID ...VSUC (Cost=3 Card=1 Bytes=68)
       9    8                  INDEX RANGE SCAN ...VSUC_VORG (Cost=2 Card=1)Since 10gR2 the index on the joined table is not used:
       0       SELECT STATEMENT Optimizer Mode=ALL_ROWS (Cost=857 Card=1 Bytes=179)
       1    0    SORT AGGREGATE (Card=1 Bytes=179)
       2    1      NESTED LOOPS OUTER (Cost=857 Card=1 Bytes=179)
       3    2        NESTED LOOPS OUTER (Cost=855 Card=1 Bytes=155)
       4    3          NESTED LOOPS (Cost=851 Card=1 Bytes=131)
       5    4            NESTED LOOPS OUTER (Cost=850 Card=1 Bytes=110)
       6    5              NESTED LOOPS (Cost=850 Card=1 Bytes=106)
       7    6                TABLE ACCESS FULL ...VSUC (Cost=847 Card=1 Bytes=68)
       8    6                INDEX RANGE SCAN ...SYS_IOT_TOP_76973 (Cost=3 Card=1 Bytes=38)I did a UNLOCK_TABLE_STATS and GATHER_TABLE_STATS on the IOT and everything worked fine - the database used the first execution plan.
    Also, setting OPTIMIZER_FEATURES_ENABLE to 10.1.0.4 results in the correct execution plan, whereas 10.2.0.2 (standard on 10gR2) doesn't use the index - so i suppose it's an optimizer problem/bug/whatever.
    I've also tried forcing the index with a hint - it's scanning the index but the costs are extremly high.
    Any help would be greatly appreciated,
    regards
    -sd

    sdeng,
    The first thing you should do is to switch to using the dbms_xplan package for generating execution plans. Amongst other things, this will give you the filter and access predicates as they were when Oracle produced the execution plan. It will also report comments like: 'dynamic sampling used for this statement'.
    If you have deleted and locked stats on the IOT, then 10gR2 will (by default) be using dynamic sampling on that object - which means (in theory) it gets a better picture of how many rows really are there, and how well they might join to the next table. This may be enought to explain the change in plan.
    What you might try, if the first plan is guaranteed to be good, is to collect stats on the IOT when there is NO data in the IOT, then lock the stats. (Alternatively, fake some stats that say the table is empty if it never is really empty).
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Can't send photos taken via lock screen

    When I take a photo using the new quick access from the lock screen (which I LOVE), when I tap on the thumbnail and view the photo, the little button with the icon of the square and the arched arrow, the one I'd tap on to send the photo via email, text, etc., is missing.
    I then have to close the camera app and open Photos, locate the photo and send it from there.
    This doesn't happen if I take a photo the old fashioned way, swiping the lock screen and then opening the camera app. When I do it that way, take a photo, and tap on the thumbnail of the photo I just took to view it, the Share button is there.
    SO annoying and pretty much cancels out all the excitement of being able to access the camera quicker.
    Anyone else experiencing this? Is there anything I can do?
    Thanks!

    It would make sense in your case that you could send.
    But have you also noticed that you cannot see your other camera roll photos in the locked state?
    I can see where you are coming from, and would suggest that you mention it to Apple:
    http://www.apple.com/feedback/iphone.html
    They seldom reply, but it might be addressed.

  • Macbook Pro Running Very Slow and Locks Up Often

    I am hoping one of the experts on here might be able to help me out!
    My MacBook Pro (mid 2010) has really started to run incredibly slow.  I am certain I have crap on here I don't need that is causing issues, but I have been unable to troubleshoot what exactly is going on.
    I looked through prior discussions: https://discussions.apple.com/thread/5437363?start=225&tstart=0 and tried some of the tips there to see if I could improve performance.  It didn't seem to work.
    I included an EtreCheck below and I can send anything else that might be helpful.
    Thanks in advance for trying to help me out!
    EtreCheck version: 1.9.11 (43) - report generated June 5, 2014 at 1:11:20 PM EDT
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.66 GHz Intel Core i7 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 512 MB
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 1:27:49
    Disk Information:
              Hitachi HTS545050B9SA02 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 499.25 GB (48.09 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Internal Memory Card Reader
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. Built-in iSight
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] at.obdev.nke.LittleSnitch (3908 - SDK 10.8) Support
              [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
              [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
              [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
              [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
              [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
              [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
              [not loaded] com.eskapelabs.iokit.EskapeUSB (3.6.2) Support
              [not loaded] com.markspace.driver.RemoteNDIS (315) Support
              [not loaded] com.roxio.BluRaySupport (1.1.3) Support
              [not loaded] com.roxio.TDIXController (1.6) Support
              [not loaded] com.silabs.driver.CP210xVCPDriver (2.9.0d1) Support
              [kext loaded] com.squirrels.driver.AirParrotSpeakers (1.7 - SDK 10.7) Support
    Startup Items:
              Qmaster: Path: /Library/StartupItems/Qmaster
              VNCServer: Path: /Library/StartupItems/VNCServer
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.SwitchBoard.plist Support
              [loaded] com.barebones.authd.plist Support
              [running] com.crashplan.engine.plist Support
              [running] com.fitbit.fitbitd.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [running] com.memeo.WDMemeod.plist Support
              [not loaded] com.realvnc.VNCServerd.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [failed] com.adobe.CS4ServiceManager.plist Support
              [failed] com.adobe.CS5ServiceManager.plist Support
              [loaded] com.divx.dms.agent.plist Support
              [loaded] com.divx.update.agent.plist Support
              [loaded] com.google.keystone.agent.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.divx.agent.postinstall.plist Support
              [running] com.nchsoftware.inventoria.agent.plist Support
              [running] com.plexapp.mediaserver.plist Support
              [running] com.spotify.webhelper.plist Support
              [loaded] com.valvesoftware.steamclean.plist Support
    User Login Items:
              Steam
              Garmin Express Service
              Security Camera
              CrashPlan menu bar
              Spotify
              Dropbox
    Internet Plug-ins:
              o1dbrowserplugin: Version: 5.4.1.18709 Support
              SpeedDownload Browser Plugin: Version: 2.1.5 Support
              OVSHelper: Version: 1.1 Support
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 2.4.1.4 Support
              SlingPlayer: Version: (null) - SDK 10.6 Support
              Unity Web Player: Version: UnityPlayer version 4.2.1f4 - SDK 10.6 Support
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
              FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
              DivXBrowserPlugin: Version: 2.2 Support
              LogMeIn: Version: 1.0.459 Support
              Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
              googletalkbrowserplugin: Version: 5.4.1.18709 Support
              QuickTime Plugin: Version: 7.7.3
              AdobePDFViewer: Version: 10.1.1 Support
              GarminGpsControl: Version: 2.8.1.0 Release Support
              Photo Center Plugin: Version: Photo Center Plugin 1.1.2.0 Support
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Safari Extensions:
              DivX Plus Web Player HTML5 <video>: Version: 2.1.2.172
    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:
              TuneUp Visualizer: Version: (null) Support
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              Picasa: Version: 1.0 Support
              Google Earth Web Plug-in: Version: 6.2 Support
    3rd Party Preference Panes:
              Adobe Version Cue CS2  Support
              Flash Player  Support
              Flip4Mac WMV  Support
              Growl  Support
              Hazel  Support
              MacFUSE  Support
              MenuMeters  Support
              TechTool Protection  Support
              TiVoDesktop  Support
    Time Machine:
              Mobile backups: OFF
              Auto backup: NO - Auto backup turned off
              Time Machine not configured!
    Top Processes by CPU:
                   9%          mds
                   3%          Spotify
                   3%          WindowServer
                   1%          CrashPlanService
                   1%          sysmond
    Top Processes by Memory:
              147 MB          Spotify
              131 MB          Safari
              127 MB          firefox
              115 MB          CrashPlanService
              90 MB          WindowServer
    Virtual Memory Information:
              197 MB          Free RAM
              1.71 GB          Active RAM
              725 MB          Inactive RAM
              844 MB          Wired RAM
              1.18 GB          Page-ins
              46 MB          Page-outs

    I had all of these troubles before Mavericks, and it doesn't seem to be any worse after I installed Mavericks yesterday.
    It is almost to the point where I can not work at all in certain apps as it just freezes.
    Steps I have taken:
    - Reset the System Management Controller
    - Checked the battery cycle count (331)
    - Verified and repaired disk and permissions.
    - Cleaned up as many things as I could find.
    Here is an updated EtreCheck after I did some cleanup myself. 
    I also have included some of the most recent system logs.
    EtreCheck version: 1.9.11 (43) - report generated June 6, 2014 at 8:28:22 AM EDT
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.66 GHz Intel Core i7 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 512 MB
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 0:59:24
    Disk Information:
              Hitachi HTS545050B9SA02 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 499.25 GB (66.73 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Computer, Inc. IR Receiver
              Apple Inc. Built-in iSight
              Apple Inc. iPhone
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
              [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
              [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
              [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
              [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
              [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
              [not loaded] com.eskapelabs.iokit.EskapeUSB (3.6.2) Support
              [not loaded] com.markspace.driver.RemoteNDIS (315) Support
              [not loaded] com.roxio.BluRaySupport (1.1.3) Support
              [not loaded] com.silabs.driver.CP210xVCPDriver (2.9.0d1) Support
              [kext loaded] com.squirrels.driver.AirParrotSpeakers (1.7 - SDK 10.7) Support
    Startup Items:
              Qmaster: Path: /Library/StartupItems/Qmaster
              VNCServer: Path: /Library/StartupItems/VNCServer
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.SwitchBoard.plist Support
              [loaded] com.barebones.authd.plist Support
              [running] com.crashplan.engine.plist Support
              [running] com.fitbit.fitbitd.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [failed] com.memeo.WDMemeod.plist Support
              [not loaded] com.realvnc.VNCServerd.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.CS4ServiceManager.plist Support
              [loaded] com.adobe.CS5ServiceManager.plist Support
              [loaded] com.divx.dms.agent.plist Support
              [loaded] com.divx.update.agent.plist Support
              [loaded] com.google.keystone.agent.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.divx.agent.postinstall.plist Support
              [running] com.nchsoftware.inventoria.agent.plist Support
              [failed] com.plexapp.mediaserver.plist Support
              [running] com.spotify.webhelper.plist Support
    User Login Items:
              CrashPlan menu bar
    Internet Plug-ins:
              o1dbrowserplugin: Version: 5.4.1.18709 Support
              OVSHelper: Version: 1.1 Support
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 2.4.1.4 Support
              SlingPlayer: Version: (null) - SDK 10.6 Support
              Unity Web Player: Version: UnityPlayer version 4.5.0f6 - SDK 10.6 Support
              AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
              FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
              DivXBrowserPlugin: Version: 2.2 Support
              LogMeIn: Version: 1.0.459 Support
              Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
              googletalkbrowserplugin: Version: 5.4.1.18709 Support
              QuickTime Plugin: Version: 7.7.3
              AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
              GarminGpsControl: Version: 2.8.1.0 Release Support
              Photo Center Plugin: Version: Photo Center Plugin 1.1.2.0 Support
              Silverlight: Version: 5.1.30317.0 - SDK 10.6 Support
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Safari Extensions:
              DivX Plus Web Player HTML5 <video>: Version: 2.1.2.172
    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:
              TuneUp Visualizer: Version: (null) Support
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              Picasa: Version: 1.0 Support
              Google Earth Web Plug-in: Version: 6.2 Support
    3rd Party Preference Panes:
              Adobe Version Cue CS2  Support
              Flash Player  Support
              Flip4Mac WMV  Support
              Growl  Support
              Hazel  Support
              MacFUSE  Support
              MenuMeters  Support
              TechTool Protection  Support
              TiVoDesktop  Support
    Time Machine:
              Mobile backups: OFF
              Auto backup: NO - Auto backup turned off
              Time Machine not configured!
    Top Processes by CPU:
                   5%          Spotify
                   4%          WindowServer
                   3%          CrashPlanService
                   2%          mdworker
                   1%          coreaudiod
    Top Processes by Memory:
              356 MB          CrashPlanService
              201 MB          Spotify
              183 MB          Safari
              161 MB          com.apple.WebKit.WebContent
              127 MB          softwareupdated
    Virtual Memory Information:
              492 MB          Free RAM
              1.49 GB          Active RAM
              1.13 GB          Inactive RAM
              786 MB          Wired RAM
              625 MB          Page-ins
              0 B          Page-outs
    Recent Console Logs (there have been 4,000 since yesterday at noon):
    6/6/14 7:37:06.000 AM kernel[0]: considerRebuildOfPrelinkedKernel prebuild rebuild has expired
    6/6/14 7:37:08.350 AM com.apple.InputMethodKit.UserDictionary[336]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  **********~FD046823-6A23-5B27-B61D-83427C205DCA:UserDictionary
    Using local storage: 1
    6/6/14 7:37:08.860 AM com.apple.InputMethodKit.UserDictionary[336]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  **********~FD046823-6A23-5B27-B61D-83427C205DCA:UserDictionary
    Using local storage: 0
    6/6/14 7:37:14.109 AM com.apple.WebKit.WebContent[329]: Error loading /Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin/Contents/MacOS/iTea:  dlopen(/Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin/Contents/MacOS/iTea, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin/Contents/MacOS/iTea: no matching architecture in universal wrapper
    6/6/14 7:37:14.110 AM com.apple.WebKit.WebContent[329]: Cannot find function pointer iTeaHAL for factory 666438A7-7C20-4274-91D4-A7B71A71A40F in CFBundle/CFPlugIn 0x7f9095e1acf0 </Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin> (bundle, not loaded)
    6/6/14 7:37:33.168 AM VDCAssistant[342]: AVF encoder error: fail to create accelerator instance
    6/6/14 7:40:09.390 AM Safari[178]: Couldn't contact spell checker for Multilingual
    6/6/14 7:40:09.391 AM Safari[178]: Suppressing further spell checker launch failure warnings
    6/6/14 7:41:15.185 AM com.apple.WebKit.Networking[234]: CFNetwork SSLHandshake failed (-9806)
    6/6/14 7:41:15.216 AM com.apple.WebKit.Networking[234]: CFNetwork SSLHandshake failed (-9806)
    6/6/14 7:41:15.240 AM com.apple.WebKit.Networking[234]: CFNetwork SSLHandshake failed (-9806)
    6/6/14 7:41:16.658 AM AppleSpell[334]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    6/6/14 7:41:16.659 AM AppleSpell[334]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    6/6/14 7:41:16.659 AM AppleSpell[334]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    6/6/14 7:41:16.660 AM AppleSpell[334]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    6/6/14 7:41:16.660 AM AppleSpell[334]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    6/6/14 7:41:21.058 AM system_profiler[357]: Error -536870187 (e00002d5) making IOI2CSendRequest
    6/6/14 7:41:21.092 AM system_profiler[357]: Error -536870187 (e00002d5) making IOI2CSendRequest
    6/6/14 7:41:33.947 AM SubmitDiagInfo[346]: Submitted crash report: file:///Users/*********/Library/Logs/DiagnosticReports/Plex%20Media%20Server_20 14-06-05-092349_Macintosh.crash
    6/6/14 7:41:35.195 AM SubmitDiagInfo[346]: Submitted crash report: file:///Users/*********/Library/Logs/DiagnosticReports/Security%20Camera_2014-0 6-05-134928_Macintosh.crash
    6/6/14 7:41:44.249 AM SubmitDiagInfo[346]: Submitted crash report: file:///Users/***********/Library/Logs/DiagnosticReports/PluginProcess_2014-06- 05-142002_Macintosh.crash
    6/6/14 7:45:52.184 AM Spotify[398]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:45:53.668 AM WindowServer[93]: Received display connect changed for display 0x4272dc1
    6/6/14 7:45:53.708 AM WindowServer[93]: Found 42 modes for display 0x04272dc1 [42, 0]
    6/6/14 7:45:53.725 AM WindowServer[93]: Received display connect changed for display 0x3f003e
    6/6/14 7:45:53.725 AM WindowServer[93]: Found 1 modes for display 0x003f003e [1, 0]
    6/6/14 7:45:53.726 AM WindowServer[93]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/6/14 7:45:53.756 AM WindowServer[93]: Received display connect changed for display 0x4272dc1
    6/6/14 7:45:53.757 AM WindowServer[93]: Found 1 modes for display 0x04272dc1 [1, 0]
    6/6/14 7:45:57.643 AM Spotify[398]: Mac OS version: 10.9
    6/6/14 7:46:03.015 AM Spotify Helper EH[405]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:46:06.587 AM Spotify[398]: Media key event tap was disabled by timeout
    6/6/14 7:46:19.909 AM Spotify Helper[408]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:46:19.909 AM Spotify Helper[409]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:46:19.910 AM Spotify Helper[410]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:46:23.536 AM Spotify Helper[412]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:46:34.987 AM Spotify Helper[409]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    6/6/14 7:46:35.105 AM Spotify Helper[408]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    6/6/14 7:46:37.282 AM Spotify Helper[412]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    6/6/14 7:46:38.331 AM Spotify Helper[414]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:46:39.582 AM Spotify Helper[410]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    6/6/14 7:46:57.538 AM Spotify Helper EH[417]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 7:55:11.398 AM WindowServer[93]: CGError post_notification(const CGSNotificationType, void *const, const size_t, const bool, const CGSRealTimeDelta, const int, const CGSConnectionID *const, const pid_t): Timed out 1.000 second wait for reply from "Spotify Helper" for synchronous notification type 102 (kCGSDisplayWillSleep) (CID 0x1202b, PID 414)
    6/6/14 7:55:11.398 AM WindowServer[93]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7f8462e4ca70(2001)
    6/6/14 7:55:11.600 AM WindowServer[93]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7f8462e4ca70(2001)
    6/6/14 7:56:40.000 AM kernel[0]: PM notification timeout (pid 398, Spotify)
    6/6/14 7:56:40.000 AM kernel[0]: PM notification timeout (pid 409, Spotify Helper)
    6/6/14 7:56:40.000 AM kernel[0]: PM notification timeout (pid 408, Spotify Helper)
    6/6/14 7:56:40.000 AM kernel[0]: PM notification timeout (pid 410, Spotify Helper)
    6/6/14 7:56:40.000 AM kernel[0]: PM notification timeout (pid 412, Spotify Helper)
    6/6/14 7:56:40.000 AM kernel[0]: PM notification timeout (pid 417, Spotify Helper E)
    6/6/14 7:56:40.313 AM CrashPlan menu bar[262]: MasterControlProgram ** WE ARE __NOT__ CONNECTED **
    6/6/14 7:57:01.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    6/6/14 7:57:01.000 AM kernel[0]: hibernate image path: /var/vm/sleepimage
    6/6/14 7:57:01.000 AM kernel[0]: efi pagecount 125
    6/6/14 7:57:01.000 AM kernel[0]: hibernate_page_list_setall(preflight 1) start 0xffffff8074e99000, 0xffffff8074eb8000
    6/6/14 7:57:02.000 AM kernel[0]: hibernate_page_list_setall time: 232 ms
    6/6/14 7:57:02.000 AM kernel[0]: pages 1002234, wire 163750, act 354100, inact 1697, cleaned 0 spec 4, zf 98297, throt 0, compr 254, xpmapped 0
    6/6/14 7:57:02.000 AM kernel[0]: could discard act 64316 inact 57786 purgeable 2343 spec 259685 cleaned 2
    6/6/14 7:57:02.000 AM kernel[0]: hibernate_page_list_setall preflight pageCount 618102 est comp 50 setfile 1336349188 min 2147483648
    6/6/14 7:57:02.000 AM kernel[0]: [0x626480f000, 0x32000000]
    6/6/14 7:57:02.000 AM kernel[0]: [0x6d65948000, 0x19000000]
    6/6/14 7:57:02.000 AM kernel[0]: [0x6dc5606000, 0x19000000]
    6/6/14 7:57:02.000 AM kernel[0]: [0x70af0df000, 0x1c000000]
    6/6/14 7:57:02.000 AM kernel[0]: [0x0, 0x0]
    6/6/14 7:57:02.000 AM kernel[0]: kern_open_file_for_direct_io(0) took 49 ms
    6/6/14 7:57:02.000 AM kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0x0, maxio 2000000 ssd 0
    6/6/14 7:57:02.000 AM kernel[0]: hibernate image major 1, minor 0, blocksize 4096, pollers 5
    6/6/14 7:57:02.000 AM kernel[0]: hibernate_alloc_pages act 420199, inact 158342, anon 102056, throt 0, spec 259695, wire 165393, wireinit 85224
    6/6/14 7:57:02.000 AM kernel[0]: hibernate_setup(0) took 9 ms
    6/6/14 7:57:02.000 AM kernel[0]: AirParrot device perform power state change 1 -> 0
    6/6/14 7:57:28.000 AM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff8074e99000, 0xffffff8074eb8000
    6/6/14 7:57:28.000 AM kernel[0]: hibernate_page_list_setall time: 225 ms
    6/6/14 7:57:28.000 AM kernel[0]: pages 1003412, wire 165083, act 352860, inact 1697, cleaned 0 spec 5, zf 99545, throt 0, compr 254, xpmapped 54205
    6/6/14 7:57:28.000 AM kernel[0]: could discard act 64316 inact 57786 purgeable 2343 spec 259521 cleaned 2
    6/6/14 7:57:28.000 AM kernel[0]: hibernate_page_list_setall found pageCount 619444
    6/6/14 7:57:28.000 AM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    6/6/14 7:57:28.000 AM kernel[0]: IOHibernatePollerOpen(0)
    6/6/14 7:57:28.000 AM kernel[0]: encryptStart 14030
    6/6/14 7:57:28.000 AM kernel[0]: bitmap_size 0x1ef84, previewSize 0x393c80, writing 618263 pages @ 0x3c6c34
    6/6/14 7:57:28.000 AM kernel[0]: encryptEnd 6e2c000
    6/6/14 7:57:28.000 AM kernel[0]: image1Size 0xb73f000, encryptStart1 0x14030, End1 0x6e2c000
    6/6/14 7:57:28.000 AM kernel[0]: encryptStart b73f000
    6/6/14 7:57:28.000 AM kernel[0]: encryptEnd 4a1e9a00
    6/6/14 7:57:28.000 AM kernel[0]: PMStats: Hibernate write took 25540 ms
    6/6/14 7:57:28.000 AM kernel[0]: all time: 25540 ms, comp bytes: 2532712448 time: 2790 ms 865 Mb/s, crypt bytes: 1166813648 time: 1575 ms 706 Mb/s,
    6/6/14 7:57:28.000 AM kernel[0]: image 1243521024 (57%), uncompressed 2532712448 (618338), compressed 1235345744 (48%), sum1 f00c11ab, sum2 5472a3c9
    6/6/14 7:57:28.000 AM kernel[0]: zeroPageCount 77566, wiredPagesEncrypted 114372, wiredPagesClear 49605, dirtyPagesEncrypted 454361
    6/6/14 7:57:28.000 AM kernel[0]: hibernate_write_image done(0)
    6/6/14 7:57:28.000 AM kernel[0]: sleep
    6/6/14 7:57:28.000 AM kernel[0]: Wake reason: EHC2
    6/6/14 8:07:44.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    6/6/14 8:07:44.000 AM kernel[0]: AirParrot device perform power state change 0 -> 1
    6/6/14 8:07:44.000 AM kernel[0]: Previous Sleep Cause: 5
    6/6/14 8:07:44.000 AM kernel[0]: The USB device HubDevice (Port 1 of Hub at 0xfa000000) may have caused a wake by issuing a remote wakeup (2)
    6/6/14 8:07:44.000 AM kernel[0]: The USB device Apple Internal Keyboard / Trackpad (Port 2 of Hub at 0xfa100000) may have caused a wake by issuing a remote wakeup (3)
    6/6/14 8:07:44.000 AM kernel[0]: full wake (reason 1) 95 ms
    6/6/14 8:07:44.000 AM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    6/6/14 8:07:44.000 AM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    6/6/14 8:07:44.000 AM kernel[0]: en1: 802.11d country code set to 'X0'.
    6/6/14 8:07:44.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    6/6/14 8:07:44.591 AM WindowServer[93]: CGXDisplayDidWakeNotification [1675247721089]: posting kCGSDisplayDidWake
    6/6/14 8:07:44.591 AM WindowServer[93]: handle_will_sleep_auth_and_shield_windows: NULL shield_window (lock state: 1)
    6/6/14 8:07:46.746 AM configd[18]: setting hostname to "Macintosh.local"
    6/6/14 8:07:46.751 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    6/6/14 8:07:47.175 AM configd[18]: network changed: v4(en1-:192.168.1.68) DNS- Proxy-
    6/6/14 8:07:47.181 AM netbiosd[139]: network_reachability_changed : network is not reachable, netbiosd is shutting down
    6/6/14 8:07:51.378 AM fitbitd[67]: The system has powered on. Simulating connect for basestation "".
    6/6/14 8:07:52.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    6/6/14 8:07:52.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    6/6/14 8:07:53.248 AM Spotify Helper[425]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    6/6/14 8:07:53.418 AM MacUserInterface[67]: Failed to find device
    6/6/14 8:07:53.419 AM MacUserInterface[67]: Failed to initialize communication [VID: 0x10c4, PID: 0x84c4]. Is the base station plugged in?
    6/6/14 8:07:53.965 AM Spotify Helper[425]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    6/6/14 8:07:54.000 AM kernel[0]: MacAuthEvent en1   Auth result for: 60:33:4b:e0:70:d4  MAC AUTH succeeded
    6/6/14 8:07:54.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/6/14 8:07:54.000 AM kernel[0]: AirPort: Link Up on en1
    6/6/14 8:07:54.000 AM kernel[0]: en1: BSSID changed to 60:33:4b:e0:70:d4
    6/6/14 8:07:54.000 AM kernel[0]: AirPort: RSN handshake complete on en1
    6/6/14 8:07:54.899 AM configd[18]: network changed: DNS* Proxy
    6/6/14 8:07:54.902 AM UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Sawdust' making interface primary (cache indicates network not captive)
    6/6/14 8:07:54.902 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    6/6/14 8:07:54.906 AM UserEventAgent[11]: Captive: en1: Not probing 'Sawdust' (cache indicates not captive)
    6/6/14 8:07:54.907 AM UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    6/6/14 8:07:55.249 AM configd[18]: network changed: v4(en1!:192.168.1.68) DNS+ Proxy+ SMB
    6/6/14 8:07:55.000 AM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    6/6/14 8:07:55.301 AM configd[18]: setting hostname to "sawdust"
    6/6/14 8:07:57.383 AM CrashPlan menu bar[262]: MasterControlProgram connection attempt made.
    6/6/14 8:07:57.397 AM CrashPlan menu bar[262]: MasterControlProgram ** WE ARE CONNECTED **
    6/6/14 8:07:58.659 AM AirPlayUIAgent[202]: 2014-06-06 08:07:58.658447 AM [AirPlayUIAgent] Changed PIN pairing: no
    6/6/14 8:07:58.893 AM AirPlayUIAgent[202]: 2014-06-06 08:07:58.892674 AM [AirPlayUIAgent] Changed PIN pairing: no
    6/6/14 8:07:59.544 AM CrashPlan menu bar[262]: CPMessageHandler Asked to change 'isConnected' status for GUID 4200, but I couldn't find any computer with that GUID.
    6/6/14 8:07:59.856 AM apsd[63]: Unrecognized leaf certificate
    6/6/14 8:08:03.805 AM xpcproxy[436]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/6/14 8:08:04.206 AM CrashPlan menu bar[262]: CPMessageHandler Asked to change 'isConnected' status for GUID 630508848775430145, but I couldn't find any computer with that GUID.
    6/6/14 8:08:04.745 AM digest-service[435]: label: default
    6/6/14 8:08:04.745 AM digest-service[435]:           dbname: od:/Local/Default
    6/6/14 8:08:04.745 AM digest-service[435]:           mkey_file: /var/db/krb5kdc/m-key
    6/6/14 8:08:04.745 AM digest-service[435]:           acl_file: /var/db/krb5kdc/kadmind.acl
    6/6/14 8:08:05.098 AM AirPlayUIAgent[202]: 2014-06-06 08:08:05.097434 AM [AirPlayUIAgent] Changed PIN pairing: no
    6/6/14 8:08:05.106 AM AirPlayUIAgent[202]: 2014-06-06 08:08:05.105740 AM [AirPlayUIAgent] Changed PIN pairing: no
    6/6/14 8:08:05.137 AM digest-service[435]: digest-request: uid=0
    6/6/14 8:08:06.152 AM digest-service[435]: digest-request: netr probe 0
    6/6/14 8:08:06.153 AM digest-service[435]: digest-request: init request
    6/6/14 8:08:06.158 AM digest-service[435]: digest-request: init return domain: MACINTOSH server: SAWDUST indomain was: <NULL>
    6/6/14 8:08:07.334 AM digest-service[435]: digest-request: uid=0
    6/6/14 8:08:07.334 AM digest-service[435]: digest-request: init request
    6/6/14 8:08:07.339 AM digest-service[435]: digest-request: init return domain: SAWDUST server: SAWDUST indomain was: <NULL>
    6/6/14 8:08:31.028 AM CrashPlanService[68]: __TCCAccessRequest_block_invoke46: Connection invalid
    6/6/14 8:08:43.247 AM CrashPlanService[68]: __TCCAccessRequest_block_invoke46: Connection invalid
    6/6/14 8:08:43.248 AM CrashPlanService[68]: __TCCAccessRequest_block_invoke46: Connection invalid
    6/6/14 8:12:32.102 AM Adobe InDesign CS6[457]: The function `CGSFlushWindow' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGSFlushWindowContentRegion' instead.
    6/6/14 8:13:57.049 AM WindowServer[93]: disable_update_timeout: UI updates were forcibly disabled by application "InDesign" for over 1.00 seconds. Server has re-enabled them.
    6/6/14 8:13:57.688 AM WindowServer[93]: common_reenable_update: UI updates were finally reenabled by application "InDesign" after 1.64 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/6/14 8:14:03.458 AM WindowServer[93]: disable_update_timeout: UI updates were forcibly disabled by application "InDesign" for over 1.00 seconds. Server has re-enabled them.
    6/6/14 8:14:04.066 AM WindowServer[93]: common_reenable_update: UI updates were finally reenabled by application "InDesign" after 1.61 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/6/14 8:14:30.669 AM Adobe InDesign CS6[457]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    6/6/14 8:14:30.670 AM Adobe InDesign CS6[457]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    6/6/14 8:14:30.676 AM Adobe InDesign CS6[457]: CoreText performance note: Client called CTFontCreateWithName() using name "Arial" and got font with PostScript name "ArialMT". For best performance, only use PostScript names when calling this API.
    6/6/14 8:14:38.029 AM Adobe InDesign CS6[457]: CoreText performance note: Client called CTFontCreateWithName() using name "System Font Regular" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    6/6/14 8:24:05.643 AM PluginProcess[480]: Error loading /Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin/Contents/MacOS/iTea:  dlopen(/Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin/Contents/MacOS/iTea, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin/Contents/MacOS/iTea: no matching architecture in universal wrapper
    6/6/14 8:24:05.643 AM PluginProcess[480]: Cannot find function pointer iTeaHAL for factory 666438A7-7C20-4274-91D4-A7B71A71A40F in CFBundle/CFPlugIn 0x7f8d91d053e0 </Library/Audio/Plug-Ins/HAL/Digital Power Station.plugin> (bundle, not loaded)
    6/6/14 8:24:15.593 AM xpcproxy[482]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/6/14 8:28:03.825 AM WindowServer[93]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    6/6/14 8:28:05.609 AM WindowServer[93]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 2.78 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/6/14 8:28:13.520 AM com.apple.IconServicesAgent[215]: main Failed to composit image for binding VariantBinding [0x20b] flags: 0x8 binding: FileInfoBinding [0x111] - extension: jpg, UTI: public.jpeg, fileType: ????.
    6/6/14 8:28:13.613 AM quicklookd[486]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: jpg, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    6/6/14 8:28:13.742 AM com.apple.IconServicesAgent[215]: main Failed to composit image for binding VariantBinding [0x20d] flags: 0x8 binding: FileInfoBinding [0x3f3] - extension: tiff, UTI: public.tiff, fileType: ????.
    6/6/14 8:28:13.742 AM quicklookd[486]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: tiff, UTI: public.tiff, fileType: ???? request size:16 scale: 1
    6/6/14 8:28:14.493 AM com.apple.IconServicesAgent[215]: main Failed to composit image for binding VariantBinding [0x20f] flags: 0x8 binding: FileInfoBinding [0x113] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF .
    6/6/14 8:28:14.494 AM quicklookd[486]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF  request size:16 scale: 1
    6/6/14 8:29:02.177 AM System Events[524]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    6/6/14 8:29:02.178 AM System Events[524]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.
    6/6/14 8:30:20.495 AM Console[555]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    6/6/14 8:30:23.066 AM WindowServer[93]: disable_update_timeout: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    6/6/14 8:30:23.756 AM WindowServer[93]: common_reenable_update: UI updates were finally reenabled by application "Console" after 1.69 seconds (server forcibly re-enabled them after 1.00 seconds)
    Does anyone see anything?

Maybe you are looking for

  • The item contains one or more busy items that cannot be changed

    We have a Windows 2003 file server and we are having issues with Macs retrieving files/folders from it. There is a folder on the Windows share named "dropbin" that UserA has full permissions on. UserB has the following NTFS permissions on the dropbin

  • Why is AE reading file as 30fps?

    I have exported both a PNG and TIFF sequence from Premiere at 25fps. When I open it in After Effects it is saying it is 30fps. I have manually changed the composition to 25fps but the footage itself is 30fps. It was shot at 25fps, the timeline in Pre

  • Sk17i Video streaming on WiFi problems.

    andriod 2.3.4 build 4.0.2.A.0.58Flash version... Lastest.Apps with push notifcations... All disabled... well, i stopped auto snyc.Internet speed: 20mb/s Unlimited (Sky)Wifi speed: 14mb/s (using speedtest.net's app)Other devices using wifi? none.Dista

  • Not printing first page

    my daughter has an ibook, and we are not vastly familiar with apple usage yet, but when she tries to print, it will not print the first page. we have tried page set up etc, and nothing has helped. I would assume it is the computer as opposed to the p

  • My internal hard drives don't appear in disk utility. Can't install os X

    Hi, I have a macpro. In this computer are 4 1TB hard drives. They were set up as a raid set. I booted my comp with a snow leopard install disk and opened raid utility to delete the raid set so I can install os X on one hard drive and use the other ha