Equivalent of audiowrapper command?

I can't get sound on vmware for the life of me (even using the vmwareesd command), and I wanted to try what this thread says:
http://forum.linspire.com/viewtopic.php?t=422427&
Try this:
audiowrapper --alsa-native /usr/bin/vmware
However, it seems like the command audiowrapper is on Linspire and Linspire alone, and I can't even find any way to download it and try installing it on Arch myself. Is there any other way to tell vmware to use ALSA like that, so I can have sound?
Last edited by violagirl23 (2008-06-18 19:25:59)

I need to manually DEFRAG/SHRINK space in some tables
on a 9i database. In 10g i usually issue
ALTER TABLE SEGMENT_NAME SHRINK SPACE CASCADE after
enabling row movement.
What is the equivalent of SHRINK in 9i?That's new feature in 10g, no equivalent in 9i.
In 9i, you could reorg your tables using ALTER TABLE .. MOVE TABLESPACE method.

Similar Messages

  • What is the Mac equivalent of the command "ctrl shift  I"  for a PC

    HI
    what is the Mac equivalent of the command "ctrl+shift + I"  for a PC to get to the cookies and delete them

    It varies depending on which browser you're using. In Safari, choose Preferences from the Safari menu, click on the Privacy tab, and then on Details.
    (101212)

  • Oracle equivalent of MySql commands and code.

    Hi,
    Does anyone know the Oracle equivalent of the following? I'm not a DBA and my DBA doesn't know MySQL. TIA
    Assign access rights: login as root user to mysql:
    mysql -uroot -pYourSecretPassword
    On some MySQL installations, the root user has no password, in that case drop
    the -p parameter.
    Then grant the necessary access rights using the following commands: (this will
    automatically create the users)
    GRANT ALL ON daisyrepository.* TO daisy@"%" IDENTIFIED BY "daisy";
    GRANT ALL ON daisyrepository.* TO daisy@localhost IDENTIFIED BY "daisy";
    (The localhost entries are necessary because otherwise the default access rights
    for anonymous users @localhost will take precedence.)
    and create the database using:
    CREATE DATABASE daisyrepository;
    jack

    GRANT ALL ON daisyrepository.* TO daisy@% IDENTIFIED
    BY "daisy";This means:
    GRANT ALL privileges
    ON all tables and views in schema 'daisyrepository'
    To user daisy from any host.
    There are several problems in translation to Oracle:
    1) Oracle has a few more privs than MySQL, in part because there are a few more object types. You need to be more restrictive than 'GRANT ALL';
    2) Oracle does not support wild cards or patterns grants against a schema's objects. You need to specify each object individually;
    3) Oracle users are database users, not host users, so daisy@% does not make any sense at all. You specify the database user name, or perhaps group users into roles and specify the role name.
    This is discussed in the SQL Reference manual, in the 'GRANT' chapter, for each version of the database. The docs are at http://docs.oracle.com
    Have fun :-p

  • Is there any equivalent to xp_cmdshell command in, SQL Anywhere?

    In Sybase IQ there's a command named xp_cmdshell, it is a system extended procedure that allows a database server to execute external shell commands.
    I need to know if there's an equivalent to it in SQL ANywhere syntax?

    Hi Erika,
    SQL Anywhere contains a command by the same name which should be very similar, if not identical, to it's IQ counterpart.
    More information can be found at this DCX page.
    Thanks,
    Mikel Rychliski
    SAP Active Global Support

  • LabVIEW Equivalent of 'Whos' command in MATLAB

    Hi 
    Similar to 'Whos' command in MATLAB I wanted to list all the constant and controls (if possible) I used in my LabVIEW code. Does anyone know if its possible with any additional code or Toolkit. 
    Thanks in advance. 
    Thanks & Regards,
    Kunal Raithatha.
    CTD - CLAD (I wish I can take off that A, and maybe use it later to replace D :-)
    Easy Tip :- "To copy an image to a VI icon, drag the image file and place it on the icon
    located in the upper right corner of the front panel or block diagram" ...If you know any
    more reply back.

    Smercurio_fc
    Pupose is to enlist name and value of constants n controls I used in quite a big VI, values of the constants are often manipulated to adjust the requirement. It will be good at the end if I can print them altogether. 
    Thank You.
    Thanks & Regards,
    Kunal Raithatha.
    CTD - CLAD (I wish I can take off that A, and maybe use it later to replace D :-)
    Easy Tip :- "To copy an image to a VI icon, drag the image file and place it on the icon
    located in the upper right corner of the front panel or block diagram" ...If you know any
    more reply back.

  • Is there an enhanced equivalent of crs_stat -t command in 11.2 ?

    DB version: 11.2.0.1
    Os : Solaris
    In 10gR2, we used
    crs_stat -tto check the status of cluster. Is there an enhanced equivalent of this command in 11.2 ?

    Thank you Rajesh. Do you set anything in putty (like increasing the row width) to make it more readable.
    The output look a bit messed up
    $ crsctl stat res -t -init
    NAME           TARGET  STATE        SERVER                   STATE_DETAILS
    Cluster Resources
    ora.asm
          1        ONLINE  ONLINE       fmtest1                  Started
    ora.cluster_interconnect.haip
          1        ONLINE  ONLINE       fmtest1
    ora.crf
          1        ONLINE  ONLINE       fmtest1
    ora.crsd
          1        ONLINE  ONLINE       fmtest1

  • Report script command equivalent for @relative calculation command

    HI ,
    We have a calculation script which has a fix statement like below :
         FIX( Grade, "w/o LO", "Line Options", AtLaunch, @DESCENDANTS("470.92"), @DESCENDANTS("Price Item"), @RELATIVE("Total Region", 0) )
    We are trying to make a reportscript which gives us the format of the set of database being calculated.
    So we are tranforming the above calc script commands into equivalent report script commands. We are struck with the @Relative command.
    Can somebody tell us what is the equivalent report script command for @Relative calculation script function.
    Regards
    OKU

    There's no direct analogue, but you can use the <LINK command along with <DESCENDANTS and <LEV to get pretty close. See: http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/rwriter/link.htm
    JExport (if pre 9.3) or DATAEXPORT (if 9.3 or greater) may also be options and will in fact allow @RELATIVE to be used.
    Regards,
    Cameron Lackpour

  • Equivalent of Informix's onstat command

    Is there a equivalent of onstat command line in Informix ? onstat helps give lots of information like:
    - Session id and the sql that session is currently executing.
    - Gives the space left in tablespace
    - Threads in waiting, sleeping state
    - Information about Informix Virtual processors
    - Locks, waits, latches
    - Buffered read and write cache
    - Thread id's, session ids etc.
    It's a complete suite of functionality rolled in one onstat command line command. Is there something similar that would give me all this information ?

    I understand what you are saying and I am currently going through Oracle Concepts. However, I also like to get the input from people who have experience in using Oracle. Since I have used Informix for sometime now and have a good knowledge of Informix I was looking for something that give me similar things. That's the reason I asked about general things that any database would have in-built, as I asked in my initial post about sessions, sqls that session is executing, locks etc. Since these are general things I thought Oracle would probably have a way of showing similar information. I am not trying to compare the 2. I am actually trying to learn more about Oracle and that's why I posted this question. You could also ignore "Equivalent of Informix" where it appears. I am just trying to ask generic questions.

  • Tree command in terminal

    hi there... I wonder is there any command in Mac OS X' terminal that is equivalent to "tree" command in linux? thanx

    You could install fink and install tree-
    fink info tree
    Information about 6332 packages read in 2 seconds.
    tree-1.5.1.1-1: Recursive directory listing program
    Web site: http://mama.indstate.edu/users/ice/tree/
    Maintainer: Max Horn <[email protected]>
    or I suppose you could compile it from source.

  • Assessing Command 'Analyze Source Files' via Command Line when running TestSTand Deployment Utility

    Our Software Configuration Manager is running the TestStand Command Line Deployment Build Tool (Ref: https://decibel.ni.com/content/docs/DOC-38947).
            When he builds the application,  the code will not be at the same location it was in development. 
    If you are Manually running the TestStand Deployment Utility, This is not a problem because everything is relative in the workspace.   Simply go to the Distributed Files Tab (of TestSTand Deployment Utility) and hit the, "Analyze Source Files" button.  This finds the required files and apparently creates an updated hard path to be used during the build (probably in the *.tsd).
    PROBLEM:  We auto-run the Command Line Deployment Build Tool (Command Line), and we do not have access to the, 'Analyze Source Files' command.
                As a result, our build consist of many warnings and the output is missing many files (the location of the files have not been updated).
    If we could access the 'Analyze Source Files' Command via command line, that would fix the issue. 
    FYI:  We use an automatic builder called Quick Build as our builder.
    Attachments:
    TestSTand Deployment Utility-Distributed Files Tab.PNG ‏76 KB

    Unfortunately it looks like Analyze Source Files does not have a command equivalent for the command line based on this article and attached PDF:
    https://decibel.ni.com/content/docs/DOC-38947
    That may be a good post for the TestStand Idea Exchange for consideration in future versions of TestStand.
    Michael K.

  • Netsh commands in Windows SDK?

    My PC has two network adapter cards and I need to implement a test that disables each of them individually. Is there a way to do the equivalent of these commands...
    netsh interface show interface
    netsh interface set interface "Local Area Connection" ENABLED
    ...using Windows SDK function calls?  The only other way I know would be to run the commands using system() or LaunchExecutable, dump the results to an output file, and parse the file to see the results.  I'd rather be able to do it a neater way.

    Hi richferrara,
    You may get some more feedback on the Windows API functions by posting in the Microsoft Developer Network forums. There appears to be an Enable/Disable network card forum on the MSDN that describes several solutions to trying to implement this action.
    In addition, on StackOverflow there is a fairly thorough discussion of trying to perform this action in a forum titled Programatically disable/enable network interface that discusses the complexities of platform specific implementations and behaviors of this functionality.
    Milan

  • MAC AIR Crashes on wake from sleep

    Dear All,
    I have a user's Mac Air exhibiting the ubiquitous 'wake from sleep' issue that seems to have reared its head at every OS since 10.2, increasingly occurring with or without various apps running at time of sleep.
    Upon tapping space bar after a night's sleep, we get a login screen with sometimes the desktop background, sometimes black, but always with the login panel available but tantalisingly NO blinking cursor or ability to enter password into the box for logging in.
    Solution even after 20-40 mins (user is a patient person :-) is to press and hold the power button.
    Syslog examination upon reboot shows nothing at all for the corresponding time period, just the info pertaining to the hard reboot.
    ...This last fact makes me think it is below the OS level and to do with the SSD power management / SMC / firmware relevant to both the above - if I am correct, after a couple of hours sleeping, as the laptop considers it is now in deep sleep, the contents of RAM get written to the SSD.
    So, upon wake up calls from peripherals or built in mouse/trackpad, IF it cannot load the data written to the (still sleeping??) SSD back into RAM, then of course logging in will present a problem ?
    I'd love to finally get to understand this completely, especially as it has occurred with all recent versions of the MAC OS, and on pretty much all hardware (acc to google).
    Like many of us over the years, with previous OS versions' wake-from-sleep issues I have just taken the varying anecdotal advice (run /sbin/fsck/ -f/y, or fix permissions, or reset PRAM / SMC / trash windowserver prefs / apply combo update etc etc etc, turn around three times and kiss a back issue of Mac User magazine) and moved on...
    .... this time, with yet another OS version, this annoyingly prevalent bug undermines my enthusiasm for continuing with Apple (I rely heavily on various remote access apps and having a non-local machine not wake up for me could be be a huge issue).
    Anyone delved deep into this one and come back with an answer ?
    Currently I am toying with using terminal to remove the hibernation aspect of sleep ..
    Show settings:
      pmset -g
    Change:
      sudo pmset -a autopoweroff 0
    or, change aspects of it.
    I am distressed though that the famously user friendly (and my personal favourite) OS has me resorting to its equivalent of the command line just to get a user's laptop to reliably wake from sleep - it's 2014 and this should have been sorted soooo many moons ago.
    Thanks for reading,
    Andy
    OS - 10.8.5
    Hardware Overview:
      Model Name:          MacBook Air
      Model Identifier:          MacBookAir6,1
      Processor Name:          Intel Core i5
      Processor Speed:          1.3 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache (per Core):          256 KB
      L3 Cache:          3 MB
      Memory:          8 GB
      Boot ROM Version:          MBA61.0099.B04
      SMC Version (system):          2.12f135
      Serial Number (system):          C02KW3TVF5YW
      Hardware UUID:          45D6FB7A-2895-5F66-B7CD-24559A348F35
    contents of SysLog - NB issue occurred between 7:30am and 7:55am - NOTE THERE ARE NO LOG ENTRIES FOR THIS TIME PERIOD
    [log contents included purely to show this and also to allow examination of what is happening on the forced reboot]
    Apr 22 00:56:02 Rowlys-MacBook-Air newsyslog[1352]: logfile turned over
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: Wake reason: RTC (Alarm)
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: RTC: Maintenance 2014/4/21 23:56:02, sleep 2014/4/21 23:02:28
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: 26722.405816: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: Previous Sleep Cause: 5
    Apr 22 00:56:02 Rowlys-MacBook-Air.local hidd[64]: MultitouchHID: device bootloaded
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: TBT W (2): 0x0100 [x]
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 00:56:02 Rowlys-MacBook-Air kernel[0]: Graphics suppressed 680 ms
    Apr 22 00:56:03 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 00:56:03 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0-:192.168.0.7) DNS- Proxy- SMB
    Apr 22 00:56:04 Rowlys-MacBook-Air kernel[0]: 26724.468476: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 00:56:04 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 00:56:04 Rowlys-MacBook-Air kernel[0]: AirPort: Link Up on en0
    Apr 22 00:56:04 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 00:56:04 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 00:56:04 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 00:56:04 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0+:192.168.0.7) DNS+ Proxy+ SMB
    Apr 22 00:56:04 Rowlys-MacBook-Air.local UserEventAgent[11]: Captive: en0: Not probing 'Rowly's Wi-Fi Network 5GHz' (protected network)
    Apr 22 00:56:04 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0!:192.168.0.7) DNS Proxy SMB
    Apr 22 00:56:04 Rowlys-MacBook-Air.local airportd[1332]: _doAutoJoin: Already associated to “Rowly's Wi-Fi Network 5GHz”. Bailing on auto-join.
    Apr 22 00:56:13 --- last message repeated 1 time ---
    Apr 22 00:56:13 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0-:192.168.0.7) DNS- Proxy- SMB
    Apr 22 00:56:48 Rowlys-MacBook-Air kernel[0]: 26767.934267: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 00:56:48 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 00:56:48 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 00:56:48 Rowlys-MacBook-Air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 00:56:48 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 00:56:48 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 00:57:04 Rowlys-MacBook-Air.local mDNSResponder[34]: ActivateLocalProxy: No service for interface lo0
    Apr 22 00:57:09 Rowlys-MacBook-Air.local configd[17]: WoW sleep notification timing out on en0
    Apr 22 00:57:14 Rowlys-MacBook-Air kernel[0]: nd6_na_input: duplicate IP6 address fe80:0004::8638:35ff:fe4f:1b6e
    Apr 22 00:57:14 Rowlys-MacBook-Air.local mDNSResponder[34]: Failed to register with SPS, now sending goodbyes
    Apr 22 00:57:14 Rowlys-MacBook-Air kernel[0]: 26794.578588: AirPort_Brcm43xx::powerChange: System Sleep
    Apr 22 00:57:14 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 00:57:16 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 00:57:16 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 00:57:16 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 01:57:04 Rowlys-MacBook-Air.local hidd[64]: MultitouchHID: device bootloaded
    Apr 22 00:57:16 Rowlys-MacBook-Air kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 3
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: Wake reason: RTC (Alarm)
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: RTC: SleepService 2014/4/22 00:57:04, sleep 2014/4/21 23:57:16
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: 26796.608175: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: Previous Sleep Cause: 5
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: TBT W (2): 0x0100 [x]
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 01:57:04 Rowlys-MacBook-Air kernel[0]: Graphics suppressed 676 ms
    Apr 22 01:57:05 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 01:57:05 Rowlys-MacBook-Air kernel[0]: 26798.502077: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 01:57:05 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 01:57:05 Rowlys-MacBook-Air kernel[0]: AirPort: Link Up on en0
    Apr 22 01:57:05 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 01:57:05 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 01:57:06 Rowlys-MacBook-Air.local airportd[1363]: _doAutoJoin: Already associated to “Rowly's Wi-Fi Network 5GHz”. Bailing on auto-join.
    Apr 22 01:57:06 --- last message repeated 1 time ---
    Apr 22 01:57:06 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 01:57:20 Rowlys-MacBook-Air kernel[0]: nd6_na_input: duplicate IP6 address fe80:0004::8638:35ff:fe4f:1b6e
    Apr 22 01:57:22 --- last message repeated 1 time ---
    Apr 22 01:57:22 Rowlys-MacBook-Air.local configd[17]: subnet_route: write routing socket failed, Network is unreachable
    Apr 22 01:57:24 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0+:169.254.201.44) DNS* Proxy+ SMB
    Apr 22 01:57:24 Rowlys-MacBook-Air.local UserEventAgent[11]: Captive: en0: Not probing 'Rowly's Wi-Fi Network 5GHz' (protected network)
    Apr 22 01:57:24 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0:169.254.201.44) DNS Proxy SMB
    Apr 22 01:57:26 rowlys-macbook-air.local configd[17]: setting hostname to "rowlys-macbook-air.local"
    Apr 22 01:57:29 rowlys-macbook-air.local timezoned[1374]: bootstrap_look_up failed (44e)
    Apr 22 01:57:29 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 4
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 0
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 4, items, fQueryRetries, 1, fLastRetryTimestamp, 0.0
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 4
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 1
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 4, items, fQueryRetries, 2, fLastRetryTimestamp, 419821051.7
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 4
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 2
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 2
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 4, items, fQueryRetries, 3, fLastRetryTimestamp, 419821051.7
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 4
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 3
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 4, items, fQueryRetries, 4, fLastRetryTimestamp, 419821051.8
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 4
    Apr 22 01:57:31 rowlys-macbook-air.local timezoned[1374]: NOTICE: no network signatures were found
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 4
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 4, items, fQueryRetries, 5, fLastRetryTimestamp, 419821051.8
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 4
    Apr 22 01:57:31 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 5
    Apr 22 01:57:33 --- last message repeated 1 time ---
    Apr 22 01:57:33 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 0
    Apr 22 01:58:10 rowlys-macbook-air.local configd[17]: WoW sleep notification timing out on en0
    Apr 22 01:58:15 rowlys-macbook-air.local mDNSResponder[34]: Failed to register with SPS, now sending goodbyes
    Apr 22 01:58:15 rowlys-macbook-air kernel[0]: 26868.014948: AirPort_Brcm43xx::powerChange: System Sleep
    Apr 22 01:58:15 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 01:58:16 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 01:58:17 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 02:58:05 rowlys-macbook-air.local hidd[64]: MultitouchHID: device bootloaded
    Apr 22 01:58:17 rowlys-macbook-air kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 2
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: Wake reason: RTC (Alarm)
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: RTC: SleepService 2014/4/22 01:58:05, sleep 2014/4/22 00:58:17
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: 26870.056568: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: Previous Sleep Cause: 5
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: TBT W (2): 0x0100 [x]
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    Apr 22 02:58:05 rowlys-macbook-air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 02:58:06 rowlys-macbook-air com.apple.launchd[1] (com.apple.softwareupdatecheck.periodic): Throttling respawn: Will start in 10 seconds
    Apr 22 02:58:06 rowlys-macbook-air kernel[0]: Graphics suppressed 676 ms
    Apr 22 02:58:06 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 02:58:06 rowlys-macbook-air.local configd[17]: network changed: v4(en0-:169.254.201.44) DNS* Proxy- SMB
    Apr 22 02:58:06 Rowlys-MacBook-Air.local configd[17]: setting hostname to "Rowlys-MacBook-Air.local"
    Apr 22 02:58:06 Rowlys-MacBook-Air kernel[0]: 26871.977583: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 02:58:06 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 02:58:06 Rowlys-MacBook-Air kernel[0]: AirPort: Link Up on en0
    Apr 22 02:58:06 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 02:58:06 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 02:58:07 Rowlys-MacBook-Air.local airportd[1380]: _doAutoJoin: Already associated to “Rowly's Wi-Fi Network 5GHz”. Bailing on auto-join.
    Apr 22 02:58:07 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 02:58:21 Rowlys-MacBook-Air kernel[0]: 26886.155302: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 02:58:21 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 02:58:21 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 02:58:21 Rowlys-MacBook-Air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 02:58:21 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 02:58:21 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 02:58:23 Rowlys-MacBook-Air.local configd[17]: subnet_route: write routing socket failed, Network is unreachable
    Apr 22 02:58:25 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0+:169.254.111.83) DNS* Proxy+ SMB
    Apr 22 02:58:25 Rowlys-MacBook-Air.local UserEventAgent[11]: Captive: en0: Not probing 'Rowly's Wi-Fi Network 5GHz' (protected network)
    Apr 22 02:58:25 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0:169.254.111.83) DNS Proxy SMB
    Apr 22 02:58:26 Rowlys-MacBook-Air kernel[0]: 26891.034870: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 02:58:26 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 02:58:26 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 02:58:26 Rowlys-MacBook-Air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 02:58:26 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 02:58:26 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 02:58:27 rowlys-macbook-air.local configd[17]: setting hostname to "rowlys-macbook-air.local"
    Apr 22 02:58:30 rowlys-macbook-air.local timezoned[1393]: bootstrap_look_up failed (44e)
    Apr 22 02:58:30 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 2
    Apr 22 02:58:30 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 0
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 1, fLastRetryTimestamp, 419821051.9
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 02:58:32 rowlys-macbook-air.local timezoned[1393]: NOTICE: no network signatures were found
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 0
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 1
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 2, fLastRetryTimestamp, 419824712.5
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 2
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 3, fLastRetryTimestamp, 419824712.5
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 3
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 4, fLastRetryTimestamp, 419824712.6
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 4
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 5, fLastRetryTimestamp, 419824712.6
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 02:58:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 5
    Apr 22 02:59:01 rowlys-macbook-air kernel[0]: 26925.987198: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 02:59:01 rowlys-macbook-air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 02:59:01 rowlys-macbook-air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 02:59:01 rowlys-macbook-air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 02:59:01 rowlys-macbook-air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 02:59:01 rowlys-macbook-air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 02:59:11 rowlys-macbook-air.local configd[17]: WoW sleep notification timing out on en0
    Apr 22 02:59:15 rowlys-macbook-air kernel[0]: en0 duplicate IP address 169.254.111.83 sent from address 2c:b4:3a:19:b2:35
    Apr 22 02:59:15 rowlys-macbook-air kernel[0]: nd6_na_input: duplicate IP6 address fe80:0004::8638:35ff:fe4f:1b6e
    Apr 22 02:59:15 rowlys-macbook-air.local configd[17]: network changed: v4(en0-:169.254.111.83) DNS* Proxy- SMB
    Apr 22 02:59:15 Rowlys-MacBook-Air.local configd[17]: setting hostname to "Rowlys-MacBook-Air.local"
    Apr 22 02:59:16 Rowlys-MacBook-Air.local mDNSResponder[34]: Failed to register with SPS, now sending goodbyes
    Apr 22 02:59:16 Rowlys-MacBook-Air kernel[0]: 26941.172784: AirPort_Brcm43xx::powerChange: System Sleep
    Apr 22 02:59:16 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 02:59:17 Rowlys-MacBook-Air.local configd[17]: arp_client_transmit(en0) failed, Network is down (50)
    Apr 22 02:59:17 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 02:59:18 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 03:59:06 Rowlys-MacBook-Air.local hidd[64]: MultitouchHID: device bootloaded
    Apr 22 02:59:18 Rowlys-MacBook-Air kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 1
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: Wake reason: RTC (Alarm)
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: RTC: SleepService 2014/4/22 02:59:06, sleep 2014/4/22 01:59:18
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: 26943.210562: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: Previous Sleep Cause: 5
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: TBT W (2): 0x0100 [x]
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 03:59:06 Rowlys-MacBook-Air kernel[0]: Graphics suppressed 680 ms
    Apr 22 03:59:07 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 03:59:07 Rowlys-MacBook-Air kernel[0]: 26945.095405: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 03:59:07 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 03:59:07 Rowlys-MacBook-Air kernel[0]: AirPort: Link Up on en0
    Apr 22 03:59:07 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 03:59:07 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 03:59:08 Rowlys-MacBook-Air.local airportd[1380]: _doAutoJoin: Already associated to “Rowly's Wi-Fi Network 5GHz”. Bailing on auto-join.
    Apr 22 03:59:08 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 03:59:25 Rowlys-MacBook-Air.local configd[17]: subnet_route: write routing socket failed, Network is unreachable
    Apr 22 03:59:26 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0+:169.254.69.156) DNS* Proxy+ SMB
    Apr 22 03:59:26 Rowlys-MacBook-Air.local UserEventAgent[11]: Captive: en0: Not probing 'Rowly's Wi-Fi Network 5GHz' (protected network)
    Apr 22 03:59:26 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0:169.254.69.156) DNS Proxy SMB
    Apr 22 03:59:29 rowlys-macbook-air.local configd[17]: setting hostname to "rowlys-macbook-air.local"
    Apr 22 03:59:31 rowlys-macbook-air.local timezoned[1474]: bootstrap_look_up failed (44e)
    Apr 22 03:59:32 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 2
    Apr 22 03:59:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 4
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 0
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 1, fLastRetryTimestamp, 419824712.7
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 03:59:34 rowlys-macbook-air.local timezoned[1474]: NOTICE: no network signatures were found
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 0
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 1
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 2, fLastRetryTimestamp, 419828374.3
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 2
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 3, fLastRetryTimestamp, 419828374.3
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 3
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 4, fLastRetryTimestamp, 419828374.4
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 4
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 5, fLastRetryTimestamp, 419828374.4
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 03:59:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 5
    Apr 22 04:00:12 rowlys-macbook-air.local configd[17]: WoW sleep notification timing out on en0
    Apr 22 04:00:12 rowlys-macbook-air kernel[0]: 27009.327749: AirPort_Brcm43xx::powerChange: System Sleep
    Apr 22 04:00:12 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 04:00:13 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 04:00:13 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 04:00:14 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 04:00:14 rowlys-macbook-air kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 1
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: Wake reason: RTC (Alarm)
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: RTC: SleepService 2014/4/22 04:00:07, sleep 2014/4/22 03:00:14
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: 27011.358005: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: Previous Sleep Cause: 5
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    Apr 22 05:00:07 rowlys-macbook-air.local hidd[64]: MultitouchHID: device bootloaded
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: TBT W (2): 0x0100 [x]
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    Apr 22 05:00:07 rowlys-macbook-air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 05:00:08 rowlys-macbook-air kernel[0]: Graphics suppressed 685 ms
    Apr 22 05:00:08 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 05:00:08 rowlys-macbook-air.local configd[17]: network changed: v4(en0-:169.254.69.156) DNS* Proxy- SMB
    Apr 22 05:00:08 Rowlys-MacBook-Air.local configd[17]: setting hostname to "Rowlys-MacBook-Air.local"
    Apr 22 05:00:08 Rowlys-MacBook-Air kernel[0]: 27013.268794: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 05:00:08 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 05:00:08 Rowlys-MacBook-Air kernel[0]: AirPort: Link Up on en0
    Apr 22 05:00:08 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 05:00:08 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 05:00:09 Rowlys-MacBook-Air.local airportd[1478]: _doAutoJoin: Already associated to “Rowly's Wi-Fi Network 5GHz”. Bailing on auto-join.
    Apr 22 05:00:09 --- last message repeated 1 time ---
    Apr 22 05:00:09 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 05:00:25 Rowlys-MacBook-Air.local configd[17]: subnet_route: write routing socket failed, Network is unreachable
    Apr 22 05:00:26 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0+:169.254.33.44) DNS* Proxy+ SMB
    Apr 22 05:00:26 Rowlys-MacBook-Air.local UserEventAgent[11]: Captive: en0: Not probing 'Rowly's Wi-Fi Network 5GHz' (protected network)
    Apr 22 05:00:26 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0:169.254.33.44) DNS Proxy SMB
    Apr 22 05:00:29 rowlys-macbook-air.local configd[17]: setting hostname to "rowlys-macbook-air.local"
    Apr 22 05:00:31 rowlys-macbook-air.local timezoned[1490]: bootstrap_look_up failed (44e)
    Apr 22 05:00:31 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 2
    Apr 22 05:00:32 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 5
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 0
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 1, fLastRetryTimestamp, 419828374.5
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 05:00:34 rowlys-macbook-air.local timezoned[1490]: NOTICE: no network signatures were found
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 0
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 1
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 2, fLastRetryTimestamp, 419832034.0
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 2
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 3, fLastRetryTimestamp, 419832034.1
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 3
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 4, fLastRetryTimestamp, 419832034.1
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 4
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 5, fLastRetryTimestamp, 419832034.2
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 05:00:34 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 5
    Apr 22 05:01:13 rowlys-macbook-air.local configd[17]: WoW sleep notification timing out on en0
    Apr 22 05:01:15 rowlys-macbook-air kernel[0]: nd6_na_input: duplicate IP6 address fe80:0004::8638:35ff:fe4f:1b6e
    Apr 22 05:01:18 --- last message repeated 2 times ---
    Apr 22 05:01:18 rowlys-macbook-air kernel[0]: en0 duplicate IP address 169.254.33.44 sent from address 2c:b4:3a:19:b2:35
    Apr 22 05:01:18 rowlys-macbook-air.local configd[17]: network changed: v4(en0-:169.254.33.44) DNS* Proxy- SMB
    Apr 22 05:01:18 Rowlys-MacBook-Air.local configd[17]: setting hostname to "Rowlys-MacBook-Air.local"
    Apr 22 05:01:18 Rowlys-MacBook-Air.local mDNSResponder[34]: Failed to register with SPS, now sending goodbyes
    Apr 22 05:01:18 Rowlys-MacBook-Air kernel[0]: 27082.480494: AirPort_Brcm43xx::powerChange: System Sleep
    Apr 22 05:01:18 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 05:01:19 Rowlys-MacBook-Air.local configd[17]: arp_client_transmit(en0) failed, Network is down (50)
    Apr 22 05:01:19 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 05:01:20 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 05:01:20 Rowlys-MacBook-Air kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 2
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: Wake reason: RTC (Alarm)
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: RTC: SleepService 2014/4/22 05:01:08, sleep 2014/4/22 04:01:20
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: 27084.491705: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: Previous Sleep Cause: 5
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    Apr 22 06:01:08 Rowlys-MacBook-Air.local hidd[64]: MultitouchHID: device bootloaded
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: TBT W (2): 0x0100 [x]
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 06:01:08 Rowlys-MacBook-Air kernel[0]: Graphics suppressed 678 ms
    Apr 22 06:01:09 Rowlys-MacBook-Air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 06:01:09 Rowlys-MacBook-Air kernel[0]: 27086.381845: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 06:01:09 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 06:01:09 Rowlys-MacBook-Air kernel[0]: AirPort: Link Up on en0
    Apr 22 06:01:09 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 06:01:09 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 06:01:10 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 06:01:10 Rowlys-MacBook-Air.local airportd[1498]: _doAutoJoin: Already associated to “Rowly's Wi-Fi Network 5GHz”. Bailing on auto-join.
    Apr 22 06:01:26 --- last message repeated 1 time ---
    Apr 22 06:01:26 Rowlys-MacBook-Air.local configd[17]: subnet_route: write routing socket failed, Network is unreachable
    Apr 22 06:01:28 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0+:169.254.125.200) DNS* Proxy+ SMB
    Apr 22 06:01:28 Rowlys-MacBook-Air.local UserEventAgent[11]: Captive: en0: Not probing 'Rowly's Wi-Fi Network 5GHz' (protected network)
    Apr 22 06:01:28 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0:169.254.125.200) DNS Proxy SMB
    Apr 22 06:01:30 rowlys-macbook-air.local configd[17]: setting hostname to "rowlys-macbook-air.local"
    Apr 22 06:01:33 rowlys-macbook-air.local timezoned[1507]: bootstrap_look_up failed (44e)
    Apr 22 06:01:33 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 2
    Apr 22 06:01:33 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 5
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 0
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 1, fLastRetryTimestamp, 419832034.2
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 06:01:35 rowlys-macbook-air.local timezoned[1507]: NOTICE: no network signatures were found
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,Location icon should now be in state 0
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 1
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 2, fLastRetryTimestamp, 419835695.6
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 2
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 3, fLastRetryTimestamp, 419835695.7
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 3
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 4, fLastRetryTimestamp, 419835695.7
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 4
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: requery, 0, 0, 0, 6, items, fQueryRetries, 5, fLastRetryTimestamp, 419835695.8
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: query, cells, 0, 0, 0, wifis, 6
    Apr 22 06:01:35 rowlys-macbook-air.local locationd[60]: NOTICE,NETWORK: no response from server, reachability, 2, queryRetries, 5
    Apr 22 06:01:44 rowlys-macbook-air kernel[0]: 27119.827185: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 06:01:44 rowlys-macbook-air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 06:01:44 rowlys-macbook-air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 06:01:44 rowlys-macbook-air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 06:01:44 rowlys-macbook-air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 06:01:44 rowlys-macbook-air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 06:01:57 rowlys-macbook-air kernel[0]: 27132.920058: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 06:01:57 rowlys-macbook-air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 06:01:57 rowlys-macbook-air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 06:01:57 rowlys-macbook-air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 06:01:57 rowlys-macbook-air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 06:01:57 rowlys-macbook-air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 06:02:02 rowlys-macbook-air kernel[0]: 27138.227816: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 06:02:02 rowlys-macbook-air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 06:02:02 rowlys-macbook-air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 06:02:02 rowlys-macbook-air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 06:02:02 rowlys-macbook-air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 06:02:02 rowlys-macbook-air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 06:02:14 rowlys-macbook-air.local configd[17]: WoW sleep notification timing out on en0
    Apr 22 06:02:19 rowlys-macbook-air.local mDNSResponder[34]: Failed to register with SPS, now sending goodbyes
    Apr 22 06:02:19 rowlys-macbook-air kernel[0]: 27155.626536: AirPort_Brcm43xx::powerChange: System Sleep
    Apr 22 06:02:19 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 06:02:20 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 06:02:20 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 06:02:21 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 06:02:21 rowlys-macbook-air kernel[0]: AppleThunderboltNHIType2::waitForOk2Go2Sx - retries = 2
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: Wake reason: EC.LidOpen (User)
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000320
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: 27157.662810: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: Previous Sleep Cause: 5
    Apr 22 07:00:34 rowlys-macbook-air.local hidd[64]: MultitouchHID: device bootloaded
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: IOThunderboltSwitch<0xffffff8019e51400>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: TBT W (2): 0x0100 [x]
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: wlEvent: en0 en0 Link DOWN virtIf = 0
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    Apr 22 07:00:34 rowlys-macbook-air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7fc8c412e660(2004), shield 0x7fc8c36825f0(2001), lock state 3
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: Created shield window 0x5b1 for display 0x003f003d
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7fc8c412e660(2002), shield 0x7fc8c36825f0(2001), lock state 3
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: Created shield window 0x5b2 for display 0x003f003e
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7fc8c412e660(2002), shield 0x7fc8c36825f0(2001), lock state 3
    Apr 22 07:00:34 rowlys-macbook-air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Apr 22 07:00:34 rowlys-macbook-air.local loginwindow[59]: resume called when there was already a timer
    Apr 22 07:00:35 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    Apr 22 07:00:35 rowlys-macbook-air kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000300
    Apr 22 07:00:35 rowlys-macbook-air kernel[0]: AppleCamIn::wakeEventHandlerThread
    Apr 22 07:00:35 rowlys-macbook-air.local configd[17]: network changed: v4(en0-:169.254.125.200) DNS* Proxy- SMB
    Apr 22 07:00:35 Rowlys-MacBook-Air.local configd[17]: setting hostname to "Rowlys-MacBook-Air.local"
    Apr 22 07:00:36 Rowlys-MacBook-Air kernel[0]: 27159.674882: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 07:00:36 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 07:00:36 Rowlys-MacBook-Air kernel[0]: AirPort: Link Up on en0
    Apr 22 07:00:36 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 07:00:36 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 07:00:36 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 07:00:36 Rowlys-MacBook-Air.local airportd[1508]: _doAutoJoin: Already associated to “Rowly's Wi-Fi Network 5GHz”. Bailing on auto-join.
    Apr 22 07:00:37 --- last message repeated 2 times ---
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Got user: rowlyweller
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Got ruser: rowlyweller
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Got service: screensaver
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in od_principal_for_user(): No authentication authority returned
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in od_principal_for_user(): failed: 7
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Done cleanup3
    Apr 22 07:00:37 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in od_record_check_pwpolicy(): retval: 0
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Establishing credentials
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Got user: rowlyweller
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Context initialised
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Got euid, egid: 501 20
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Done getpwnam()
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Done setegid() & seteuid()
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): pam_sm_setcred: krb5 user rowlyweller doesn't have a principal
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Done cleanup3
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Done seteuid() & setegid()
    Apr 22 07:00:38 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_setcred(): Done cleanup4
    Apr 22 07:00:40 Rowlys-MacBook-Air kernel[0]: AppleCamIn::handleWakeEvent_gated
    Apr 22 07:00:40 Rowlys-MacBook-Air kernel[0]: AppleCamIn::acpiControlS2ChipPower - powerState=0, status = 0x0, result_value = 0x0
    Apr 22 07:00:40 Rowlys-MacBook-Air.local Safari[835]: CGContextClipToRect: invalid context 0x0
    Apr 22 07:00:40 Rowlys-MacBook-Air.local CrashPlan menu bar[268]: MasterControlProgram connection attempt made.
    Apr 22 07:00:40 Rowlys-MacBook-Air.local CrashPlan menu bar[268]: MasterControlProgram ** WE ARE CONNECTED **
    Apr 22 07:00:41 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0+:192.168.0.7) DNS+ Proxy+ SMB
    Apr 22 07:00:41 Rowlys-MacBook-Air.local netbiosd[55]: network address or mask changed for en0
    Apr 22 07:00:41 Rowlys-MacBook-Air.local UserEventAgent[11]: Captive: en0: Not probing 'Rowly's Wi-Fi Network 5GHz' (protected network)
    Apr 22 07:00:41 Rowlys-MacBook-Air.local configd[17]: network changed: v4(en0!:192.168.0.7) DNS Proxy SMB
    Apr 22 07:00:43 Rowlys-MacBook-Air.local apsd[75]: <APSConnectionNotificationQueue: 0x7f820ba52330>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=501-env=production
    Apr 22 07:00:46 --- last message repeated 2 times ---
    Apr 22 07:00:46 Rowlys-MacBook-Air.local ReceiptInstaller[1525]: Connection with distnoted server was invalidated
    Apr 22 07:00:58 Rowlys-MacBook-Air.local coreaudiod[175]: Disabled automatic stack shots because audio IO is active
    Apr 22 07:00:59 Rowlys-MacBook-Air.local coreaudiod[175]: Enabled automatic stack shots because audio IO is inactive
    Apr 22 07:02:41 Rowlys-MacBook-Air.local Safari[835]: CGContextClipToRect: invalid context 0x0
    Apr 22 07:05:52 Rowlys-MacBook-Air.local CrashPlan menu bar[268]: CPMessageHandler Asked to change 'isConnected' status for GUID 613110729251225601, but I couldn't find any computer with that GUID.
    Apr 22 07:07:31 Rowlys-MacBook-Air.local Safari[835]: CGContextClipToRect: invalid context 0x0
    Apr 22 07:08:11 --- last message repeated 1 time ---
    Apr 22 07:08:38 Rowlys-MacBook-Air.local CrashPlan menu bar[268]: CPMessageHandler Asked to change 'isConnected' status for GUID 596881734000181249, but I couldn't find any computer with that GUID.
    Apr 22 07:08:40 Rowlys-MacBook-Air.local CrashPlan menu bar[268]: CPMessageHandler Asked to change 'isConnected' status for GUID 4200, but I couldn't find any computer with that GUID.
    Apr 22 07:08:54 Rowlys-MacBook-Air kernel[0]: 27657.325405: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 07:08:54 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 07:08:54 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 07:08:54 Rowlys-MacBook-Air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 07:08:54 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 07:08:54 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 07:11:13 Rowlys-MacBook-Air.local WindowServer[98]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    Apr 22 07:11:13 Rowlys-MacBook-Air.local loginwindow[59]: find_shared_window: WID -1
    Apr 22 07:11:13 Rowlys-MacBook-Air.local loginwindow[59]: CGSGetWindowTags: Invalid window 0xffffffff
    Apr 22 07:11:13 Rowlys-MacBook-Air.local loginwindow[59]: find_shared_window: WID -1
    Apr 22 07:11:13 Rowlys-MacBook-Air.local loginwindow[59]: CGSSetWindowTags: Invalid window 0xffffffff
    Apr 22 07:11:13 Rowlys-MacBook-Air.local loginwindow[59]: ERROR | -[LWBuiltInScreenLockAuthLion preLoad] | guestEnabled is true, but guest mode is not set to a usable value
    Apr 22 07:11:13 Rowlys-MacBook-Air.local WindowServer[98]: Created shield window 0x5c4 for display 0x04280500
    Apr 22 07:11:13 Rowlys-MacBook-Air.local WindowServer[98]: device_generate_desktop_screenshot: authw 0x7fc8c347c710(2000), shield 0x7fc8c3483da0(2001)
    Apr 22 07:11:13 Rowlys-MacBook-Air.local WindowServer[98]: device_generate_lock_screen_screenshot: authw 0x7fc8c347c710(2000), shield 0x7fc8c3483da0(2001)
    Apr 22 07:22:20 Rowlys-MacBook-Air kernel[0]: 28463.747741: MacAuthEvent en0   Auth result for: b8:8d:12:66:a2:74  MAC AUTH succeeded
    Apr 22 07:22:20 Rowlys-MacBook-Air kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Apr 22 07:22:20 Rowlys-MacBook-Air kernel[0]: AirPort: RSN handshake complete on en0
    Apr 22 07:22:20 Rowlys-MacBook-Air kernel[0]: wl0: Roamed or switched channel, reason #2, bssid b8:8d:12:66:a2:74
    Apr 22 07:22:20 Rowlys-MacBook-Air kernel[0]: en0: BSSID changed to b8:8d:12:66:a2:74
    Apr 22 07:22:20 Rowlys-MacBook-Air kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Apr 22 07:24:29 Rowlys-MacBook-Air.local coreaudiod[175]: Disabled automatic stack shots because audio IO is active
    Apr 22 07:24:31 Rowlys-MacBook-Air.local coreaudiod[175]: Enabled automatic stack shots because audio IO is inactive
    Apr 22 07:28:03 Rowlys-MacBook-Air.local coreaudiod[175]: Disabled automatic stack shots because audio IO is active
    Apr 22 07:28:04 Rowlys-MacBook-Air.local coreaudiod[175]: Enabled automatic stack shots because audio IO is inactive
    Apr 22 07:30:00 Rowlys-MacBook-Air.local coreaudiod[175]: Disabled automatic stack shots because audio IO is active
    Apr 22 07:30:07 Rowlys-MacBook-Air.local coreaudiod[175]: Enabled automatic stack shots because audio IO is inactive
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7fc8c347c710(2000), shield 0x7fc8c3483da0(2001), lock state 3
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: Created shield window 0x5c8 for display 0x003f003d
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7fc8c347c710(2002), shield 0x7fc8c3483da0(2001), lock state 3
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: Created shield window 0x5c9 for display 0x003f003e
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7fc8c347c710(2002), shield 0x7fc8c3483da0(2001), lock state 3
    Apr 22 07:30:40 Rowlys-MacBook-Air.local WindowServer[98]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Apr 22 07:30:41 Rowlys-MacBook-Air.local SubmitDiagInfo[1561]: Launched to submit Diagnostics and Usage
    Apr 22 07:30:41 Rowlys-MacBook-Air.local SubmitDiagInfo[1561]: Cleaning up expired diagnostic messages database at path: /var/log/DiagnosticMessages/2014.03.23.asl
    Apr 22 07:30:41 Rowlys-MacBook-Air.local SubmitDiagInfo[1561]: Cleaning up expired diagnostic messages database at path: /var/log/DiagnosticMessages/2014.03.22.asl
    Apr 22 07:30:41 Rowlys-MacBook-Air.local com.apple.CrashReporter.ACRRDaemonPlugin[154]: Error running submission: <OS_xpc_error: <error: 0x7fff756a2b30> { count = 1, contents =
                        "XPCErrorDescription" => <string: 0x7fff756a2ab8> { length = 22, contents = "Connection interrupted" }
              }>
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Got user: rowlyweller
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Got ruser: rowlyweller
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Got service: screensaver
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in od_principal_for_user(): No authentication authority returned
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in od_principal_for_user(): failed: 7
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Done cleanup3
    Apr 22 07:30:43 Rowlys-MacBook-Air.local loginwindow[59]: in pam_sm_authenticate(): Kerberos 5 refuses you

    Perform a SMC reset, if it persists, contact Apple for appt. for in shop full diagnostic.
    SMC reset
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if its not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer. 

  • How can I configure a 802.1x in a switch 2960 with IOS 15.0.2?

    Hi,
    I'm trying to config a switch WS-C2960+24PC-L with IOS 15.0(2)SE5 and C2960-LANBASEK9-M to use 802.1x in my network but when I type the following commands the IOS doesn't recognize the interface commands and I can't complete the settings:
    Router# configure terminal
    Router(config)# dot1x system-auth-control
    Router(config)# aaa new-model
    Router(config)# aaa authentication dot1x default group radius
    Router(config)# interface fastethernet2/1
    Router(config-if)# switchport mode access
    Switch(config-if)# authentication port-control auto (or dot1x port-control auto)
    Switch(config-if)# authentication host-mode multihost
    Router(config-if)# dot1x pae authenticator
    Router(config-if)# end
    Source: http://www.cisco.com/en/US/docs/ios-xml/ios/sec_usr_8021x/configuration/15-2mt/config-ieee-802x-pba.html#GUID-C11588CB-31B6-4CD9-9E74-CF2199FB1807
    I've used the same commands in other switch with IOS 12.x and I don't have any problem to complete the settings so.... somebody know if:
    * Should I use others commands to activate this feature in this IOS?
    * Do I need to use other IOS?
    Thanks in advance,

    The authentication manager commands in Cisco IOS Release 12.2(50)SE or later
    The equivalent 802.1x commands in Cisco IOS Release 12.2(46)SE and earlier
    Description
    authentication control-direction { both | in}
    dot1x control-direction { both | in}
    Enable 802.1x authentication with the wake-on-LAN (WoL) feature, and configure the port control as unidirectional or bidirectional.
    authentication event
    dot1x auth-fail vlan
    dot1x critical (interface configuration)
    

dot1x guest-vlan6
    Enable the restricted VLAN on a port.
    Enable the inaccessible-authentication-bypass feature.
    Specify an active VLAN as an 802.1x guest VLAN.
    authentication fallback fallback-profile
    dot1x fallback fallback-profile
    Configure a port to use web authentication as a fallback method for clients that do not support 802.1x authentication.
    authentication host-mode [ multi-auth | multi-domain | multi-host | single-host]
    dot1x host-mode { single-host | multi-host | multi-domain}
    Allow a single host (client) or multiple hosts on an 802.1x-authorized port.
    authentication order
    mab
    Provides the flexibility to define the order of authentication methods to be used.
    authentication periodic
    dot1x reauthentication
    Enable periodic re-authentication of the client.
    authentication port-control { auto | force-authorized | force-un authorized}
    dot1x port-control { auto | force-authorized | force-unauthorized}
    Enable manual control of the authorization state of the port.
    authentication timer
    dot1x timeout
    Set the 802.1x timers.
    authentication violation { protect | restrict | shutdown}
    dot1x violation-mode { shutdown | restrict | protect}
    Configure the violation modes that occur when a new device connects to a port or when a new device connects to a port after the maximum number of devices are connected to that port.
    show authentication
    show dot1x
    Display 802.1x statistics, administrative status, and operational status for the switch or for the specified port. authentication manager: compatibility with earlier 802.1x CLI commands
    http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst2960x/software/15-0_2_EX/security/configuration_guide/b_sec_152ex_2960-x_cg/b_sec_152ex_2960-x_cg_chapter_010000.html#concept_6275D339A9074AC0BB06F872D7A54FBB

  • I want to SPLIT A CLIP. That's all. Make one piece into two.

    I am looking for the equivalent of the 'Command-T' function in iMovie HD. This is one of the most commonly used actions in processing video, and apparently it doesn't exist. The 'Split Clip' command in iMovie 09 simply does not work for me. At all. EVER. I have yet to find an instance where it isn't grayed out. All I want to do is split a clip, and add a transition between the two.
    While I'm on my soap box, the revisions of iMovie since V.6 are without a doubt the most counter-intuitive, joy-sucking applications ever produced by Apple. iMovie made it FUN to edit video; these last two versions make it frustrating and cumbersome.
    To reiterate, I want to SPLIT A CLIP INTO TWO PIECES. If anyone here can provide instructions for doing so (as opposed to explaining why it is NOT possible), then kindly do so. Thank you.

    Trey, I seriously feel your pain. I'm editing a wedding project in IM '09 and it is literally taking me twice as long to complete the project than it would have in HD. You should be able to make splits in the event browsers, but that's too much like common sense for Apple. They completely mucked up the editing process by doing away with iMovie HD, which by the way is not working well in Snow Leopard.
    As for split, I suggest the same thing as above. Put the playhead where you want the split. Us shortcut key, ShiftCommandS. I had problems with it this morning, but it finally kicked in.
    I also had a problem when trying delete a selection of a clip. When I clicked delete, it deleted the selection plus the extracted audio of the entire clip from which I took the selection. Not sure what caused that.
    I have FCE installed, so maybe I’ll haul it out and try using it for my next project. IM '09 is a pain. I'm not even sure how it's more accessible to general users.

  • Need help in analysing the error in JasperReportIntegration Test Applicatio

    Our DBA installed Jasper Reports Integration kit Version 1.1.0.0 in our test environment. Apex version is 3.2.1.00.12. Oracle database is 11g and Apache Tomcat is 7.0.26
    I was able to bring up the Jasper Reports Integration test application. When I navigate to "Report Tester" tab, changed the JasperReportIntegration URL to the correct localhost and then cklick the "Show report (directly)" button, I got this message:
    Jun 12, 2012 11:41:58 AM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet [ReportWrapper] in context with path [JasperReportsIntegration] threw exception [Servlet execution threw an exception] with root cause
    Throwable occurred: java.lang.NoClassDefFoundError: net.sf.jasperreports.engine.util.JRStyledTextParser (initialization failure)
         at java.lang.J9VMInternals.initialize(J9VMInternals.java:140)
         at net.sf.jasperreports.engine.fill.JRBaseFiller.<init>(JRBaseFiller.java:121)
         at net.sf.jasperreports.engine.fill.JRVerticalFiller.<init>(JRVerticalFiller.java:77)
         at net.sf.jasperreports.engine.fill.JRVerticalFiller.<init>(JRVerticalFiller.java:87)
         at net.sf.jasperreports.engine.fill.JRVerticalFiller.<init>(JRVerticalFiller.java:57)
         at net.sf.jasperreports.engine.fill.JRFiller.createFiller(JRFiller.java:142)
         at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:52)
         at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:417)
         at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:247)
         at de.oc.integration.jasper.webapp.ReportWrapper.service(ReportWrapper.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:169)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:927)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)
         at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:987)
         at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:579)
         at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:307)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:897)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:919)
         at java.lang.Thread.run(Thread.java:736)
    Can anyone help me understand this error and let me know if this message is caused by installing the jasper report integration kit incorrectly?
    Thanks.
    Edited by: bratz69 on Jun 12, 2012 7:35 PM

    Hi Dietmar,
    Thanks for your reply.
    There's no jasperreports-fonts-3.7.4.jar file in the webapps/JasperReportsIntegration/WEB-INF/lib folder. The only font file available is jasperreports-fonts-4.5.0.jar. I've downloaded the 3.7.40 jar file and saved it in the same folder without deleting the 4.5.0.jar. I tried to run the Test application again and still give me the same error.
    Jun 13, 2012 3:58:26 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet [ReportWrapper] in context with path [JasperReportsIntegration] threw exception [Servlet execution threw an exception] with root cause
    Throwable occurred: java.lang.NoClassDefFoundError: net.sf.jasperreports.engine.util.JRStyledTextParser (initialization failure)
         at java.lang.J9VMInternals.initialize(J9VMInternals.java:140)
         at net.sf.jasperreports.engine.fill.JRBaseFiller.<init>(JRBaseFiller.java:121)
         at net.sf.jasperreports.engine.fill.JRVerticalFiller.<init>(JRVerticalFiller.java:77)
         at net.sf.jasperreports.engine.fill.JRVerticalFiller.<init>(JRVerticalFiller.java:87)
         at net.sf.jasperreports.engine.fill.JRVerticalFiller.<init>(JRVerticalFiller.java:57)
         at net.sf.jasperreports.engine.fill.JRFiller.createFiller(JRFiller.java:142)
         at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:52)
         at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:417)
         at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:247)
         at de.oc.integration.jasper.webapp.ReportWrapper.service(ReportWrapper.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:169)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:927)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)
         at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:987)
         at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:579)
         at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:307)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:897)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:919)
         at java.lang.Thread.run(Thread.java:736)
    I also tried the suggestion from the link provided by Nick. However, the syntax is for SUN environment and we are using IBM so I searched the equivalent of that command in IBM. Our DBA added the Java system property in the startup script by adding these 2 lines. But it errored out on the first 2 lines. I'm not sure if I do have the right syntax.
    java.version=1.4
    java.awt.headless=true
    ----- Error
    27) ./startup.sh
    ./startup.sh[25]: java.version=1.4: not found
    ./startup.sh[26]: java.awt.headless=true: not found
    Using CATALINA_BASE: /dbfupg/apache-tomcat-7.0.26
    Using CATALINA_HOME: /dbfupg/apache-tomcat-7.0.26
    Using CATALINA_TMPDIR: /dbfupg/apache-tomcat-7.0.26/temp
    Using JRE_HOME: /usr/java6/jre
    Using CLASSPATH: /dbfupg/apache-tomcat-7.0.26/bin/bootstrap.jar:/dbfupg/apache-tomcat-7.0.26/bin/tomcat-juli.jar
    ----- Start up script
    27) cat startup.sh
    #!/bin/sh
    java.version=1.4
    java.awt.headless=true
    os400=false
    case "`uname`" in
    OS400*) os400=true;;
    esac
    # resolve links - $0 may be a softlink
    PRG="$0"
    while [ -h "$PRG" ] ; do
    ls=`ls -ld "$PRG"`
    link=`expr "$ls" : '.*-> \(.*\)$'`
    if expr "$link" : '/.*' > /dev/null; then
    PRG="$link"
    else
    PRG=`dirname "$PRG"`/"$link"
    fi
    done
    PRGDIR=`dirname "$PRG"`
    EXECUTABLE=catalina.sh
    # Check that target executable exists
    if $os400; then
    # -x will Only work on the os400 if the files are:
    # 1. owned by the user
    # 2. owned by the PRIMARY group of the user
    # this will not work if the user belongs in secondary groups
    eval
    else
    if [ ! -x "$PRGDIR"/"$EXECUTABLE" ]; then
    echo "Cannot find $PRGDIR/$EXECUTABLE"
    echo "The file is absent or does not have execute permission"
    echo "This file is needed to run this program"
    exit 1
    fi
    fi
    exec "$PRGDIR"/"$EXECUTABLE" start "$@"
    BTW, Thanks for the update on the new version.
    Thanks!
    Edited by: bratz69 on Jun 13, 2012 4:48 PM

Maybe you are looking for

  • Report Level issue

    Hi, can u pls help me for the issue which i am facing now Report level Selection screen Date Date1 Date2 output total sales1 total sales in LOC total sales(before Date1) here how we can calc total sales Before Date1 against selection screen thanks, c

  • How do I print a specific sized picture.

    I'm trying to print a picture to fit in a frame size of 6 5/8 X 4 5/8. (6.625 X 4.625). The size of the picture in pixels is 416 X 288. The width is more important than the height. I've used the "constrain" feature in iPhoto, to constrain the size to

  • Flash MX 2004 ne démarre plus

    Depuis 2 ans, je travaille sous Flash MX2004 sans aucun problème. Je ne m'en sers pas tous les jours, mais cet après midi, brutalement, Flash refuse de démarrer. J'obtiens le message de Windows : "Flash MX 2004 a rencontré un problème et doit fermer.

  • Change Gradient Color

    As you would expect I have a gradient with several colors. Is there a way to change the colors? I now I can change the colors in Illustrator CS5. The colors are now shades of green. I want blue. I want to restrict the colors between a dark and light

  • Enhancement for t.code FBRA

    Hi, I tried using user-exit F050S006. i inserted a break-piont in the exit and executed transaction code FBRA but control doesnt go to this exit. please help me out in finding an enhancement while executing FBRA. Regards, Sonali.