IView is removed from transport package when exporting

Hi all,
I have created a transport package containing one iView. However, when I hit the export button it is removed from the package. I have tried adding other objects and they are not removed, but the iView always is.
The iView is a copy of the standard detailed navigation iView.
Has anyone seen this before?
Kind regards,
Hilco

Hilco,
change the prefix/id. there's a filter in the export method NOT to export/transport sap standard objects.
kr, achim

Similar Messages

  • Why do I often have to remove a foreign packages when it's updated?

    Why do I often have to remove a foreign package when it's updated in order to make it work after an update?
    So many questions in AUR that something is updated and it's not working - "well just rebuild it". Meaning that you should first "-Rdd" it and then "-S" it again. If you just "yaourt -Syu --aur" - some might not work after this. So why can't those programs work after an update without deleting them before?

    Trilby wrote:
    Do you have an example?
    https://aur.archlinux.org/packages.php?ID=37087 ("Just rebuild it.")
    https://aur.archlinux.org/packages.php?ID=37779 ("recompiling perl-xml-fast fixes it")
    https://aur.archlinux.org/packages.php?ID=24443 ("Same was happening to me, reinstalling perl-gtk2-imageview and perl-gtk2-unique solved the problem. Also had to reinstall perl-goo-canvas for the editing functionality.")
    Works for me that same way.
    Trilby wrote:Perhaps you are referring to development builds (git,cvs,bzr,etc).
    Not from what I know.
    Last edited by Mr. Alex (2012-06-10 21:00:22)

  • Google removed from bookmarks and when selecting safari it does not automatically open to bookmarks as previously did

    google removed from bookmarks and when selecting safari it does not automatically open to bookmarks as previously did

    When Safari launches, tap in the address field (the one on the left) and type "www.google.com" then hit the "Go" button.
    After the page finishes loading, hit the "Action" button (the middle button on the bottom button bar that looks like an arrow coming out of a rectangle) and select "Add to Bookmarks" to add the Google page to your bookmarks.
    After that, you can hit the Bookmarks button (the button that looks like an open book in the bottom button bar) to access the Google bookmark you just created.

  • HT5252 My facetime removed from my iphone.when i go to contact there is no any facetime shortcut.what can i do now?

    My facetime removed from my iphone,when i go to the contact there is no any facetime shortcut.what can i do now?

    The iPhone can not be legally sold in Iran. It most likely came from a country in the Middle East. If it came from a Middle Eastern country where it is not banned by law, it would be disabled when the phone was taken out of that country to prevent its use in countries where it is not permitted.

  • Divs being removed from parent div when a float style is applied

    Divs being removed from parent div when a float style is applied
    Hi All,
    I hope someone is able to help me with the below issue.
    I apologise if the questions I have been asking lately are really basic, I’m just teaching myself web design.
    I really do appreciate the help you guys offer, so a big thank you in advance.
    I am confused as to why I am not getting my desired effect for the below code. I am creating a website for someone and have structured the website in the following way:
    <body>
    <div id="wrap">
    <div id="title"></div><!-- end #title -->
    <div id="shopping_cart"></div><!-- end #shopping_cart -->
    <div id="content_wrap">
    <h2 class="header">Header goes here</span></h2>
    <div id="nav_bar">
    <table>table goes here</table>
    </div><!-- end #nav_bar -->
    <div id="side_bar">
    <h1>text here</h1>
    <table>table goes here</table>
    </div><!-- end #side_bar -->
    <div id="content">
    <p>text here</p>
    <div id="content_image"></div>
    </div><!-- end #content -->
    <div id="footer">
    <div id="logo"></div>
    <div id="flags"></div>
    <div id="v_wd"></div>
    </div><!-- end #footer -->
    </div><!-- end #content_wrap -->
    </div><!-- end #wrap -->
    </body>
    Now I don't know if I am structuring my website the right way this is just the way that makes sense to me. It might not even be the source code that’s the issue and may be the CSS so I have also pasted that in below.
    Now the problems I am having are as follows:
    I want to have my whole site wrapped in one big div #wrap so I can centre the whole site. Within that div I want all my other divs (which some have divs inside those as well).
    To start #title seems to fit inside #wrap without a problem but #shopping_cart gets push outside of #wrap even though it is inside the opening and closing #wrap tag.
    My next div #content_wrap, it seems to be inside #wrap however the margin-top I have applied to #content_wrap pushes it down from #title not #shopping_cart even though #content_wrap is below #shopping_cart not #title.
    The second problems seem to be with the divs that are or supposed to be inside #content_wrap.
    h2 .header seems to fit inside #content_wrap without any problems. Now it gets really confusing, for me anyway. Any div I put below h2 .header which is inside #content_wrap doesn’t seem to actually go inside #content_wrap or #wrap they get pushed below #wrap even though in the source code they are inside the opening and closing div tags.
    Also #side_bar and #content together equal 860px which is the width of their surrounding div #content_wrap so they should fit perfectly side by side. This I know ties into a previous discussion I raised in discussion (http://forums.adobe.com/message/4501038#4501038). I have taken Murry’s advice on board from this discussion and tried floating just #side bar to the left and left enough margin for #content to clear, I also tried floating both to the left. Nothing worked.
    As I have been writing this I’ve gone through my code, all the above issues only occur if I float a div. If I float a div for some reason it removes that div from any div surrounding it and pushes it below every single div. I don’t know how to position my divs in the exact place I want without floating them but if I float they get moved out of their parent div and therefore aren’t in the position I want them in either.
    If you are able to help me resolve this issue it will help me with all future projects. I really do appreciate any help you can give.
    Kind Regards
    Elliot
    CSS
    I have marked out where I would float a particular div */style*/ which I know would cancel that style. Therefore the problems I am having are with divs #shopping_cart, #side_bar and #content.
    body {
    background:url(images/body_bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;}
    #wrap {
    height:auto;
    width:895px;
    margin:0 auto;}
    #title {
    Background-image:url(images/title.png);
    height:67px;
    width:895px;
    margin-top:50px;
    margin-left:auto;
    margin-right:auto;}
    #shopping_cart {
    background: url(images/shopping_cart.jpg);
    height:46px;
    width:142px;
    margin-top:15px;
    margin-right:25px;
    /*float:right;*/}
    #content_wrap {
    background:url(images/content_bg.png) repeat;
    border:2px solid #666;
    height: auto;
    width:862px;
    margin-top:15px;
    margin-left:auto;
    margin-right:auto;}
    #nav_bar {
    width:809px;
    height:59px;
    margin-left:26px;}
    #side_bar {
    height:auto;
    width:285px;
    margin-top:20px;
    border-right:1px solid #666;
    /*float:left;*/}
    #content {
    height:auto;
    width:575px;
    margin-top:20px;
    /*float:left;*/}
    #content_image {
    background-image:url(images/couple.jpg);
    height:184px;
    width:271px;
    margin:0 auto;}
    #footer {
    background-color:#0F0;
    width:860px;
    height:200px;}
    #kejo_logo {
    background-image:url(images/kejo.png);
    height:100px;
    width:227px;}
    #flags {}
    #viscari_wd {}
    #copyright {}
    #pp_tu {}
    .header {
    color: #FFF;
    font-size:44px;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    margin-left:10px;}
    .header_small {
    color: #FFF;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-left:10px;}
    #content_wrap #side_bar h1 {
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    color: #4b4a4a;
    font-size:20px;
    padding-left:15px;}
    #content_wrap #content p {
    color: #484747;
    text-align:center;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:20px;
    padding-right:15px;}

    Hi guys,
    Thanks for your help but still having a few problems;
    In design view the code you advised I should add seems to have placed #shopping_cart back into #wrap under #title and above #content_wrap but hasn't when previewed in browser as there is no margin between #content_wrap & #shopping_cart.
    #side_bar and #content now seem to sit side by side each other fine in design view and in the browser, however #footer which is in #content_wrap but under #side_bar and #content is behind #side_bar and #content. How do I get #footer to position under #side_bar and #content?
    I have added a green background to #footer to make it stand out. I have also added two images one of the site in design view and one previewed in the browser so you can see the difference. I've also pasted the amended code.
    Again thanks for your continued help and advice.
    <body>
    <div id="wrap">
    <div id="title"></div><!-- end #title -->
    <div id="shopping_cart"></div><!-- end #shopping_cart -->
    <div id="content_wrap">
    <h2 class="header">Header goes here</span></h2>
    <div id="nav_bar">
    <table>table goes here</table>
    </div><!-- end #nav_bar -->
    <div id="side_bar">
    <h1>text here</h1>
    <table>table goes here</table>
    </div><!-- end #side_bar -->
    <div id="content">
    <p>text here</p>
    <div id="content_image"></div>
    </div><!-- end #content -->
    <div id="footer">
    <div id="logo"></div>
    <div id="flags"></div>
    <div id="v_wd"></div>
    </div><!-- end #footer -->
    </div><!-- end #content_wrap -->
    </div><!-- end #wrap -->
    </body>
    CSS
    body {
    background:url(images/body_bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;}
    #wrap {
    width:895px;
    margin:0 auto;
    overflow:hidden;}
    #title {
    background:url(images/title.png);
    height:67px;
    width:895px;
    margin-top:50px;
    margin-left:auto;
    margin-right:auto;}
    #shopping_cart {
    background: url(images/shopping_cart.jpg);
    height:46px;
    width:142px;
    margin-top:15px;
    margin-right:25px;
    float:right;}
    #content_wrap {
    background:url(images/content_bg.png) repeat;
    border:2px solid #666;
    width:862px;
    margin-top:15px;
    margin-left:auto;
    margin-right:auto;
    overflow: hidden;
    clear: both;}
    #nav_bar {
    width:809px;
    height:59px;
    margin-left:26px;}
    #side_bar {
    height:auto;
    width:285px;
    margin-top:20px;
    border-right:1px solid #666;
    float:left;}
    #content {
    height:auto;
    width:575px;
    margin-top:20px;
    float:right;}
    #content_image {
    background-image:url(images/couple.jpg);
    height:184px;
    width:271px;
    margin:0 auto;}
    #footer {
    background-color:#0F0;
    width:860px;
    height:200px;}
    #kejo_logo {
    background-image:url(images/kejo.png);
    height:100px;
    width:227px;}
    #flags {}
    #viscari_wd {}
    #copyright {}
    #pp_tu {}
    .header {
    color: #FFF;
    font-size:44px;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    margin-left:10px;}
    .header_small {
    color: #FFF;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-left:10px;}
    #content_wrap #side_bar h1 {
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    color: #4b4a4a;
    font-size:20px;
    padding-left:15px;}
    #content_wrap #content p {
    color: #484747;
    text-align:center;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:20px;
    padding-right:15px;}

  • Q: InDesign Extension could not be removed from file system when it was removed in Extension Manager

    <body>
    <p>All files of an ordinary extension will be removed from file system when this extension is removed in Extension Manager. But InDesign extensions with <tt>"plugin-manager-type"</tt> attribute in mxi file are special. Extension Manager will NOT remove files of this kind of extensions from file system when removing these extensions. Instead, Extension Manager will use other way to tell InDesign not to load these removed extensions when InDesign is launched. If you want to make your InDesign extensions removable, you can just remove <tt>"plugin-manager-type"</tt> attribute from the mxi file when you generate an extension.</p>
    </body>

    Thanks for the help. Yes that addressed the issue.
    On a side note, the tutorial I followed was the one that came with the plugin. Specifically I'm referring to the following file:
    //<eclipse_path>/plugins/com.adobe.cside.html.docs_1.0.0.201307260955/doc/getting_started/ Create_Your_Own_HTML5_Extension_In_5_Minutes.htm
    This is the HTML page for the "Create Your Own HTML5 Extension In 5 Minutes" walkthrough. It makes no mention of changing "PlayerDebugMode". I downloaded the eclipse plugin from the following link:
    http://labs.adobe.com/downloads/extensionbuilder3.html
    Is there a more up to date plugin? Where is the documentation that references changing the settings you mentionned?

  • Pages not transported from transport package

    Hi,
    I have created a transport package containing one iView and one Page from development server. And after transporting this transport package  to quality server only iview has been transport to quality server  but page not transferred..
    Please explain me about my above questions. I would appreciate your help.

    Roopali,
    check this thread
    https://forums.sdn.sap.com/click.jspa?searchID=20501345&messageID=6724037
    Thanks
    Bala Duvvuri

  • Drivers accidentally removed from driver packages

    I've accidentally removed several drivers across several driver packages on SCCM 2007.  It was due to a misunderstanding of the "Add or Remove Drivers to Packages" dialog box.  I deselected the existing packages, wanting to add just to
    a new package & not touch old working packages.  Doh!
    I know the drivers that have been removed and have made a new package and distributed it to DPs.  However the drivers are still not being matched & installed by 'Auto Apply Drivers' even though
    they are back on DPs (albeit different packages).  The Setupapi*.log says "There are no compatible drivers for this device".  Could someone please help troubleshoot? :-
    Does the fact DPs havn't been refreshed for the old packages cause failure somehow with the new package?  Possibly the content is still thought to be in the old packages and the content search fails?  I'd be very grateful for any suggestions for
    either restoring the drivers to where they were or getting the ones in the new package recognizable once more.  Failing that any suggestions on which logs to look at & how the MP/DP matches driver content.
    Extra info:-
    -Some of the old packages have "Use a compressed copy of the source directory" selected.

    So part of the problem here is that in years past driver source folders were specified as being the source root folder.  (The source root is a mush of content GUID folders from multiple driver packages!)  It means that now when I go to
    refresh those old packages 9GB of drivers are included in the content that gets copied to the DP for each package even though the driver itself is only 50MB.  Thats 9GB for each of 10-20 packages currently being refreshed.  So thats a pretty
    big replication storm going on now. 
    I've been able to find which content GUIDs are associated with which package by looking in the  v_DriverContentToPackage SQL table.  So I'll be able to move the right GUID folder to subfolders with the package name,
    then redistribute.  Thats when the storm stops.
    Anyone have any ideas for stopping the old packages refreshing?  At the moment I'm having to delete old content from the DPs so Distribution Manager can finish doing what it needs to.

  • When and how does the message context get removed from the message when we use pass thru send port

    Friends,
    i have a doubt regarding message context.
    Assume i have used XMLRecieve pipeline in the receive side to receive the message so that the message context is created. I.e properties are promoted/written.
    now if we use pass thru transmit pipe line at send side, how and when does the message context get removed from the message?? Since pass thru does not have any stages/components, how does the message context removed and sent out a pure message to destination???
     i mean what exactly happens here to remove the context??
    Ravindar

    Thanks for the reply.
    "The Context is created by the Adapter, regardless of any Pipeline or Pipeline Component.  It has nothing to do with PassThrough vs. XmlReceive, although XmlReceive will write Promoted Properties to the existing Context,
    as can any other Component."
    yeah yeah, adapter does create some properties in context. You are right, i am aware of it. I just missed to explain it clearly. what i meant is addition of context properties will not happen if pass thru used. Thanks its clear.
    "No.  The Context already exists on the Message when it comes from the MessageBox and
    is equally available to any Component in any Stage.  The Context that hits the Pipeline is whatever was last Persisted, either by a Receive Port or Orchestration.  It is not created by the XmlAssembler (XmlTransmit)"
    You are right , the context already exists on the message while it leaves the receive port, and once it persists
    to message box the context and message context gets stored in messages in relative tables.
    Now as you said the components get the message from the last persistence, assume i have a send port(with passthru)
    subscriber and a orchestration subsrciber for this message.
    Orchestration gets the message with context right!!
    if the send sendport(with passthru) also gets message along with context, then where is this context removed/demoted
    while sending it out?.  i guess as per SAAkhlaq said,
    here sendport(with passthru) should get a pure message without context as passthru used. 
    or is it that ultimately send adapter removes the context completely?
    or is it something like biztalk run time load the context from database into cache and both orchestration and send port gets pure message, and if needed they use context from cache???
    sorry i may be troubling you, but i am confused. i hope i am not creating any nuisance with this
    post.
    Ravindar

  • Are apps removed from app store when DPS contract expires?

    My company is debating on whether to renew our DPS contract and the question has come up whether or not once our contract expires, will the apps we've created so far using DPS be removed from the app store since we would no longer be subscribing to their services? Or will they still be available for purchase on the app store?

    The apps won't disappear unless your Apple Developer account is
    canceled. If they're Single Edition you're okay. If they're
    subscription, nothing will be available for download.
    Bob

  • A package is considered invalid from another package when it isn't

    Hi all,
    I have two packages, A and B. I have unit test for both packages. B uses some procedures from A. After they are compiled (A first, then B), when I run the unit test for B in sqlplus, I get
    ORA-04068: existing state of packages has been discarded
    ORA-04065: not executed, altered or dropped stored procedure "my_schema.A"
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at "my_schema.B", line 886
    ORA-06512: at line 6
    But if I run the unit test for A, it works perfectly (so I think A has been compiled correctly and could be found in the database).
    For those who have read my post yesterday titled 'existing state of packages has been discarded', this is the same problem. Sorry for posting twice but I really need to get this working.
    Thanks.
    Gloria Chung

    This shouldn't be a problem if you are running the unit tests in the same session as you are recompiling the packages.
    Basically, package A must be storing values in package level variables. Like this...
    SQL1> CREATE OR REPLACE PACKAGE ap AS
    2 FUNCTION f RETURN number;
    3 END;
    4 /
    Package created.
    SQL1> CREATE OR REPLACE PACKAGE BODY ap AS
    2 FUNCTION f RETURN number IS
    3 BEGIN
    4 RETURN 2;
    5 END;
    6 END;
    7 /
    Package body created.
    SQL1> CREATE OR REPLACE PACKAGE bp AS
    2 FUNCTION f RETURN NUMBER;
    3 END;
    4 /
    Package created.
    SQL1> CREATE OR REPLACE PACKAGE BODY bp AS
    2 n NUMBER;
    3 FUNCTION f RETURN NUMBER IS
    4 BEGIN
    5 n := n + ap.f;
    6 RETURN n;
    7 END;
    8 BEGIN
    9 n := 0;
    10 END;
    11 /
    Package body created.
    SQL1>
    Now we can use that in another session...
    SQL2> var x number
    SQL2> exec :x := bp.f
    PL/SQL procedure successfully completed.
    SQL2> print x
             X
             2
    SQL2>So far so good. Now in the first session we run ...
    SQL1> CREATE OR REPLACE PACKAGE BODY bp AS
      2    n NUMBER;
      3    FUNCTION f RETURN NUMBER IS
      4    BEGIN
      5       n := n * ap.f;
      6       RETURN n;
      7    END;
      8  BEGIN
      9      n := 4;
    10  END;
    11  /
    Package body created.
    SQL1> back in session two...
    SQL2> exec :x := bp.f
    BEGIN :x := bp.f; END;
    ERROR at line 1:
    ORA-04068: existing state of packages has been discarded
    ORA-04061: existing state of package body "APC.BP" has been invalidated
    ORA-04065: not executed, altered or dropped package body "APC.BP"
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 1
    SQL2>aaargh! disaster! But all we have to do is ...
    SQL2> conn apc/apc
    Connected.
    SQL2> var x number
    SQL2> exec :x := bp.f
    PL/SQL procedure successfully completed.
    SQL2> print x
             X
             8
    SQL2> I'm not saying its satisfactory, because obviously it isn't. But I don't see what else Oracle can do.
    Cheers, APC

  • Are form responses removed from Adobe server when deleted by user?

    This is a server security question; when form responses are exported to excel, and then deleted from the workspace, do they remain on the Adobe server or are they gone?  I need to know this to know the level of security that is applied to the server to determine if we can use Adobe with sensitive information. I understand forms are encrypted when responses are returned, but what happens to the information that is on the server?
    Thanks

    Hi,
      Please refer to this page for more information: http://forums.adobe.com/docs/DOC-1384
    If you still have questions please write back.
    Thanks,
    Lucia

  • Removing date at bottom when exporting to PDF

    Hi,
    When I export a keynote ('09) file to PDF, it includes a date at the bottom of the exported PDF. Does anyone know how to prevent this from happening?
    Thanks for your help,
    Laura

    Hello laura.bryson
    When you either go to Share > PDF… or Print > Save as PDF, there are options in both windows that have Include Date as an option.
    Keynote '09: Creating a PDF file
    http://support.apple.com/kb/HT3697
    Regards,
    -Norm G.

  • Internal source cannot clean on a new install will not let me remove from disc even when formatting

    PLEASE HELP
    INSIDE MACHINE KILLING ALL OF 10 YEARS WORK@@@@
    Apr 24 06:10:37 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:10:50 localhost bootlog[40]: BOOT_TIME: 1398345037 0
    Apr 24 06:10:50 localhost fseventsd[33]: could not open <</.fseventsd/fseventsd-uuid>> (No such file or directory)
    Apr 24 06:10:50 localhost fseventsd[33]: log dir: /.fseventsd getting new uuid: 9E314C08-3647-4A45-ABB0-BF73A979E483
    Apr 24 06:10:52 localhost blued[41]: Apple Bluetooth daemon started
    Apr 24 06:10:52 localhost com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 7 seconds
    Apr 24 06:10:52 localhost blued[41]: [setSystemPreference] syncs returns false
    Apr 24 06:10:53: --- last message repeated 2 times ---
    Apr 24 06:10:53 localhost com.apple.launchd[1] (com.apple.smb.sharepoints[24]): Exited with exit code: 71
    Apr 24 06:10:54 localhost configd[13]: updateConfiguration(): no preferences.
    Apr 24 06:10:54 localhost configd[13]: BUG in libdispatch: 10A432 - 1656 - 0xa203
    Apr 24 06:10:55 localhost com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 5 seconds
    Apr 24 06:11:00 localhost mDNSResponder[28]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:11:04 localhost blued[41]: [_setUserPreference] syncs returns false
    Apr 24 06:11:04 localhost com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:11:04 localhost blued[41]: [_setUserPreference] syncs returns false
    Apr 24 06:11:06 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[29]: Login Window Application Started
    Apr 24 06:11:07 localhost com.apple.kextd[10]: /System/Library/Extensions/IOSerialFamily.kext/Contents/PlugIns/InternalModemSu pport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    Apr 24 06:11:07: --- last message repeated 1 time ---
    Apr 24 06:11:07 localhost configd[13]: network configuration changed.
    Apr 24 06:11:08: --- last message repeated 1 time ---
    Apr 24 06:11:08 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-auto
    Apr 24 06:11:09 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-wake
    Apr 24 06:11:09 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-attach
    Apr 24 06:11:09 localhost mds[27]: (Normal) DiskStore: Creating index for /
    Apr 24 06:11:10 localhost com.apple.fontd[82]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:11:19: --- last message repeated 1 time ---
    Apr 24 06:11:19 localhost configd[13]: New network configuration saved
    Apr 24 06:11:20 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:11:20 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:11:20 localhost configd[13]: network configuration changed.
    Apr 24 06:11:22 localhost mDNSResponder[28]: User updated Computer Name from “MacBook-000000000000” to “MacBook-00264A159BA6”
    Apr 24 06:11:22 localhost mDNSResponder[28]: User updated Local Hostname from “MacBook-000000000000” to “MacBook-00264A159BA6”
    Apr 24 06:11:22 localhost loginwindow[29]: USER_PROCESS: 29 console
    Apr 24 06:11:26 localhost /System/Library/CoreServices/Setup Assistant.app/Contents/MacOS/Setup Assistant[110]: ava warning: config record  spsCnt = 2, ppsCnt = 2
    Apr 24 06:12:26 localhost com.apple.kextcache[117]: InternalModemSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    Apr 24 06:12:36: --- last message repeated 1 time ---
    Apr 24 06:12:36 localhost com.apple.kextcache[117]: Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.D51389B2.
    Apr 24 06:13:28 localhost com.apple.coreservicesd[60]: ThrottleProcessIO: throttling disk i/o
    Apr 24 06:14:04 localhost Setup Assistant[110]: *** WARNING: Method selectRow:byExtendingSelection: in class NSTableView is deprecated. It will be removed in a future release and should no longer be used.
    Apr 24 06:14:54 localhost kextd[10]: updated kernel boot caches
    Apr 24 06:17:26 localhost mDNSResponder[28]: User updated Computer Name from “MacBook-00264A159BA6” to “oh my’s MacBook”
    Apr 24 06:17:26 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:17:27 oh-mys-MacBook mDNSResponder[28]: User updated Local Hostname from “MacBook-00264A159BA6” to “oh-mys-MacBook”
    Apr 24 06:17:28 oh-mys-MacBook com.apple.coreservicesd[60]: ThrottleProcessIO: throttling disk i/o
    Apr 24 06:17:59 oh-mys-MacBook ohmy[156]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 06:49:06 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:49:11 localhost DirectoryService[14]: Improper shutdown detected
    Apr 24 06:49:15 localhost bootlog[38]: BOOT_TIME: 1398347344 0
    Apr 24 06:49:15 localhost fseventsd[32]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (2180 11 2305)
    Apr 24 06:49:15 localhost fseventsd[32]: log dir: /.fseventsd getting new uuid: 026BE8B3-818E-4CBD-B146-6F4937679938
    Apr 24 06:49:17 localhost blued[39]: Apple Bluetooth daemon started
    Apr 24 06:49:19 localhost mDNSResponder[27]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:49:21 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:49:21 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:49:21 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[28]: Login Window Application Started
    Apr 24 06:49:21 localhost configd[13]: network configuration changed.
    Apr 24 06:49:21 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:49:23 oh-mys-MacBook com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:49:32 oh-mys-MacBook loginwindow[28]: Login Window Started Security Agent
    Apr 24 06:49:33 oh-mys-MacBook loginwindow[28]: Login Window - Returned from Security Agent
    Apr 24 06:49:33 oh-mys-MacBook loginwindow[28]: USER_PROCESS: 28 console
    Apr 24 06:49:33 oh-mys-MacBook com.apple.launchd.peruser.501[79] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 06:49:34 oh-mys-MacBook migCacheCleanup[86]: Flushing Cache Locations...
    Apr 24 06:49:34 oh-mys-MacBook com.apple.loginwindow[28]: 2014-04-24 06:49:34.069 migCacheCleanup[86:903] Flushing Cache Locations...
    Apr 24 06:49:36 oh-mys-MacBook [0x0-0x6006].SoftwareUpdateCheck[94]: SoftwareUpdateCheck: network unreachable
    Apr 24 06:49:36 oh-mys-MacBook com.apple.launchd[1] (com.apple.suhelperd[99]): Exited with exit code: 2
    Apr 24 06:49:36 oh-mys-MacBook com.apple.launchd.peruser.501[79] ([0x0-0x6006].SoftwareUpdateCheck[94]): Exited with exit code: 3
    Apr 24 06:49:36 oh-mys-MacBook KernelEventAgent[29]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 06:50:32 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:50:37 localhost DirectoryService[15]: Improper shutdown detected
    Apr 24 06:50:40 localhost bootlog[37]: BOOT_TIME: 1398347416 0
    Apr 24 06:50:43 localhost blued[38]: Apple Bluetooth daemon started
    Apr 24 06:50:44 localhost mDNSResponder[26]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:50:46 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[27]: Login Window Application Started
    Apr 24 06:50:46 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:50:46 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:50:47 localhost configd[13]: network configuration changed.
    Apr 24 06:50:47 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:50:49 oh-mys-MacBook com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: Login Window Started Security Agent
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: Login Window - Returned from Security Agent
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: USER_PROCESS: 27 console
    Apr 24 06:50:57 oh-mys-MacBook com.apple.launchd.peruser.501[75] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 06:51:00 oh-mys-MacBook KernelEventAgent[28]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 06:51:02 oh-mys-MacBook com.apple.fontd[88]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:51:05 oh-mys-MacBook com.apple.launchd.peruser.501[75] (com.apple.Kerberos.renew.plist[103]): Exited with exit code: 1
    Apr 24 06:51:08 oh-mys-MacBook com.apple.fontd[88]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:51:14 oh-mys-MacBook iCalExternalSync[114]: Client state being vacuumed
    Apr 24 06:51:14 oh-mys-MacBook DockSyncClient[117]: Client state being vacuumed
    Apr 24 06:51:18 oh-mys-MacBook root[120]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    Apr 24 06:51:18 oh-mys-MacBook root[123]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 06:51:18 oh-mys-MacBook root[123]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 06:51:18 oh-mys-MacBook root[123]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 06:53:14 oh-mys-MacBook SyncServer[115]: Datamanager Vacuuming all the truth segments.
    Apr 24 07:00:57 oh-mys-MacBook System Preferences[132]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    Apr 24 07:00:57 oh-mys-MacBook System Preferences[132]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    Apr 24 07:01:04 oh-mys-MacBook /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[109]: No valid tickets, timing out
    Apr 24 07:01:14 oh-mys-MacBook SecurityAgent[185]: system.preferences.security|2014-04-24 07:01:14 -0700
    Apr 24 07:08:29 oh-mys-MacBook WindowServer[55]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:08:29 oh-mys-MacBook com.apple.WindowServer[55]: Thu Apr 24 07:08:29 oh-mys-MacBook.local WindowServer[55] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPImageButtonCell is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPImagePopUpButtonCell is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPButtonBarView is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceCopyCurrentSSID called with NULL interface
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:13:10: --- last message repeated 2 times ---
    Apr 24 07:13:10 oh-mys-MacBook ntpd_initres[124]: ntpd exiting on signal 15
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 07:15:06 oh-mys-MacBook System Preferences[132]: .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    Apr 24 07:15:07 oh-mys-MacBook DockSyncClient[286]: Client state being vacuumed
    Apr 24 07:16:16 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:16:16: --- last message repeated 1 time ---
    Apr 24 07:16:16 oh-mys-MacBook SCHelper[251]: no command
    Apr 24 07:16:37: --- last message repeated 1 time ---
    Apr 24 07:16:37 oh-mys-MacBook System Preferences[291]: .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    Apr 24 07:18:17 oh-mys-MacBook SecurityAgent[315]: system.preferences|2014-04-24 07:18:17 -0700
    Apr 24 07:18:29 oh-mys-MacBook System Preferences[291]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    Apr 24 07:18:29 oh-mys-MacBook System Preferences[291]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    Apr 24 07:18:30 oh-mys-MacBook Apple80211 framework[291]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:18:39 oh-mys-MacBook SecurityAgent[315]: system.preferences.security|2014-04-24 07:18:39 -0700
    Apr 24 07:19:10 oh-mys-MacBook com.apple.launchd.peruser.501[75] ([0x0-0x17017].com.apple.Console[235]): Exited: Killed
    Apr 24 07:19:10 oh-mys-MacBook SecurityAgent[315]: NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:\nError Domain=NSCocoaErrorDomain Code=513 UserInfo=0x100154000 "You don’t have permission to save the file “Library” in the folder “empty”." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=13 "The operation couldn’t be completed. Permission denied")
    Apr 24 07:19:10 oh-mys-MacBook loginwindow[27]: DEAD_PROCESS: 27 console
    Apr 24 07:19:10 oh-mys-MacBook loginwindow[27]: Suspending per user launchd for this logout
    Apr 24 07:19:11 oh-mys-MacBook hdiejectd[327]: running
    Apr 24 07:19:21 oh-mys-MacBook hdiejectd[327]: quitCheck: calling exit(0)
    Apr 24 07:19:24 oh-mys-MacBook hdiejectd[337]: running
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: CGSShutdownServerConnections: Detaching application from window server
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: ERROR | -[LoginApp suspendPerUserLaunchd:] |     Could not resume, 501's launchd!
    Apr 24 07:19:26 oh-mys-MacBook com.apple.launchd[1] (com.apple.loginwindow[27]): Job exited before resuming per-user launchd for UID 501. Will forcibly resume.
    Apr 24 07:19:26 oh-mys-MacBook /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[346]: Login Window Application Started
    Apr 24 07:19:27 oh-mys-MacBook loginwindow[346]: Login Window Started Security Agent
    Apr 24 07:19:27 oh-mys-MacBook WindowServer[347]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:27 oh-mys-MacBook com.apple.WindowServer[347]: Thu Apr 24 07:19:27 oh-mys-MacBook.local WindowServer[347] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:36 oh-mys-MacBook hdiejectd[337]: quitCheck: calling exit(0)
    Apr 24 07:19:48 oh-mys-MacBook SecurityAgent[352]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Apr 24 07:19:49 oh-mys-MacBook hdiejectd[367]: running
    Apr 24 07:19:49 oh-mys-MacBook fseventsd[31]: could not open <</Users/ohmy/.fseventsd/fseventsd-uuid>> (No such file or directory)
    Apr 24 07:19:49 oh-mys-MacBook fseventsd[31]: log dir: /Users/ohmy/.fseventsd getting new uuid: B97E12A0-A675-42D9-9642-01170B5D9905
    Apr 24 07:19:49 oh-mys-MacBook mds[25]: (Normal) DiskStore: Creating index for /Users/ohmy
    Apr 24 07:19:51 oh-mys-MacBook loginwindow[346]: Login Window - Returned from Security Agent
    Apr 24 07:19:51 oh-mys-MacBook loginwindow[346]: USER_PROCESS: 346 console
    Apr 24 07:19:51 oh-mys-MacBook com.apple.launchd.peruser.501[374] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 07:19:54 oh-mys-MacBook com.apple.launchd.peruser.501[374] (com.apple.Kerberos.renew.plist[393]): Exited with exit code: 1
    Apr 24 07:19:56 oh-mys-MacBook KernelEventAgent[28]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 07:21:56 oh-mys-MacBook com.apple.backupd[410]: Starting standard backup
    Apr 24 07:22:01 oh-mys-MacBook com.apple.backupd[410]: Backup failed with error: 17
    Apr 24 07:22:18 oh-mys-MacBook AirPort Utility[444]: Could not connect the action importOK: to target of class AAUDocument
    Apr 24 07:22:18 oh-mys-MacBook AirPort Utility[444]: Could not connect the action importCancel: to target of class AAUDocument
    Apr 24 07:27:42 oh-mys-MacBook SecurityAgent[470]: system.preferences|2014-04-24 07:27:42 -0700
    Apr 24 07:29:53 oh-mys-MacBook /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[399]: No valid tickets, timing out
    Apr 24 07:38:42 oh-mys-MacBook Apple80211 framework[465]: SecKeychainSearchCopyNext() returned error: -25300
    Apr 24 07:38:42 oh-mys-MacBook Apple80211 framework[465]: _ACNetworkCopyKeychainItem() expected password for "HOME-48E2" not found: -25300 (The specified item could not be found in the keychain.)
    Apr 24 07:39:24 oh-mys-MacBook configd[13]: network configuration changed.
    Apr 24 07:43:12 oh-mys-MacBook configd[13]: network configuration changed.
    May  2 16:13:11 oh-mys-MacBook ntpd[265]: time reset +721725.592455 s
    May  2 16:13:21 oh-mys-MacBook SoftwareUpdateCheck[635]: Checking for updates
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:13:56 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: scan found 5 products:\n041-0259\n041-4627\n091-9423\nzzz041-5105\nzzzz041-6245
    May  2 16:13:56 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "iTunes"
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "iTunes" SUCCESSFUL.
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "iTunes, 10.6.3"
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "iLife Support"
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "iLife Support" SUCCESSFUL.
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "iLife Support, 9.0.4"
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "Remote Desktop Client Update"
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "Remote Desktop Client Update" SUCCESSFUL.
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "Remote Desktop Client Update, 3.5.4"
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "Mac OS X Update Combined"
    May  2 16:15:46 oh-mys-MacBook System Preferences[465]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    May  2 16:15:46 oh-mys-MacBook System Preferences[465]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    May  2 16:15:55 oh-mys-MacBook SCHelper[475]: no command
    May  2 16:16:51: --- last message repeated 4 times ---
    May  2 16:17:58 oh-mys-MacBook SoftwareUpdateCheck[635]: Background check cancelled by user-initiated update.
    May  2 16:17:58 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x3f03f].SoftwareUpdateCheck[635]): Exited with exit code: 102
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:18:35 oh-mys-MacBook Software Update[660]: SWU: scan found 5 products:\n041-0259\n041-4627\n091-9423\nzzz041-5105\nzzzz041-6245
    May  2 16:18:36 oh-mys-MacBook PubSubAgent[664]: SQL Error: SQLITE_CANTOPEN[14.0]: Database file not found
    May  2 16:19:01 oh-mys-MacBook SecurityAgent[666]: system.privilege.admin|2014-05-02 16:19:01 -0700
    May  2 16:19:03 oh-mys-MacBook installd[667]: Starting
    May  2 16:19:03 oh-mys-MacBook installd[667]: uid=0, euid=0
    May  2 16:19:06 oh-mys-MacBook Software Update[660]: SWU: downloading "AirPort Utility, 5.6.1"
    May  2 16:19:39 oh-mys-MacBook Software Update[660]: SWU: downloading "Mac OS X Update Combined, 10.6.8 v1.1"
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x2f02f].com.apple.ActivityMonitor[424]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x2c02c].com.apple.Console[405]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x35035].com.apple.Preview[453]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x42042].com.apple.SoftwareUpdate[660]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook suhelperd[636]: Releasing session lock <SUSessionLock uid=501, pid=660, priority=0 from dead client
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd[1] (com.apple.suhelperd[636]): Exited with exit code: 2
    May  2 16:19:50 oh-mys-MacBook SecurityAgent[666]: NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:\nError Domain=NSCocoaErrorDomain Code=513 UserInfo=0x100105080 "You don’t have permission to save the file “Library” in the folder “empty”." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=13 "The operation couldn’t be completed. Permission denied")
    May  2 16:19:51 oh-mys-MacBook loginwindow[346]: DEAD_PROCESS: 346 console
    May  2 16:19:53 oh-mys-MacBook installd[667]: Exiting.
    May  2 16:19:57 oh-mys-MacBook com.apple.fontd[677]: Iterator create failed for file
    May  2 16:19:57 oh-mys-MacBook com.apple.fontd[677]: FODBError: FODBReviveFileTokens returned Zero.
    May  2 16:20:02 oh-mys-MacBook com.apple.fontd[677]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    May  2 16:20:04: --- last message repeated 1 time ---
    May  2 16:20:04 oh-mys-MacBook diskimages-helper[680]: Reclaimed 4.5 MB out of 297.0 GB possible.
    May  2 16:20:06 oh-mys-MacBook /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[682]: Login Window Application Started
    May  2 16:20:06 oh-mys-MacBook hdiejectd[367]: quitCheck: calling exit(0)
    May  2 16:20:07 oh-mys-MacBook loginwindow[682]: USER_PROCESS: 682 console
    May  2 16:20:08 oh-mys-MacBook com.apple.WindowServer[683]: Fri May  2 16:20:08 oh-mys-MacBook.local WindowServer[683] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:20:08 oh-mys-MacBook WindowServer[683]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:20:08 oh-mys-MacBook configd[13]: network configuration changed.
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Looking for products to install
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Performing preflight
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Preparing session
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Starting session
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:20:10: --- last message repeated 1 time ---
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:20:10: --- last message repeated 1 time ---
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:20:11: --- last message repeated 1 time ---
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:20:35 oh-mys-MacBook com.apple.usbmuxd[20]: stopping.
    May  2 16:20:36 oh-mys-MacBook com.apple.usbmuxd[699]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    May  2 16:20:48 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.AirPortUtility"
    May  2 16:20:49 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:20:50 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.RemoteDesktopClient"
    May  2 16:20:52 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:20:57 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:21:04 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:21:15 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:21:25 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:21:39 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:21:44 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:21:50 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:21:53 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:21:56 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:21:57 oh-mys-MacBook ntpd[265]: sendto(17.151.16.14) (fd=24): No route to host
    May  2 16:22:05 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:22:29 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:22:46 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:23:28 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:23:29 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:23:33 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:23:34 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:23:35 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:23:36 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.CoreFP"
    May  2 16:23:38 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.CoreFP1"
    May  2 16:23:51 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesX"
    May  2 16:23:52 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesAccess"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesLibrary"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.CoreFP"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.CoreFP1"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesX"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook sudo[797]: root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.S3zXbR/Scripts/com.apple.pkg.AppleMobileDevic eSupport.9yc6lT ; USER=root ; COMMAND=/bin/launchctl unload //System/Library/LaunchDaemons/com.apple.usbmuxd.plist
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.CoreFP"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.CoreFP1"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesX"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:27:00 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:27:40 oh-mys-MacBook com.apple.kextd[10]: Failed to load /System/Library/Extensions/AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:27:40 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:03 oh-mys-MacBook Software Update[689]: REQ: moving files into place with shove
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:29:17 oh-mys-MacBook com.apple.kextcache[882]: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    May  2 16:29:19 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:30 oh-mys-MacBook com.apple.kextcache[881]: Source directory has changed since starting; not saving cache file /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.D51389B2.
    May  2 16:29:33 oh-mys-MacBook com.apple.kextcache[882]: Source directory has changed since starting; not saving cache file //System/Library/Caches/com.apple.kext.caches/Startup/Extensions.mkext.
    May  2 16:29:34 oh-mys-MacBook com.apple.kextcache[880]: Child process /usr/sbin/kextcache[882] exited with status 4.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: async child pid 881 exited with status 4
    May  2 16:29:45 oh-mys-MacBook com.apple.kextcache[884]: / locked; waiting for lock.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: Failed to load /System/Library/Extensions/AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: kextcache error while updating / (error count: 1)
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: async child pid 880 exited with status 70
    May  2 16:29:51 oh-mys-MacBook kextd[10]: updated kernel boot caches
    May  2 16:29:51 oh-mys-MacBook com.apple.kextd[10]: kextcache succeeded with '/'.
    May  2 16:29:51 oh-mys-MacBook com.apple.kextcache[884]: Lock acquired; proceeding.
    May  2 16:29:51 oh-mys-MacBook com.apple.kextcache[884]: /: no supported helper partitions to update.
    May  2 16:29:51 oh-mys-MacBook kextd[10]: updated kernel boot caches
    May  2 16:29:55 oh-mys-MacBook defaults[918]: \nThe domain/default pair of (/Users//Library/Preferences/.GlobalPreferences, AppleLocale) does not exist
    May  2 16:29:55 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:29:56 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:30:05 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:30:18 oh-mys-MacBook MRTAgent[1357]: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: Fri May  2 16:30:18 oh-mys-MacBook.local MRTAgent[1357] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May  2 16:30:18 oh-mys-MacBook MRTAgent[1357]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: Fri May  2 16:30:18 oh-mys-MacBook.local MRTAgent[1357] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:30:18 oh-mys-MacBook /System/Library/CoreServices/MRTAgent.app/Contents/MacOS/MRTAgent[1357]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:30:26 oh-mys-MacBook com.apple.kextd[10]: Failed to load AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:30:26 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:31:51 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:31:51 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:32:02 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:32:17 oh-mys-MacBook com.apple.kextd[10]: Failed to load AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:32:17 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:32:20 oh-mys-MacBook sudo[1434]: root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.S3zXbR/Scripts/com.apple.pkg.AppleMobileDevic eSupport.9yc6lT ; USER=root ; COMMAND=/bin/launchctl load //System/Library/LaunchDaemons/com.apple.usbmuxd.plist
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.CoreFP"
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.CoreFP1"
    May  2 16:32:21 oh-mys-MacBook com.apple.usbmuxd[1435]: usbmuxd-268.5 on Apr  5 2012 at 15:33:48, running 64 bit
    May  2 16:32:22 oh-mys-MacBook com.apple.kextcache[1428]: / locked; waiting for lock.
    May  2 16:32:27 oh-mys-MacBook com.apple.kextcache[1416]: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesX"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.a

    and this keeps happening
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib".
    ACL found but not expected on "private/var/root/Library".
    Repaired "private/var/root/Library".
    ACL found but not expected on "private/var/root/Library/Preferences".
    Repaired "private/var/root/Library/Preferences".
    Permissions repair complete
    Verifying volume “Untitled 1”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Stopped by user
    Checking extents overflow file.
    Checking catalog file.
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib".
    ACL found but not expected on "private/var/root/Library".
    Repaired "private/var/root/Library".
    ACL found but not expected on "private/var/root/Library/Preferences".
    Repaired "private/var/root/Library/Preferences".
    Permissions repair complete
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/V

  • Exclude column from interactive report when exporting data

    Hello!
    Is it possible to exclude column from exporting (using bi publisher) in interactive report, but having in report. So in report it is, but in export result it isnt :). I know, that I can just not to select this column in "Action" menu before exporting, but then to select it to view in report. But is it possible not to export this column, but having it in report result?
    I Just have a checkbox in report, and I dont need to see it in export result.
    APEX 4.1.
    Thanks !
    Edited by: go0ze on Sep 28, 2012 1:40 AM

    Hi,
    Set condition type PL/SQL Expression to column and enter to Expression 1
    NVL(:REQUEST,'EMPTY') NOT IN('CSV', 'XLS', 'PDF', 'RTF', 'XML', 'HTMLD')Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

Maybe you are looking for

  • Reg:creation of tcode for wdabap app

    hi all i have created a t code for wdabap application by specifying the application name .but still it is asking the application name once again when we run the TCODE   even though i have mentioned it in se93 TCODE.Experts could u please share your k

  • File/FTP error

    Hi, Iam using a J2se file adapter for connecting to a FTP and picking the files.The following error has been shown and could't process the files- 13:09:40 (4029): Process 1 file(s): 13:09:40 : example.txt 13:09:58 (4030): Start processing "BIN" file

  • Issue with AFAB (Depreciation Posting)

    We have recently gone live with AA. When I try to run depreciation AFAB, SAP gives me the error " You can only post in new year after closing the previous year. Message no. AA687 Diagnosis You want to post in a new fiscal year. However, a posting mus

  • Beats audio program not work

    hi i have a HP Pavilion dv6-6c20ed Entertainment Notebook it a very nice thing but i have a question the beat program dos not work i have a beats headset but if i want to trun the bass to high its not work can you please help me?

  • Synatax Query - Less than or Equal to

    Running on Linux, Apache, MySQL, PHP I have an issue with a date query - possibly created by the MySQL format YYYY-MM-DD I want to create a recordset where activities are less than or equal to today's date. I've managed most of it but the result seem