SW-6509-FWSM failover Troubleshooting First aid

Fault Description:
(1)
active  FWSM and standby FWSM  inside interface Between,ping fails。
on side FWSM---active: ping 172.17.1.50 -------OK,ping 172.17.1.49------ping fails;
on side FWSM---standby: ping 172.17.1.49--------OK,ping 172.17.1.50-------ping fails;
but,active  FWSM and standby FWSM  outside interface between,ping OK。
on side FWSM---active:ping 172.17.1.36  、  ping 172.17.1.37、ping 172.17.1.35/33/34/、ping www.baidu.com -----------All OK;
on side FWSM---standby:ping 172.17.1.36 、  ping 172.17.1.37 、ping 172.17.1.35/33/34/、ping www.baidu.com-----------All OK;
(2)
Another problem:
active  FWSM and standby FWSM  inside interface,ping  7706-------All fails。
Summary:May be caused fwsm。
Topology :Attachment
FWSM :
FWSM#                       show failover state
====My State===
Primary | Active |
====Other State===
Secondary | Standby |
====Configuration State===
    Interface config Syncing - STANDBY
    Sync Done
====Communication State===
    Mac set
=========Failed Reason==============
My Fail Reason:
    Ifc Failure
Other Fail Reason:
    Comm Failure
FWSM# show failover
Failover On
Failover unit Primary
Failover LAN Interface: lan Vlan 997 (up)
Unit Poll frequency 1 seconds, holdtime 15 seconds
Interface Poll frequency 15 seconds
Interface Policy 50%
Monitored Interfaces 42 of 250 maximum
Config sync: active
Version: Ours 4.0(13), Mate 4.0(13)
Last Failover at: 19:08:24 Beijing Dec 2 2013
    This host: Primary - Active
        Active time: 358944 (sec)
    Interface outside (172.17.1.36): Normal
    Interface inside (172.17.1.49): Normal (Not-Monitored)
    Other host: Secondary - Standby Ready
        Active time: 0 (sec)
    Interface outside (172.17.1.37): Normal
    Interface inside (172.17.1.50): Normal (Not-Monitored)
(Not-Monitored) -----------------??????

That's what I thought but the again, from the 6500 config prompt I actually get echo replys(!) from the FWCTX, with capture enabled as:
     access-list CAP permit ip any any
     capture mgmt access-list CAP interface MGMT packet-length 1500 circular-buffer
But it shows blank and no hit counts. Same happens usind RTMonitor in ASDM (6.2.(2f)) some packets that are permited and routed correctly aren't actually noticed. I don't get any logging for the missing/dropped/denied echo replies from the FWCTX to the 6500 MSFC nor for the successful replies from the 6500 to the FWCTX withh ASDM Debugging logging on.

Similar Messages

  • Ask the Expert:Configuring, Troubleshooting & Best Practices on ASA & FWSM Failover

    With Prashanth Goutham R.
    Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about the Configuring, Troubleshooting & Best Practices on Adaptive Security Appliances (ASA) & Firewall Services Module (FWSM) Failover with Prashanth Goutham. 
    Firewall Services Module (FWSM) is a high-performance stateful-inspection firewall that integrates into the Cisco® 6500 switch and 7600 router chassis. The FWSM monitors traffic flows using application inspection engines to provide a strong level of network security. Cisco ASA is a key component of the Cisco SecureX Framework, protects networks of all sizes with MultiScale performance and a comprehensive suite of highly integrated, market-leading security services.
    Prashanth Goutham is an experienced support engineer with the High Touch Technical Support (HTTS) Security team, covering all Cisco security technologies. During his four years with Cisco, he has worked with Cisco's major customers, troubleshooting routing, LAN switching, and security technologies. He is also qualified as a GIAC Certified Incident Handler (GCIH) by the SANS Institute.
    Remember to use the rating system to let Prashanth know if you have received an adequate response. 
    Prashanth might not be able to answer each question due to the volume expected during this event. Remember that you can continue the conversation on the Security sub-community forum shortly after the event. This event lasts through July 13, 2012. Visit this forum often to view responses to your questions and the questions of other community members.

    Hello John,
    This session is on Failover Functionality on all Cisco Firewalls, im not a geek on QOS however i have the answer for what you need. The way to limit traffic would be to enable QOS Policing on your Firewalls. The requirement that you have is about limiting 4 different tunnels to be utilizing the set limits and drop any further packets. This is called Traffic Policing. I tried out the following in my lab and it looks good.
    access-list tunnel_one extended permit ip 10.1.0.0 255.255.0.0 20.1.0.0 255.255.0.0access-list tunnel_two extended permit ip 10.2.0.0 255.255.0.0 20.2.0.0 255.255.0.0access-list tunnel_three extended permit ip 10.3.0.0 255.255.0.0 20.3.0.0 255.255.0.0access-list tunnel_four extended permit ip 10.4.0.0 255.255.0.0 20.4.0.0 255.255.0.0    class-map Tunnel_Policy1     match access-list tunnel_one   class-map Tunnel_Policy2     match access-list tunnel_two   class-map Tunnel_Policy3     match access-list tunnel_three   class-map Tunnel_Policy4     match access-list tunnel_four  policy-map tunnel_traffic_limit     class Tunnel_Policy1      police output 4096000   policy-map tunnel_traffic_limit     class Tunnel_Policy2      police output 5734400   policy-map tunnel_traffic_limit     class Tunnel_Policy3      police output 2457600    policy-map tunnel_traffic_limit     class Tunnel_Policy4      police output 4915200service-policy tunnel_traffic_limit interface outside
    You might want to watch out for the following changes in values:
    HTTS-SEC-R2-7-ASA5510-02(config-cmap)#     policy-map tunnel_traffic_limitHTTS-SEC-R2-7-ASA5510-02(config-pmap)#      class Tunnel_Policy1HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#       police output 4096000HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#     policy-map tunnel_traffic_limitHTTS-SEC-R2-7-ASA5510-02(config-pmap)#      class Tunnel_Policy2HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#       police output 5734400WARNING: police rate 5734400 not supported. Rate is changed to 5734000    
    HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#HTTS-SEC-R2-7-ASA5510-02(config)#     policy-map tunnel_traffic_limitHTTS-SEC-R2-7-ASA5510-02(config-pmap)#      class Tunnel_Policy3HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#       police output 2457600WARNING: police rate 2457600 not supported. Rate is changed to 2457500HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#     policy-map tunnel_traffic_limitHTTS-SEC-R2-7-ASA5510-02(config-pmap)#      class Tunnel_Policy4HTTS-SEC-R2-7-ASA5510-02(config-pmap-c)#       police output 4915200WARNING: police rate 4915200 not supported. Rate is changed to 4915000I believe this is because of the software granularity and the way IOS rounds it off in multiples of a certain value, so watch out for the exact values you might get finally. I used this website to calculate your Kilobyte values to Bits: http://www.matisse.net/bitcalc/
    The Final outputs of the configured values were :
        Class-map: Tunnel_Policy1      Output police Interface outside:        cir 4096000 bps, bc 128000 bytes        conformed 0 packets, 0 bytes; actions:  transmit        exceeded 0 packets, 0 bytes; actions:  drop        conformed 0 bps, exceed 0 bps     Class-map: Tunnel_Policy2      Output police Interface outside:        cir 5734000 bps, bc 179187 bytes        conformed 0 packets, 0 bytes; actions:  transmit        exceeded 0 packets, 0 bytes; actions:  drop        conformed 0 bps, exceed 0 bps    Class-map: Tunnel_Policy3      Output police Interface outside:        cir 2457500 bps, bc 76796 bytes        conformed 0 packets, 0 bytes; actions:  transmit        exceeded 0 packets, 0 bytes; actions:  drop        conformed 0 bps, exceed 0 bps    Class-map: Tunnel_Policy4      Output police Interface outside:        cir 4915000 bps, bc 153593 bytes        conformed 0 packets, 0 bytes; actions:  transmit        exceeded 0 packets, 0 bytes; actions:  drop        conformed 0 bps, exceed 0 bps
    Please refer to the QOS document on CCO here for further information: http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/conns_qos.html
    Hope that helps..

  • Aperture First Aid won't launch

    Had a USB hub fail while my Aperture library was open, which evidently caused some database corruption. Read up on how to use the Aperture 3 First Aid function to repair...but the thing _will not launch_. Every time I try and launch Aperture (whether by launching the app directly or by double clicking the library) while holding down Command-Option, it just gives me the standard "database error" message.
    I've trashed the user/plist file for Aperture, no change. I've reinstalled Aperture from scratch....no change. First aid just will not launch, no matter what I seem to do.
    Help!

    So the drive was connected to your Mac through a hub. The Aperture library is on this drive. The hub failed while Aperture had this library opened. You fixed the hub or reconnected the drive through another USB port. And finally there is no backup.
    Accurate so far?
    Did you try to open the library and get an error message and then try running the library first aid or did you go straight to first aid?
    Is the external disk formatted OS X Extended? Do you have room to make a copy of the library? If you do it would be a good idea to do so before proceeding. It is always possible that while troubleshooting you could make things worst and having a BU of the library, even though it is messed up would be a good thing.
    Some things to try:
    Run +Disk Utility+ *disk repair* on the affected drive. If Disk Utility reports that if fixed something keep running it until it reports that the drive 'appears ok'. Try Aperture now, fixed?
    If no then start Aperture by holding the ⌥ (option) key only. This will bring up Aperture's library chooser. Create a new empty library. Try to merge the corrupted library into the new empty library. Aperture will still need to repair the library but some users have reported success doing it this way when trying to fix the library from the first aid window failed.
    Begin a backup program.

  • Disk utilities first aid question, possible issues?

    I was having a OCR issue with my Epson Wf-7520 printer and to support guy had me do run this disk first aid and I came up with a whole long list of things that could be a problem with my computer... do I leave it alone and live with it or do I do something to fix it and this is causing problems with my computer?  Here is the long list for your perusal.
    Thanks for any help with this...
    Verifying permissions for “Macintosh HD”
    Permissions differ on “Applications/Safari.app/Contents/Resources/Japanese.lproj/BookmarkTitleChange. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/Safari.app/Contents/Resources/pt.lproj/BookmarkTitleChange.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Warning: SUID file “System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent” has been modified and will not be repaired.
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AACEncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AskUser.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AskUserWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AutofillSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/BurnSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/CDInfo.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ConvertID3.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/EQPresets.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ErrorReportDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/FormatPopup.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/HomeSharingServerSettin gs.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ImportSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogArtworkView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogInfoView.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogLyricsView.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleInfoV iew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleItem. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleOptio nsView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleSorti ngView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleVideo View.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogOptionsView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogSingleItem.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogSortingView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogSummaryView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogVideoView.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/MP3EncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/MainMenu.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/OrganizeLibraryOptions. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PCMEncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PodcastSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogAdvancedView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogAppleTVView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogDevicesView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogGeneralView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogMessageView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogParentalView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogPlaybackView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogSharingView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogStoreView.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/Printing.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ProgressDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PromptForLongString.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PromptForPassword.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PromptForShortString.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/Report.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SelectString.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SelectStringWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SmartPlaylistEditor.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StoreAuthDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/UniversalAccess.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/AACEncoderConfig.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/AskUser.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/AskUserWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/AutofillSettings.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/BurnSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/CDInfo.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/ConvertID3.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/EQPresets.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/ErrorReportDialog.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/FormatPopup.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/HomeSharingServerSett ings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/ImportSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogArtworkView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogInfoView.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogLyricsView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleInf oView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleIte m.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleOpt ionsView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleSor tingView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleVid eoView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogOptionsView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogSingleItem. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogSortingView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogSummaryView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogVideoView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/MP3EncoderConfig.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/MainMenu.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/OrganizeLibraryOption s.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PCMEncoderConfig.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PodcastSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogAdvancedVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogAppleTVVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogDevicesVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogGeneralVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogMessageVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogParentalVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogPlaybackVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogSharingVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogStoreView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/Printing.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/ProgressDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PromptForLongString.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PromptForPassword.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/PromptForShortString. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/Report.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/SelectString.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/SelectStringWide.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/SmartPlaylistEditor.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/StoreAuthDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/English.lproj/UniversalAccess.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/AACEncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/AskUser.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/AskUserWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/AutofillSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/BurnSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/CDInfo.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/ConvertID3.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/EQPresets.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/ErrorReportDialog.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/FormatPopup.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/HomeSharingServerSetti ngs.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/ImportSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogArtworkView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogInfoView.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogLyricsView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleInfo View.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleItem .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleOpti onsView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleSort ingView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleVide oView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogOptionsView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogSingleItem.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogSortingView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogSummaryView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogVideoView.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/MP3EncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/MainMenu.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/OrganizeLibraryOptions .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PCMEncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PodcastSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogAdvancedVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogAppleTVView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogDevicesView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogGeneralView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogMessageView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogParentalVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogPlaybackVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogSharingView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogStoreView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/Printing.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/ProgressDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PromptForLongString.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PromptForPassword.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/PromptForShortString.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/Report.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/SelectString.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/SelectStringWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/SmartPlaylistEditor.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/StoreAuthDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/French.lproj/UniversalAccess.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/AACEncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/AskUser.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/AskUserWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/AutofillSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/BurnSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/CDInfo.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/ConvertID3.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/EQPresets.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/ErrorReportDialog.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/FormatPopup.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/HomeSharingServerSetti ngs.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/ImportSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogArtworkView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogInfoView.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogLyricsView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogMultipleInfo View.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogMultipleItem .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogMultipleOpti onsView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogMultipleSort ingView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogMultipleVide oView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogOptionsView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogSingleItem.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogSortingView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogSummaryView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/InfoDialogVideoView.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/MP3EncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/MainMenu.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/OrganizeLibraryOptions .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PCMEncoderConfig.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PodcastSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogAdvancedVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogAppleTVView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogDevicesView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogGeneralView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogMessageView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogParentalVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogPlaybackVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogSharingView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PrefsDialogStoreView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/Printing.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/ProgressDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PromptForLongString.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PromptForPassword.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/PromptForShortString.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/Report.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/SelectString.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/SelectStringWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/SmartPlaylistEditor.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/StoreAuthDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/German.lproj/UniversalAccess.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/AACEncoderConfig.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/AskUser.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/AskUserWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/AutofillSettings.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/BurnSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/CDInfo.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/ConvertID3.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/EQPresets.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/ErrorReportDialog.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/FormatPopup.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/HomeSharingServerSett ings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/ImportSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogArtworkView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogInfoView.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogLyricsView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogMultipleInf oView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogMultipleIte m.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogMultipleOpt ionsView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogMultipleSor tingView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogMultipleVid eoView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogOptionsView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogSingleItem. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogSortingView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogSummaryView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/InfoDialogVideoView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/MP3EncoderConfig.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/MainMenu.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/OrganizeLibraryOption s.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PCMEncoderConfig.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PodcastSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogAdvancedVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogAppleTVVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogDevicesVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogGeneralVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogMessageVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogParentalVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogPlaybackVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogSharingVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PrefsDialogStoreView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/Printing.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/ProgressDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PromptForLongString.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PromptForPassword.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/PromptForShortString. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/Report.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/SelectString.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/SelectStringWide.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/SmartPlaylistEditor.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/StoreAuthDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Italian.lproj/UniversalAccess.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/AACEncoderConfig.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/AskUser.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/AskUserWide.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/AutofillSettings.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/BurnSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/CDInfo.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/ConvertID3.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/EQPresets.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/ErrorReportDialog.ni b”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/FormatPopup.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/HomeSharingServerSet tings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/ImportSettings.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogArtworkVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogInfoView.n ib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogLyricsView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogMultipleIn foView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogMultipleIt em.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogMultipleOp tionsView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogMultipleSo rtingView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogMultipleVi deoView.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogOptionsVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogSingleItem .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogSortingVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogSummaryVie w.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/InfoDialogVideoView. nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/MP3EncoderConfig.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/MainMenu.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/OrganizeLibraryOptio ns.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PCMEncoderConfig.nib ”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PodcastSettings.nib” ; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogAdvancedV iew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogAppleTVVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogDevicesVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogGeneralVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogMessageVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogParentalV iew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogPlaybackV iew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogSharingVi ew.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/PrefsDialogStoreView .nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/Printing.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lproj/ProgressDialog.nib”; should be drwxr-xr-x ; they are -rw-r--r-- .
    Permissions differ on “Applications/iTunes.app/Contents/Resources/Japanese.lpro

    CLICKY CLICK---> http://support.apple.com/kb/TS1448
    Do I need to do what Kappy said? Or just let it go.
    Your printer still not working?  If so, either contact Epson tech support again and/or try the following;
    http://support.apple.com/kb/PH11070 OS X Mountain Lion: Troubleshoot a network printer
    http://support.apple.com/kb/PH11143 OS X Mountain Lion: Reset the printing system
    http://support.apple.com/kb/HT3669 Printer and scanner software available for download
    What to do when you can't print
    Sometimes, installing the GIMP drivers help with printing issues: http://gimp-print.sourceforge.net/MacOSX.php

  • Powerbook G4 stopped working it cuts on but no spinning disc symbol..won't run I installed the start up disk and it starts up  but disk first aid says there is something wrong can't repair it..what do I do now? Do I erase everything and start over?

    The G4 comes on but that is as far as it goes...I installed the startup disc it started  and I  tried disk first aid but it says it can't be repaired????If I erase everything will this fix the problem as well as make me lose everything?
    The firsat aid  box says:
    " REPAIRING DISK FOR "HARD DRIVE"
    checking HFS Plus volume
    Checking events Overflowfile
    Checking catalog file
    Invalid node structure ( this is in RED )
    rebuilding catalog B-tree
    The volume Hard drive can not be repaired  ( in red)
    Error:    The underlying task reported failure on exit  (-9972_)  (in red)
    REPAIR ATTEMPTED ON 1 VOLUME
    0HFS volume repaired  ( in green)
    1 volume could not be repaired (in red)
    [email protected] feel free to send email thanks

    Bryan,
    Do you have a second hard drive?  If you can get the install disk to boot the computer then all is not lost.  Install a clean system on a second hard drive to get back in business.  If you have any backup copies of your software and files, use them to restore your computer to good working condition.
    Then, install some form of data recovery software on your second drive.  The recovery software can look at a bit mapped version of your drive and extract data that may be scrambled but usable.  Think of the drive as a book.  If someone tore out a few pages from the table of contents or index from a book, the main volume would be there but the book would not be repairable.  Or, if the table of contents is OK but someone tore out a chapter or two, the other chapters would be there.  The book is not complete but all is not lost.
    Here is a review to get you up to speed:
    http://data-recovery-software-review.toptenreviews.com/mac-recovery-software/
    Start by getting your computer working off a clean install on a second drive so the data recovery process will work faster and have a destination for the recovered data.
    Jim~
    btw, it is better to list your email as follows: sssail3 at aol dot com.  That format protects agains trolling for email addresses.

  • Disk Utility: First Aid: "Repair Disk" grayed out when i select the HD

    I'm getting the flashing question mark folder icon at startup and my Mac never does start. I'm trying to run through the repair suggestions on this forum and on the support pages but I can't do much of anything with the disk utility. (I've done the reset PRAM step and I've tried reselecting a startup volume both with the startup manager --HD wasn't shown as an option-- and by holding down "X" on startup... neither helped.)
    Under first aid, verify disk permissions, i get the "no valid packages" error message. But "Verify Disk Permissions" is the only button available to me when I select my internal hard disk. The support pages say to "Repair Disk" but I can't select that option.
    I've tried to reinstall the OSX from the CD, but when the installer asks me to select a destination volume, nothing is available to select.
    I am running version 10.4.something at least. My CD is the one that came with the computer a couple of years ago. I have one of the early Intel Macbooks.
    I have an appointment at the Genius Bar after work tonight but I'd love it if I could fix this baby sooner.
    Am I hosed?

    OK- Try a Single User boot- hold command +s while starting, and try and repair with fsck.
    -Startup in Single User mode.
    -At the command-line prompt, type */sbin/fsck -fy*. Press Return.
    fsck will go through five "phases" and then return information about your disk's use and fragmentation. Once it finishes, it'll display this message if no issue is found:
    *The volume (nameofvolume) appears to be OK*
    -If fsck found issues and has altered, repaired, or fixed anything, it will display this message:
    *FILE SYSTEM WAS MODIFIED*
    Important: If this message appears, repeat the fsck command again, until fsck tells you that your volume appears to be OK (first-pass repairs may uncover additional issues, so this is a normal thing to do).
    -When fsck reports that your volume is OK, type *reboot* at the prompt and then press Return.
    -Your computer should start up normally and allow you to log in.
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck

  • Installed the latest Java update today on my older iMac and now it won't boot up at all. 2007 model worked fine this morning, now disk first aid say boot blocks f'ed.

    I am using an older mid 2007 imac 24 inch running snow leopard 10.6.8
    I normally accept software update recs, and today when installing the security update to java, all went fine till restart, when I got the universal "NO" sign, the circle with the line through it and just spinning gray bars underneath.
    Booted from system disks, ran first aid, said the boot block partitions or something like that needed updating but disk appears to be ok. Still not working.
    Do you think Alsoft Disk Warrior will fix? I am running off external back up drive now.
    Thanks for any help or advice. Apple as usual is as useless as tits on a bull, or a screen door on a submarine, pick your simile...

    If your backup's up to date it might be less hassle to erase the internal and clone back from the backup. Don't allow the update next time it appears - you're not the only one having problems it would seem.
    Note; the message "updating boot partitions" is a standard message that appears after a repair run. It won't go away and should be ignored.
    Provided the message "The volume Macintosh HD Seems to be OK" in green has appeared, your disc fle system is fine.
    Message was edited by: noondaywitch

  • Cannot open iPhoto. Cannot open first aid photo utility.

    As per title.
    I tried to open the first aid photo utility as suggested by a number of people. It wouldn't open.
    I have tried moving my iPhoto library elsewhere. My iPhoto would ask me the location of my library. If I proceed to create a new one, iPhoto would hang (i.e "application not responding") as usual.
    I have also tried deleting iPhoto.plist to a no avail.
    Here's the crash report (the first X lines):
    Date/Time:       2012-10-28 16:45:33 -0700
    OS Version:      10.8.2 (Build 12C60)
    Architecture:    x86_64
    Report Version:  11
    Command:         iPhoto
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version:         9.4.1 (9.4.1)
    Build Version:   9
    Project Name:    iPhotoProject
    Source Version:  701067000000000
    Parent:          launchd [785]
    PID:             23241
    Event:           hang
    Duration:        1.51s
    Steps:           16 (100ms sampling interval)
    Hardware model:  MacBookPro10,1
    Active cpus:     8
    Free pages:      1120319 pages (+282)
    Pageins:         0 pages
    Pageouts:        0 pages
    Process:         iPhoto [23241]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Architecture:    i386
    Parent:          launchd [785]
    UID:             182353
    Task size:       10142 pages
    CPU Time:        0.003s
      Thread 0x331e7    priority 40       
      16 ??? (iPhoto + 61253) [0x1cf45]
        16 ??? (iPhoto + 63737) [0x1d8f9]
          16 NSApplicationMain + 1053 (AppKit) [0x99ab56f6]
            16 -[NSApplication run] + 951 (AppKit) [0x99b1272c]
              16 ??? (iPhoto + 523300) [0x8dc24]
                16 -[iLifeKit sendEvent:] + 55 (iLifeKit) [0x221b9eb]
                  16 -[NSApplication sendEvent:] + 4278 (AppKit) [0x99bf8a0f]
                    16 -[NSWindow sendEvent:] + 6968 (AppKit) [0x99bfda21]
                      16 -[NSControl mouseDown:] + 867 (AppKit) [0x99c05db9]
                        16 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 511 (AppKit) [0x99c0669f]
                          16 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1895 (AppKit) [0x99c06e60]
                            16 -[NSCell _sendActionFrom:] + 159 (AppKit) [0x99c088ef]
                              16 -[NSControl sendAction:to:] + 102 (AppKit) [0x99c089e0]
                                16 -[NSApplication sendAction:to:from:] + 436 (AppKit) [0x99c08bd2]
                                  16 -[NSObject performSelector:withObject:] + 70 (libobjc.A.dylib) [0x921f65d3]
                                    16 ??? (iPhoto + 6495020) [0x63fb2c]
                                      16 ??? (iPhoto + 6490705) [0x63ea51]
                                        16 ??? (iPhoto + 2179346) [0x222112]
                                          16 -[NSDocumentController(NSDeprecated) openUntitledDocumentOfType:display:] + 136 (AppKit) [0x99e87fae]
                                            16 ??? (iPhoto + 87820) [0x2370c]
                                              16 -[NSDocument showWindows] + 115 (AppKit) [0x999be183]
                                                16 ??? (iPhoto + 87911) [0x23767]
                                                  16 -[NSWindowController showWindow:] + 36 (AppKit) [0x99c80738]
                                                    16 -[NSWindowController window] + 81 (AppKit) [0x99c3e032]
                                                      16 -[NSWindowController loadWindow] + 231 (AppKit) [0x99c3e39a]
                                                        16 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 154 (AppKit) [0x99c0a9a4]
                                                          16 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 819 (AppKit) [0x99ab9b94]
                                                            16 loadNib + 373 (AppKit) [0x99aba572]
                                                              16 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1180 (AppKit) [0x99adc011]
                                                                16 -[NSSet makeObjectsPerformSelector:] + 228 (CoreFoundation) [0x917a2b64]
                                                                  16 -[NSObject performSelector:] + 62 (libobjc.A.dylib) [0x921f6586]
                                                                    16 ??? (iPhoto + 119473) [0x2b2b1]
                                                                      16 ??? (iPhoto + 121966) [0x2bc6e]
                                                                        16 ??? (iPhoto + 122097) [0x2bcf1]
                                                                          16 ??? (iPhoto + 124238) [0x2c54e]
                                                                            16 ??? (iPhoto + 130191) [0x2dc8f]
                                                                              16 ??? (iPhoto + 9330344) [0x8f3ea8]
                                                                                16 ??? (iPhoto + 990583) [0xffd77]
                                                                                  16 ??? (iPhoto + 3638228) [0x3863d4]
                                                                                    16 CGLChoosePixelFormat + 122 (OpenGL) [0x98a8a15a]
                                                                                       16 ??? (OpenGL + 39086) [0x98a8a8ae]
                                                                                         16 ??? (OpenGL + 26490) [0x98a8777a]
                                                                                           16 cglBadApplicationNotMuxAwareLockDown + 54 (OpenGL) [0x98a87680]
                                                                                             16 ??? (OpenGL + 25212) [0x98a8727c]
                                                                                               16 IOServiceOpen + 93 (IOKit) [0x92e7c7dc]
                                                                                                 16 io_service_open_extended + 171 (IOKit) [0x92ed47b6]
                                                                                                   16 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x91d5a7d2]
                                                                                                    *16 hndl_mach_scall + 222 (mach_kernel) [0xffffff80002ceafe]
                                                                                                      *16 ??? (mach_kernel + 678334) [0xffffff80002a59be]
                                                                                                        *16 mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff800021961b]
                                                                                                          *16 ipc_kmsg_send + 104 (mach_kernel) [0xffffff8000210448]
                                                                                                            *16 ipc_kobject_server + 317 (mach_kernel) [0xffffff8000220aed]
                                                                                                              *16 ??? (mach_kernel + 621871) [0xffffff8000297d2f]
                                                                                                                *16 is_io_service_open_extended + 359 (mach_kernel) [0xffffff8000663ff7]
                                                                                                                  *16 AppleMuxControl::newUserClient(task*, void*, unsigned int, OSDictionary*, IOUserClient**) + 84 (AppleMuxControl) [0xffffff7f82408444]
                                                                                                                    *16 IOWorkLoop::runAction(int (*)(OSObject*, void*, void*, void*, void*), OSObject*, void*, void*, void*, void*) + 65 (mach_kernel) [0xffffff8000646221]
                                                                                                                      *16 AppleMuxControl::newUserClientGated(void*) + 151 (AppleMuxControl) [0xffffff7f824083bb]
                                                                                                                        *16 AppleGraphicsControlClient::start(IOService*) + 36 (AppleMuxControl) [0xffffff7f82408b96]
                                                                                                                          *16 AppleGraphicsControlClient::startEx(IOService*) + 127 (AppleMuxControl) [0xffffff7f82408c2d]
                                                                                                                            *16 AppleMuxControl::addTaskToList(IOService*, unsigned int, char*, bool) + 477 (AppleMuxControl) [0xffffff7f82407a0d]
                                                                                                                              *16 IOEventSource::sleepGate(void*, unsigned int) + 69 (mach_kernel) [0xffffff80006468c5]
                                                                                                                                *16 IOGraphicsWorkLoop::sleepGate(void*, unsigned int) + 106 (IOGraphicsFamily) [0xffffff7f80891d30]
                                                                                                                                  *16 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265fe]
                                                                                                                                    *16 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                                                                                                                                      *16 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                                                                                                                        *16 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d7e]
      Thread 0x331fe    DispatchQueue 1701273966 priority 48       
      16 _dispatch_mgr_thread + 53 (libdispatch.dylib) [0x916b07a9]
        16 kevent + 10 (libsystem_kernel.dylib) [0x91d5d9ae]
         *16 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x3321b    priority 46         cpu time   0.003s
      16 thread_start + 34 (libsystem_c.dylib) [0x9657dcee]
        16 _pthread_start + 344 (libsystem_c.dylib) [0x96593557]
          16 __NSThread__main__ + 1396 (Foundation) [0x98d3a15b]
            16 -[NSThread main] + 45 (Foundation) [0x98d3a1d8]
              16 -[NSUIHeartBeat _heartBeatThread:] + 879 (AppKit) [0x99d01d4d]
                16 usleep$UNIX2003 + 60 (libsystem_c.dylib) [0x9661d92a]
                  16 __semwait_signal + 10 (libsystem_kernel.dylib) [0x91d5cc72]
                   *15 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
                   *1  ??? (mach_kernel + 846365) [0xffffff80002cea1d]
                     *1  unix_syscall + 467 (mach_kernel) [0xffffff80005e1533]
                       *1  __semwait_signal_nocancel + 170 (mach_kernel) [0xffffff80005668da]
                         *1  semaphore_timedwait_trap_internal + 130 (mach_kernel) [0xffffff8000234402]
                           *1  ??? (mach_kernel + 213351) [0xffffff8000234167]
                             *1  thread_block_reason + 275 (mach_kernel) [0xffffff800022d9f3]
                               *1  ??? (mach_kernel + 187521) [0xffffff800022dc81]
                                 *1  processor_idle + 227 (mach_kernel) [0xffffff800022f1c3]
                                   *1  machine_idle + 282 (mach_kernel) [0xffffff80002b8c5a]
      Binary Images:
                  0xe000 -           0xcf4ff3  com.apple.iPhoto 9.4.1 (9.4.1) <681D7622-CF46-3E38-82ED-FD24FEACC84D> /Applications/iPhoto.app/Contents/MacOS/iPhoto
               0x21dc000 -          0x2247fff  com.apple.iLifeKit 1.3.1 (156.11) <D8946F5F-0469-3F5A-821D-BFB61D966524> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
              0x916ac000 -         0x916beff7  libdispatch.dylib <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
              0x91710000 -         0x918f8ff3  com.apple.CoreFoundation 6.8 (744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
              0x91d48000 -         0x91d62ffc  libsystem_kernel.dylib <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
              0x921d8000 -         0x922e5057  libobjc.A.dylib <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
              0x92e77000 -         0x92edfff7  com.apple.framework.IOKit 2.0 <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
              0x9657d000 -         0x9663afeb  libsystem_c.dylib <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
              0x98a81000 -         0x98a8ffff  com.apple.opengl 1.8.6 (1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
              0x98c9c000 -         0x98fb9ff3  com.apple.Foundation 6.8 (945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
              0x999b9000 -         0x9a575ffb  com.apple.AppKit 6.8 (1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    *0xffffff7f8088b000 - 0xffffff7f808a6fff  IOGraphicsFamily <803496D0-ADAD-3ADB-B071-8A0A197DA53D> /System/Library/Extensions/IOGraphicsFamily.kext/IOGraphicsFamily
    *0xffffff7f82402000 - 0xffffff7f82410fff  com.apple.driver.AppleMuxControl 3.2.11 (3.2.11) <9D215B87-F07B-3D3A-984E-5D5493D79624> /System/Library/Extensions/AppleGraphicsControl.kext/Contents/PlugIns/AppleMuxC ontrol.kext/Contents/MacOS/AppleMuxControl
    *0xffffff8000200000 - 0xffffff800074033c  mach_kernel <69A5853F-375A-3EF4-9247-478FD0247333> /mach_kernel

    I just remembered previously that I removed  iTunesHelper from my Login items.
    I just launched iTunes followed by iPhoto. It works.

  • Repairing Library Permissions: But the instructions didn't work  clicking the iPhoto icon with the Option and Command keys opened iPhoto but not the First Aid as promised

    Went to Help.  But the instructions didn't work
    clicking the iPhoto icon with the Option and Command keys opened iPhoto but not the First Aid as promised

    Give this a try:
    1 -be sure to have a current backup of the iPhoto library.
    2 - download and launch http://www.macchampion.com/arbysoft/BatChmod.
    3 - click on the File button, locate and select your iPhoto Library.
    4 - check the Unlock and Apply to enclosed checkboxes.
    5 - make no changes to the other checkboxes
    6 - click on the Apply button.
    OT

  • Major Problem - LCD Screen Unreadable - Using External Monitor - First Aid

    My LCD Screen is cracked, and only 5% of the screen is readable, and I dont have the resources to have it repaired, so have been using an external monitor to do my computing needs.
    However, somehting happened to the OS X, and it MUST be repaired according to Disk First Aid. Putting the CD, and I want to force the output of the CD to be put on the external monitor, not the LCD since I can't read it. How can I make it show on the external monitor?

    Hi Chef
    Insert your System CD an select it as startup volume in "SystemPreferences"/"StartupDisk". Restart your book and close the lid right after the chime. Voilà, your external screen should be main screen now.
    Regards P

  • Older OS Disk Utility first aid use on newer OS

    I have an external drive that has a bootable backup (10.3.7) of my Powerbook. The Powerbook currently is out of commision. I plugged the drive into an iMac and found the drive would not mount. The iMac's OS is 10.0.3. Can I use it's Disk Utility, First Aid to repair the error on the backup drive? The iMac says that there is an "Invalid node structure."

    No, because Disk Utility cannot repair an "invalid node structure" problem. Disk Warrior (www.alsoft.com) may - and I stress "may" - be able to repair the directory, but if not you will need to reformat the drive.

  • No First aid available

    Option+Command click does not bring up First Aid going round in circles simply get the error message:
    " There was an error opening the database for the library “~/Pictures/Aperture Libraries/Aperture Library.aplibrary”. "
    The only option is to quit!

    Tried that and get further error
    Library import Error
    The library cannot be imported because some of the data required for import could not be found.
    Around and around we go. When are Apple going to support this app? Otherwise I'm off to Lightroom.

  • I have a macbook pro os x 10.7.5 and my mail dispappeared from my dock. I cannot get it to reopen. Have tried keychain first aid but there is no problem.

    I have a macbook pro os 10.7.5 and my mail icon has disappeared from my dock with a pop up box that says Mail Quit Unexpectedly. I have used the spotlight to find Mail, and have tried several more times to open the mail, but it closes with the same pop up. I also tried using the keychain first aid, but there is no apparent problem to repair. Anybody have any ideas?

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • First Aid Services reports Errow "Invalid Volume File Count"

    In attempt to deleate a small Windows psrtition and creating a larger new Windows partition, Boot Camp directed to First Aid where the resulting error messages are "Invalid Volume File Count" and Invalid File Count",  Directions to reboot with program disks failed to work.  What next??

    What failed to work? Booting to your OS installer disk or running Repair Disk from Disk Utility when you were booted to the installer disk?

  • Using First Aid in Disk Utility

    I have done the first aid in my disk utility after I had an issue burning a dvd and the help guided me to doing a first aid. This is the following message I received:
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    Volume Header needs minor repair
    The volume Macintosh HD needs to be repaired.
    Stopped by user
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    I tried repairing it and it would not. I googled different problems and saw that buying disk warrior would help repair it. My question is: Is this a big problem that it is identifying the "HPS needs repair"? I just don't know why I would buy something to fix something when I don't know if it really needs fixed. How big is the problem? I really am not having any trouble on my computer. Please help!

    Rebooting from your install disk will not disturb anything. Reboot from your install disk holding down the c key until the Apple logo appears and the gear is moving. Choose your language from the dialogue box and go to Utilities in the menu bar and choose Disk Utility. Click on First Aid, highlight your drive in the left-hand column and then hit Repair Disk.

Maybe you are looking for

  • How to get that the invoice has been printed or not?

    Hi Experts, I have a issue in Printing Invoice. I have to make 2 copies of an invoice. One is Original and another is Duplicate. I have made that with copy windows. But the requirement is that when the original copy of a selected invoice has been pri

  • How Many computers can I install the same product on?

    For example If I had purchased the creative cloud membership and my computer has been smashed, when I by a new one will I be able to use the creative cloud on that one and install my applications again and again if my computer keeps breaking because

  • Installing Flash Player on Windows Vista for Dell

    I am trying to install the lastest version of Flash Player on a computer system that has a specific version of Vista on it. It has the version that is specific for Dell computers. I have administrator permissions on the computer but it says that it d

  • Notes App That Can Import Word Docs and Record Audio

    I have Pages now which you can import Word docs to. I have another app that can record audio and take notes, but you can't import documents. Is there an app that does both? Import Word docs that I can edit and then also record audio at the same time?

  • Trunking on Nexus 5000 to Catalyst 4500

    I have 2 devices on the each end of a Point to Point.  One side has a Nexus 5000 the other end a Catalyst 4500.  We want a trunk port on both sides to allow a single VLAN for the moment.  I have not worked with Nexus before.  Could someone look at th