Permissions mystery: can you tell me what this means?

Repairing permissions for “MR DATA”
Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
Warning: SUID file "System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Reso urces/Locum" has been modified and will not be repaired.
Permissions repair complete

these messages are harmless and should be ignored. everybody gets them.

Similar Messages

  • Repeating Message in Console.  Can you tell me what this means?

    Hello. I am receiving this repeating message in console every 10 seconds and I think it's the result of a application that I once had that I removed many months ago and apparently I'm being pinged or something. How can I get rid of this?
    I had at one time a wireless Nikon digital camera wireless software installed that I've removed but apparently something somewhere in my mac is trying to communicate with Nikon...in Japan! Does this look right? Any help would be greatly appreciated....
    1/22/08 6:49:37 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[291]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:49:37 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[291]) Exited with exit code: 1
    1/22/08 6:49:37 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum) Throttling respawn: Will start in 10 seconds
    1/22/08 6:49:47 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[292]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:49:47 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[292]) Exited with exit code: 1
    1/22/08 6:49:47 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum) Throttling respawn: Will start in 10 seconds
    1/22/08 6:49:57 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[294]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:49:57 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[294]) Exited with exit code: 1
    1/22/08 6:49:57 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum) Throttling respawn: Will start in 10 seconds
    1/22/08 6:50:07 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[296]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:50:07 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[296]) Exited with exit code: 1

    There is still a piece of the software that is trying to startup, but cannot. launchd is the daemon in charge of starting things and trying to make sure they keep running. It is not trying to contact Japan--certain files are named in reverse domain name format.
    Try looking in a StartupItems folder or the LaunchDaemons folder in you user Library or the main Library folders.

  • Since passing to ML, I have a message, in French, which is: La connexion au serveur a échoué. Les URL de type "file" ne sont pas prises en charges.  Can you tell me what this means and how to get rid of it? thank you.

    What does this message mean?
    La connexion au serveur a échoué.  Les URL de type "file" ne sont pas prises en compte.
    thank you.

    Without more information, ie what were you trying to do when you got this message, it is very hard to answer your question. If you were trying to access a webpage it means the server the page is on had a problem. If you were doing something else please post back and someone may have the answer.

  • Can you tell me what this means?

    Im getting a horrible like bad color tv problem on the top of my monitor.
    http://i235.photobucket.com/albums/ee55/xjman349er/Picture2.png
    Any advice would be awesome.

    I suspect that's a problem with the graphics memory but;
    Try running Utilities/ColorSynch Utility and 'Repair Profiles'
    Try doing a Parameter RAM reset - hold down apple/option/p/r keys at start up and wait for three chimes before releasing the keys.
    If they don't help, Boot from Install DVD1 holding down 'd' and run the Hardware tests to see if it finds anything.

  • I get an error message on Lynx, can someone tell me what this means?

    When I check my home page on lynx I get what I would expect 2 links to 2 galleries below that the alt text for my logo and the photograph, and the footer info with an e-mail link.  If I click any link I get a message "Bad Request - Your browser sent a request this server could not understand, the request contained invalid characters following the protocol string."  All the links on the site  www.hayhurst-photography.com  do work.  Should this show the next page (there are 42 others each have a table with 21 links + 3).  Can you tell me what this means?  and which are the invalid characters?
    Thanks Chris

    I just tested your pages using Firefox and IE7.  I could click on both Business and Commercial links and venture into the inner pages with no error message showing up at all.  Clicking on any of the thumbnails showed the larger images, again, with no error messages.
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Can you tell me what this code does?

    Can you tell me what this code does?
    import java.io.*;
    class Assignment1
    public static String[][] tdi = {     {"Paris", "418", "Rome", "55"},
                             {"Liverpool", "121", "Copenhagen", "35"},
                             {"Liverpool", "418", "Paris", "50"},
                             {"Liverpool", "553", "Frankfurt", "55"},
                             {"Frankfurt", "553", "Budapest", "50"},
                             {"Amsterdam", "121", "Madrid", "65"},
                             {"Amsterdam", "418", "Paris", "35"},
                             {"Madrid", "121", "Stockholm", "90"},
                             {"Budapest", "553", "Warsaw", "30"},
                             {"Copenhagen", "121", "Amsterdam", "35"},
                             {"Rome", "418", "Amsterdam", "60"},
    //--Start Method--
    public static void main( String args[] ) throws IOException
    System.out.println("Welcome to NoWings Airline.");
    InputStreamReader input = new InputStreamReader(System.in);
    BufferedReader keyboardInput = new BufferedReader(input);
    System.out.println("Please enter the airport you wish to depart from:");
    String[] info = TDIDLL.searchDest( keyboardInput.readLine() );
    if (info == null)
    System.out.println("Sorry, no plane to this destination");
    else
    System.out.println(info[0]+" departing at platform "+info[1]); }}
    public static String[] searchDest( String dest )
    String[] result = null;
    for(int i = 0; i < tdi.length; i++)
         if (tdi[1].equals(dest)) {
         result = new String[2];
         result[0] = tdi[i][0];
         result[1] = tdi[i][2];
         return result;
    return result; }
    // Info Method //
    // Fly Method //
    // Exit Method //
    Thanks. Also, can you tell me where I have gone wrong in the code.
    Much appreciated.

    Can you tell me what this code does?Why don't you run it and find out for yourself?

  • On my new iPad under the space category it shows I have 5.5gb occupied by 'Other" data - Can you tell me what this is exactly and how can I reduce it Thank-you

    On my new iPad under the space category it shows I have 5.5gb occupied by 'Other" data - Can you tell me what this is exactly and how can I reduce it
    Thank-you

    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • "CAHeadless error Sequence.cpp-2233" after computer starts up.  Can you tell me what this is or how to fix it?  Thanks!

    Since installing Adobe Premier Elemnts 12 I get a message that says "CAHeadless error Sequence.cpp-2233" after computer starts up.  Can you tell me what this is or how to fix it?  Thanks!

    If you are using Firefox 3.6.6 version, open Tools > Options >> Advanced - Network
    The under Connections hit the Settings button - then select '''No proxy''' at the top of those settings. Restart Firefox and you should be all set.
    ''(3.6.6 added a new setting there - Use system proxy settings and sets that as the Default setting)''

  • Everytime i try to download illustrator an error occurs U44M1I210. Can you tell me what this is? I even tried uninstalling an downloading the cloud again, but the same error occurs.

    Everytime i try to download illustrator an error occurs U44M1I210. Can you tell me what this is? I even tried uninstalling an downloading the cloud again, but the same error occurs.Everytime i try to download illustrator an error occurs U44M1I210. Can you tell me what this is? I even tried uninstalling an downloading the cloud again, but the same error occurs.

    U44M1I210 - Creative Cloud Help / Error U44M1I210 | Install updates :
    http://helpx.adobe.com/creative-suite/kb/error-u44m1i210-installing-updates-ccm.html

  • When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Updating iphone 4 to iOS 5 - while doing the Backup I receive an error message no 402636788 - backup has failed. Can anybody tell me what this means or how I can fix this?

    Updating iphone 4 to iOS 5 - while doing the Backup I receive an error message no 402636788 - backup has failed. Can anybody tell me what this means or how I can fix this?
    I am working on a Win 7 Machine and I have disabled all Firewall and Antivirus Tasks as this caused problems on an other update.

    Well - I synced before - that was successful - but I am a bit scared to ignore this error and just to continue? You think I should ignore that?

  • On my list of calls made/received some of them have an icon which is a phone handset and something else.  Can you tell me what this is and where to I D icons?

    On my list of incoming/outgoing phone calls some of them have an icon beside the name which is a telephone handset and something else I don't recognize.  Can anyone tell me what it means and where to find a list of icon explanations?  Thanks. 

    You're probably talking about the handset with an arrow pointing up and to the right. That indicates an outgoing call.

  • MBA hardware test error code: 4MEM/1/40000000:0x79flae98. Can anybody tell me what this means and how to fix the problem if ever possible? Thanks!

    As mentioned in the subject line: my Mid 2009 MBA freezes frequently. The hardware test provides the error code.
    It sounds like a failed RAM but it still works when booted.
    Can anybody tell me what was wrong with this MBA and what else can I do to save it?
    Thanks!

    Welcome to the Apple Support Communities
    That's a RAM issue. If you want, you can still use your Mac until it gets damaged, but that message tells something bad with your RAM, and what it's worse, the RAM in the MacBook Air is soldered onto the logic board, so if you take the Mac to an Apple Store or reseller to get it repaired, the whole logic board will have to be replaced, making this repair so expensive

  • I had to dump my drive and when I restored it and I tried to open Dreamweaver, I'm getting this error message 150:30.  Can you tell me what this is

    I need help.  When I restored my hard drive and tried to open dreamweaver it gave me this error message  150:30.  It's telling me that the licensing for this product has stopped working.  Can you explain

    Use the CS Cleaner Tools and Re-install your software.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Nancy O.

  • PLEASE CAN YOU TELL ME WHAT THIS ERROR MEANS?

    The script attached to my button reads:-
    //This script takes the user to Scene 1 when opendoor is
    released
    on(Release) = function (){
    gotoAndStop("Scene 1", 1);
    The errors in the Output Panel are:-
    **Error** Scene=Scene 2, layer=door, frame=1:Line 2: '{'
    expected
    on(Release) = function () {
    **Error** Scene=Scene 2, layer=door, frame=1:Line 4:
    Statement must appear within on handler
    I will be eternally grateful to anyone who can sort me out!!

    SLMHILL wrote:
    > The script attached to my button reads:-
    >
    > //This script takes the user to Scene 1 when opendoor is
    released
    > on(Release) = function (){
    > gotoAndStop("Scene 1", 1);
    > };
    >
    > The errors in the Output Panel are:-
    >
    > **Error** Scene=Scene 2, layer=door, frame=1:Line 2: '{'
    expected
    > on(Release) = function () {
    >
    > **Error** Scene=Scene 2, layer=door, frame=1:Line 4:
    Statement must appear
    > within on handler
    > };
    >
    > I will be eternally grateful to anyone who can sort me
    out!!
    >
    >
    >
    SLMHILL,
    You're mixing two ways of writing event handlers. If you want
    to attach
    the script to your button directly, use this code:
    on(Release) {
    gotoAndStop("Scene 1", 1)
    Or, if you want to place all of the scripting in one place,
    on a frame
    on the main timeline, you would use the code below.
    opendoor.onRelease = function (){
    gotoAndStop("Scene 1", 1);
    To do this, make sure your button on the stage has an
    instance name of
    "opendoor" -- instance name is in the Properties panel.
    Then make a new layer called "actions" and make sure to click
    on it in
    the timeline, then open the Actions panel and write the code.

Maybe you are looking for

  • What is "Other" in iPod Touch Storage?

    What is the "Other" in iPod Touch Storage on my ipod touch 5th genereation? I have over 2GB of Other and I have 32GB. Is it IOS 7?

  • A guide for unlocking cores

    This may be an old topic but I am new to doing anything with core unlocks. I will provide my specific 800 series board ident shortly. My question is:  is there a guide for doing this at the Forum or elsewhere? Are there other materials such as BIOS m

  • Admin Privilige required to intall Dreamweaver and other apps.

    Adobe Application Manager has now properly installed.  However when i attemp to install Dreamweaver or other apps, the installation fails citing:  "Administrator privileges required to install.  Please quit and rerun in Administrator Mode.  I am the

  • BAD SITUATION....

    Hai All, I am Farooq working in Tulip as ABAPer. I joined this company in August. And 'am the only ABAPer for this company. As I do not have Prior SAP Experince & 'am alone, I have lot of trouble at work. I am trying things but its very difficult wit

  • Anyone know of  will making software for macbook pro?

    Is there any available software for the mac that does legal wills, trusts etc?