How to reinstall OS X? Disk Utility error. HELP!

My iMac failed start up normally so I have to enter the recovery mode (by holding the option key or command+R).
After researching online, I found my mac might have been corrupted. So I tried to use the first aid option in disk utility to verify and repair it but evertime I clicked repair, it shows a message "Error: Disk Utility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files.""
I don't think I have a time machine backup as I tried the time machine back up option but there were no back-ups found. I can't create one now either since I'm on the starting gray screen. So I don't want to erase and reinstall since I don't have a back up.
So then I tried to reinstall OS X (Yosemite). But after following the first few steps, when it asks to choose the disk where you want to install the OS, it either says "this disk is locked" or "cannot install on Macintosh/Recovery HD." I still have about 273 GB available.
I've tried all this many times but it doesn't seem to work. I'm really stuck now and don't know any other option so please HELP!

If you want to preserve the data on the startup drive, and it's not already backed up, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data, you can skip this step.
There are several ways to back up a Mac that is not fully functional. You need an external hard drive or other storage device to hold the data.
1. Start up from the Recovery partition, from Internet Recovery, or from a local Time Machine backup volume (option key at startup.) Launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
If you use FileVault 2, then you must first unlock the startup volume. Select its icon ("Macintosh HD," unless you gave it a different name.) It will be nested below another disk icon, usually with the same name. Click the Unlock button in the toolbar. Enter your login password when prompted.
2. If Method 1 fails because of disk errors, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
3. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
4. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.

Similar Messages

  • How do i run the disk utility to repair permissions:confused;

    how do i run the disk utility to repair permissions
    i think i hav the same problem as you all iv been
    restarting and deleting and renstaling but nothing seems to work
    the only thing i havent don is this repair prmission
    thing can someone type some instuctions on how or lead me where to
    go

    are you using mac OS10.2 or later?
    if so, this is what I did to solve this most frustrating
    problem. Go to Applications/Utilities/Disk Utilities
    In the Disk Utility window, click on your hard drive, make
    sure you're in the First Aid tab, then click on Repair Disk
    Permissions.
    Once the permissions were repaired, I took the advice of
    another user here on the forum and reinstalled Flash Player 6, as
    it was the one that was working before I tried to upgrade and it
    screwed everything up.
    Hope this helps

  • Disk Utility Error: The underlying task reported failure on exit 1

        #!/bin/bash
          # Author : Bill Hernandez
        # Location : Plano, Texas
        # Updated : Saturday, June 6, 2009 (1:48 PM)
        # script name : setdisk_ownerenabled
        # make sure to set permissions to execute
        <hr>
        # Description :
        <hr>
        # I've noticed that sometimes when using disk utility I cannot repair permissions, or I might get :
        # ERROR: The underlying task reported failure on exit 1
        # This shell script seems to have solved the problem.
        # It worked very well for me,
        # IF YOU USE THIS SCRIPT, IT IS AT YOUR OWN RISK...
        # DO NOT USE IT UNLESS YOU UNDERSTAND WHAT IT DOES
        # After running it, it is best to restart before using Disk Utility again
        <hr>
        # Details :
        <hr>
        # After partitioning a disk using "Disk Utility", and then begin using it, at some point I would get
        # an arror message when trying to save to one of the partitions, yet when I looked at the permissions
        # everything looked fine. I would then try to use Disk Utility to repair permissions and end up with a
        # cryptic error that pretty much told me nothing.
        # I noticed that while in Disk Utility, if I selected a partition the lower LH corner of the dialog
        # showed : Owners Enabled : No
        # I tried selecting the partitions at the Desktop and doing a (CMD-I) and at the very bottom of each
        # info dialog there was a checkbox :
        # [ ] ignore ownership of this volume
        # which I would check, even after logging in as root, and I couldn't seem to get a consistent way
        # to get rid of the permissions dialog failure, so I found the vsdbutil command which can be used
        # as follows to get partition, or disk info :
        # $ vsdbutil -c /Volumes/driveor_partitionname
        # ----> Permissions on '/Volumes/driveor_partitionname' are enabled.
        # if it is not enabled you can enable the disk or partition using :
        # $ vsdbutil -a /Volumes/driveor_partitionname
        # It will set "Owners Enabled : Yes"
        # This below script loops through the mounted disks, partitions, etc. and gives you information.
        # You can leave the three flags below all set to TRUE, or selectively use what you want and change
        # the rest to false...
        <hr>
        # CHOOSE {"TRUE", "FALSE"}
        <hr>
        getvolumestatus="TRUE"         # get "Owners Enabled : (Yes|No)" status
        setvolumestatus="TRUE"         # set "Owners Enabled : Yes"
        list_volumes="TRUE"                   # show volume names
        <hr>
        # DO NOT CHANGE ANYTHING BELOW HERE
        <hr>
        if [ $getvolumestatus == "TRUE" ]; then
         echo '============================='
         echo '$getvolumestatus'
         echo '============================='
         # get "Owners Enabled : (Yes|No)" status
         for i in $( df -l | sort -u | awk '{print $6}' | grep '/' ); do
         vsdbutil -c $i
         done
        fi
        <hr>
        if [ $setvolumestatus == "TRUE" ]; then
         echo '============================='
         echo '$setvolumestatus'
         echo '============================='
         sudo echo -n
         # set "Owners Enabled : Yes"
         for i in $( df -l | sort -u | awk '{print $6}' | grep '/' ); do
         sudo vsdbutil -a "$i"
         echo "setting Owners Enabled : Yes for ---> $i"
         done
        fi
        <hr>
        if [ $list_volumes == "TRUE" ]; then
         echo '============================='
         echo '$list_volumes'
         echo '============================='
         for i in $( df -l | sort -u | awk '{print $6}' | grep '/' ); do
         echo $i
         done
        fi
        <hr>
        

    As it turns out, this didn't completely solve the problem, it solved part of the problem.
    Here is a summary to the root cause of the problem.
    SUCCESS...
    Problem Summary : The system crashed and would hangup during boot, tried many things, until I eventually erased the disk and started over again.
    iMacG5 24 GHZ Intel with One internal disk partitioned into 3 logical drives
    Cub_1 OS X 10.5.7
    Cub_2 OS X 10.5.7 (Carbon Copy Cloner backup of Cub_1)
    Cub_3 OS X Server 10.5.7 (standard os x server setup)
    At some point after setting up standard preferences, OS X Server crashed.
    When I tried to restart, the machine would hang up during boot.
    Finally after several attempts, ran Disk Utility from install dvd and repaired Cub_3
    When I tried to run "Repair Permissions" on Cub_3 from install dvd, I got an error
    Disk Utility Error: The underlying task reported failure on exit 1.
    Rebooted, and started in single user mode (CMD-S) during boot until I saw the unix commands on the screen
    RAN : root # fsck -fy
    Then I began seeing the same command filling the screen :
    posix_spawnp("/usr/sbin/mDNSResponder") could not find file or directory
    Called Enterprise Support and spoke to Frank Alcorn, he said this was most likely a permissions problem and asked me to try repairing permissions from the install dvd. I told him about the error, but nevertheless I tried it again and got the same Disk Utility Error: The underlying task reported failure on exit 1..
    He asked me to try booting into single user mode again, and to try
    root # chmod 775 /
    root # reboot
    During the reboot process the machine got hung up again, and could not get the single user mode to work at all.
    Frank said the command needed to be :
    root # chmod 1775 /
    Frank asked me if I had changed anything in file sharing, and I told him I had. He asked me what I had shared, and I said the entire drive Cub_3. He asked me what I had done for permissions, if I had denied permissions to anyone. I told him that I had set myself up as the only user that could have access to it, and when he said that's where the problem was the lightbulb went off, and it made sense.
    Shortly after I set the sharing preferences is when the server crashed. It all makes sense now...
    Frank said not to share the entire disk, only portions (share points) of it. I had done this in Panther Server, and Tiger Server and it worked fine, but apparently Leopard Server works a little differently, maybe more secure.
    It seems to me that if sharing the entire disk, which is what I needed would cause such a problem there should have been some sort of warning from the operating system, but there wasn't. I had run into this problem several times over the past three weeks since I had started working with Leopard Server, but in each case I ended up re-installing OS X Server and starting over again.
    I told him I would try to reboot from the OS X partition (Cub_1) and try it from there.
    He asked me to let him know if it worked, and I said I would...
    Problem FIX :
    I booted back into the partition containing OS X (Cub_1) and did the following via the Terminal.
    $ su - root
    $ chmod 1775 /
    $ reboot
    During the reboot process I held down the (OPTION) key, and selected Cub_3 (the os x server partition) and sure enough after a few minutes of holding my breath the login window magically appeared. So I logged in, and did not have to re-install the server. Hallellujah....
    This solved the boot hang problem. It is great to finally have an answer. In retrospect it makes sense, but that's why its hindsight...
    The reason for sharing the entire disk in my mind was that since I was the only user on the system, it was easier to have one disk mounted on my workstation rather than several folders. It made sense to me, it still does. I don't need a bunch of folders, just one disk is easier...

  • TS1388 hello..i am getting a screen when i turn my laptop on theta says OSX utilities....restore, reinstall osx  or disk utility....what does this mean

    Hello.. I am getting a screen when i turn my laptop on startup says OSX utilities....restore, reinstall osx  or disk utility....what does this mean?

    Hi, that sounds like it's booting from a Restore partition, but that is only for 10.7 & up, you list 10.6.8 though.
    Anyway, hold alt key at bootup, what boot choices are shown?

  • Disk Utility - Error message...how do I fix this???

    My powerbook has been running a little sluggish, so I decided to run Disk Utility and the following message appears:
    First Aid failed.
    The underlying task reported failure on exit.
    Can anyone let me know how to solve this???

    Hi, ejji. Without knowing which routine you were running, it's pointless to guess at what the problem might be. Try the following:
    Boot the Powerbook to your most recent retail OS X installer disc; use Disc 1, if it's a set. Note: (DO NOT use your Intel iMac installer disc(s) on the Powerbook.) Open Disk Utility from the Installer menu. Select the hard drive and the First Aid tab, then click "Repair Disk". This may be the same thing you were doing when the error message appeared before. If it is, repeating the procedure won't do any harm and might do some good. If you don't get a similar error message this time, repeat the process until DU has given you two consecutive "Appears OK" verdicts. If that doesn't happen after half a dozen runs, you'll need either to buy and use a more powerful disk Utility like DiskWarrior or TechTool Pro, or erase the drive completely and reinstall everything on it.
    If you do get two consecutive "Appears OK" outcomes from the Repair Disk routine, try the Repair Permissions routine next.
    Post back with results and/or additional questions.

  • Disk Utility Error "no valid packages"

    Hi,
    I have a PowerBook G4 with 1GB RAM.
    I've noticed a significant system slowdown lately. Programs take longer to open and respond, and it's rather annoying. I came to the forums to seek some remedy, and tried to run a Disk Utility to check that everything there is at least okay. But when I click on verify permissions, I get an error that says "no valid packages." Does anyone know what this means and how to fix it (if it needs fixing; I'm assuming this isn't a good thing, whatever it is!).
    Thanks.
    Lori

    Hi librarygirl and Welcome to the Discussions!
    Mac OS X 10.3, 10.4: Disk Utility shows a "No Valid Packages" alert
    Disk Utility can't verify or repair permissions on the Mac OS X 10.3 or 10.4 volume if the "BaseSystem.pkg" file is not in /Library/Receipts.
    This alert appears when you try to repair permissions with Disk Utility:
    "First Aid failed
    "Disk Utility stopped repairing permissions on '(volume name)' because the following error was encountered: No valid packages"
    In the Disk Utility text window, this message appears in red text:
    "Error: No valid packages (-9997)"
    This happens when the BaseSystem.pkg file is not in /Library/Receipts.
    Solution
    If you've moved this file, move it back to /Library/Receipts. You shouldn't normally remove any files from /Library/Receipts.
    If the file has been deleted, replace it by copying it from a different computer that uses Mac OS X 10.3 or 10.4, or by reinstalling Mac OS X 10.3/10.4 from an installation disc.
    "Reinstall" means you can install 10.3 or 10.4 from a disc, if it's the same version of 10.3/10.4 (such as 10.3.3 on both the installation disc and computer). If the version of 10.3/10.4 on the computer is newer than what's on the install disc, then use the install disc to perform an Archive and Install installation instead, then update to a later version of Mac OS X.
    Joe

  • Disk utility errors...

    I just reformatted my hardrive to free it from problems and now after reinstalling everything, disk utility shows these readouts which I assume are errors. First I give the verify read out followed by repair readout. Are these issues? How can I fix them? Any input would be greatly appreciated! Sorry it is SOSO long
    Thank you,
    TM
    Verify permissions for “Macintosh HD”
    Determining correct file permissions.
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AboutBox.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AddBookmark.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AppPreferences.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/CCLineWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/CCPageWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipPanelBookmarks.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipPanelVideoClips.nib/objects.xib . New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ContextualMenus.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DVDHorController.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DVDVerController.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DockMenu.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/LastPlay.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/MenuBar.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/NavigatorDashboard.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsDashboard.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelColor.nib/object s.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelEQ.nib/objects.x ib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelZoom.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelDisc.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelFullScreen.nib/objects.xi b. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelPlayer.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelPreviouslyViewed.nib/obje cts.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/RegionChange.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SettingNameDlg.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SettingNameSheet.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/StatusWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SupportedFeaturesWindow.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/TimerSettings.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/VideoClip.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/Viewer.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/FadeWind.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/MacOS/AddressBook. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Resources/ABLargeTypeWindow.nib/key edobjects.nib. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Resources/abPlugin-Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Icon.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/Calculator.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/MacOS/Calendar. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/Resources/Englis h.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Icon.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/bar_left.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/barleftpressed.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/bar_right.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/barrightpressed.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/divider_line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/MacOS/Dictio nary. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/version.plis t. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTracker.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/MacOS/FlightTrackerCom boBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/MacOS/YPComboBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Stickies.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/backside.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/down.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/list-background.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-first.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-last.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-middle.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_3line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_6line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_7line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_bottom.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_chartgradient.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocksgraphbkgd.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstable_bottomdk.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstable_bottomlt.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstabledk.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstablelt.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstabletop.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/up.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/UnitConverter.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Weather.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/WorldClock.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets. New permissions are 16877
    We are using a special gid for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New gid is 0
    We are using special permissions for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New permissions are 33261
    We are using special permissions for the file or directory ./usr/lib/php/build/Makefile.global. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/acinclude.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/mkdep.awk. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/phpize.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/scanmakefilein.awk. New permissions are 33060
    Permissions verification complete
    The privileges have been verified or repaired on the selected volume
    And
    Repairing permissions for “Macintosh HD”
    Determining correct file permissions.
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AboutBox.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AddBookmark.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AppPreferences.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/CCLineWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/CCPageWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipPanelBookmarks.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipPanelVideoClips.nib/objects.xib . New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ContextualMenus.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DVDHorController.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DVDVerController.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DockMenu.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/LastPlay.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/MenuBar.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/NavigatorDashboard.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsDashboard.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelColor.nib/object s.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelEQ.nib/objects.x ib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelZoom.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelDisc.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelFullScreen.nib/objects.xi b. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelPlayer.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelPreviouslyViewed.nib/obje cts.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/RegionChange.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SettingNameDlg.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SettingNameSheet.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/StatusWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SupportedFeaturesWindow.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/TimerSettings.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/VideoClip.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/Viewer.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/FadeWind.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/MacOS/AddressBook. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Resources/ABLargeTypeWindow.nib/key edobjects.nib. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Resources/abPlugin-Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Icon.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/Calculator.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/MacOS/Calendar. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/Resources/Englis h.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Icon.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/bar_left.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/barleftpressed.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/bar_right.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/barrightpressed.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/divider_line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/MacOS/Dictio nary. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/version.plis t. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTracker.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/MacOS/FlightTrackerCom boBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/MacOS/YPComboBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Stickies.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/backside.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/down.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/list-background.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-first.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-last.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-middle.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_3line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_6line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_7line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_bottom.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_chartgradient.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocksgraphbkgd.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstable_bottomdk.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstable_bottomlt.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstabledk.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstablelt.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstabletop.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/up.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/UnitConverter.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Weather.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/WorldClock.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets. New permissions are 16877
    We are using a special gid for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New gid is 0
    We are using special permissions for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New permissions are 33261
    We are using special permissions for the file or directory ./usr/lib/php/build/Makefile.global. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/acinclude.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/mkdep.awk. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/phpize.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/scanmakefilein.awk. New permissions are 33060
    Permissions repair complete
    The privileges have been verified or repaired on the selected volume

    Hi T.M. --
    Does this look familiar:
    Repairing permissions for “Macintosh HD”
    Determining correct file permissions.
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AboutBox.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AddBookmark.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/AppPreferences.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/CCLineWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/CCPageWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipPanelBookmarks.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipPanelVideoClips.nib/objects.xib . New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ClipWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/ContextualMenus.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DVDHorController.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DVDVerController.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/DockMenu.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/LastPlay.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/MenuBar.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/NavigatorDashboard.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsDashboard.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelColor.nib/object s.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelEQ.nib/objects.x ib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PlayerSettingsPanelZoom.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelDisc.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelFullScreen.nib/objects.xi b. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelPlayer.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelPreviouslyViewed.nib/obje cts.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/PrefsPanelWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/RegionChange.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SettingNameDlg.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SettingNameSheet.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/StatusWindow.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/SupportedFeaturesWindow.nib/objects .xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/TimerSettings.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/VideoClip.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/English.lproj/Viewer.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Applications/DVD Player.app/Contents/Resources/FadeWind.nib/objects.xib. New permissions are 33204
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/MacOS/AddressBook. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Resources/ABLargeTypeWindow.nib/key edobjects.nib. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/Resources/abPlugin-Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/AddressBook.widgetplugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Icon.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Address Book.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/Calculator.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calculator.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/MacOS/Calendar. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/Resources/Englis h.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Calendar.widgetplugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Icon.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/bar_left.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/barleftpressed.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/bar_right.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/barrightpressed.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Images/divider_line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Calendar.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/MacOS/Dictio nary. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Dictionary.widgetplugin/Contents/version.plis t. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Dictionary.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTracker.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/MacOS/FlightTrackerCom boBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/FlightTrackerComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Flight Tracker.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/English.lproj/InfoPlist.strings. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/PhoneBook.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/MacOS/YPComboBoxPlugin. New permissions are 33261
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/YPComboBoxPlugin.plugin/Contents/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Phone Book.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/Stickies.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stickies.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/English.lproj/localizedStrings.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/backside.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/down.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/list-background.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-first.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-last.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/selection-middle.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_3line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_6line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_7line.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_bottom.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocks_chartgradient.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stocksgraphbkgd.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstable_bottomdk.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstable_bottomlt.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstabledk.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstablelt.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/stockstabletop.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Images/up.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.css. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.html. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/Stocks.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Stocks.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/UnitConverter.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Unit Converter.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Default.png. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/Weather.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/parser.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/Weather.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/Info.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/WorldClock.js. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets/World Clock.wdgt/version.plist. New permissions are 33188
    We are using special permissions for the file or directory ./Library/Widgets. New permissions are 16877
    We are using a special gid for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New gid is 0
    We are using special permissions for the file or directory ./System/Library/CoreServices/Dock.app/Contents/MacOS/Dock. New permissions are 33261
    We are using special permissions for the file or directory ./usr/lib/php/build/Makefile.global. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/acinclude.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/mkdep.awk. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/phpize.m4. New permissions are 33060
    We are using special permissions for the file or directory ./usr/lib/php/build/scanmakefilein.awk. New permissions are 33060
    Permissions repair complete
    The privileges have been verified or repaired on the selected volume
    The above is my readout after repairing permissions. I didn't compare it line by line, but it looks pretty darn similar to your readout, and my machine's operating just fine.
    I don't think you have anything to worry about.
    There are lots of messages reported by Disk Utility during the permissions repair process that are normal, customary and may be safe ignored: http://docs.info.apple.com/article.html?artnum=107298
    The important thing is that you get the message at the end that "the privileges have been verified or repaired on the selected volume."
    -- JDee

  • Intel iMac won't boot & Disk Utility error-can't verify disk

    I posted earlier today that my 24" intel iMac (2.4Ghz Core 2 Duo) froze yesterday after a Safari crash. I had to shut it down with the power button. Since then it won't start up. Sometimes it starts, then shuts off. Other times it starts, then the little gear just spins. I've done the keyboard commands for RAM, the complete disconnect of power, then reconnect, and the Disk Uitility with the install disk. When I do Disk Utility to verify, it gives me a red-letter error that it cannot verify on both verification checks. I have also tried, via the install disk, to repair by using a Time Machine backup, but that utility has been spinning and spinning on my Time Machine for hours, and I cannot even click the "Continue" button because it is busy (checking the time machine?) 
    I am out of ideas as to how to move on from here. My AppleCare expired 2 months ago, so that's a problem. I've had no major issues before now, except for earlier this year when Mail wouldn't open for some reason. Anyway, I'm at my wits' end here. I NEED my Mac. I'm disabled and have no better source of entertainment or socializing. My hobbies are editing audio, video, & photos. Without my Mac, I'm just in the middle of the sea in a raft with no oars. Any helpful suggestions will obviously be much appreciated. Thanks.

    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.

  • MacBook Pro Stuck in Recovery Loop; Disk Utility Error

    I am getting the error: Disk Utility Stopped Repairing "disk0s2" - says disk utility can't repair the disk and I will need to reformat the disk and restore my files. This appears to be the startup disk (could be wrong) - as I am currently in recovery mode and any time I reboot, I am taken back to recovery mode and there are no start-up disks available to be selected.
    When I run Disk Utility on my Internal HD (or what appears to be - this is 250 GB Hitachi) - I get the all clear that everything appears to be working correctly.
    I do have TMbackups saved to a NAS. My MacBook Pro has been running very slowly as of recent (slight boost after upgrading to Yosemite, but then returned to slow performance).
    I am running OS X Server on it - and have considered migrating that to a Mac Mini (yet to be purchased) - but want to get a better idea of options before I pull that trigger. I also want to make sure my MacBook Pro is recoverable and can still be used.
    1. What is the risk of reformatting just the startup disk "disk0s2"? Is that even possible?
    2. Is MacBook Pro in need of service at the apple store? Or can this be completed by me? (I have above average ability, but no wizard)
    3. My logic on best practice to recover MBP and then add Mac Mini, migrating OS X Server to it: (all recommendations/suggestions welcome)
    a. reformat MBP startup disk
    b. restore TMbackup
    c. use migration wizard to migrate OS X Server to Mac Mini
    d. reformat MBP again, starting from scratch and install fresh copy of Yosemite
    I had also considered just a fresh build of OS X Server on a new Mac Mini and starting fresh with the MBP. I don't use a ton of services on OS X Server so think my rebuild would be less time intensive than most.
    Appreciate all the feedback.

    Well, your hard drive (flash storage) is good, at least. Here's what I would try next (before making a trip to the Apple Store or an AASP):
    Boot into your Recovery partition and reinstall OS X. This won't damage or erase any of your user files, etc., just give you a fresh installation of Mountain Lion. Since your hardware seems to be OK, it could be that the system has just become corrupt and reinstalling it may 'fix' the problem.
    Call back if that doesn't work...
    Clinton

  • How do I use Disk Utility to help install Mountain Lion after many failed attempts?

    I tried to install Mountain Lion from an App onto my MacBook.
    First it said that my disk was damaged to i tried to repair it.
    Didn't work.
    Then it said I didn't have enough room to install Mountain Lion.
    Then I tried to restore Lion.
    Didn't work.
    Then someone suggested I reset my PRAM.
    Tried that, and now I am stuck.
    I can't restore any of my backups from timeline.
    I can't reinstall OSX because my drive is now locked.
    And I don't know how to use Disk Utility to solve this problem!
    Any suggestions welcome... I'm in way deeper than I understand and feel like anything I do is making this worse!

    I gather that your computer is in a less than satisfactory state, so the process below will basically start you from scratch, but you shouldn't lose anything.
    Okay, can you inspect the Time Machine Backups with the Finder? About two or so folders down you should start seeing your system files. Assuming all your files are present.
    Important^
    You probably have an installation disk that came with your macBook.  Boot from that CD and install from the CD.
    Run the verify disk utilites and repair utilities if necessary.
    You may want to erase your disk from the CD's disk utility. This will erase your Hard Drive (make sure you do not erase your backups, as that would be very bad).
    Once the installation is complete, run all system updates. Either look through your backup and find the Mountain lion installation app, or download it from the app store again. 
    Run the ML installtion app.
    Once everything is up and running, move all files and folders you want from your TM backups and you should be good to go.

  • Disk Utility Error-Please Help

    I tried to repair my hard disk. I couldn't repair straight away as the repair button was greyed out so I varified the HD. The message came up:
    *Disk Utility*
    *First Aid*
    *Disk Utility stopped verifying “Macintosh HD” because the following error was encountered:*
    *The underlying task reported failure on exit*
    The result of the varifacation was:
    *Verifying volume “Macintosh HD”*
    *Checking HFS Plus volume.*
    *Checking Extents Overflow file.*
    *Checking Catalog file.*
    *Incorrect size for file objects.nib*
    *(It should be 0 instead of 4514)*
    4514
    *ng multi-linked files.",0)*
    *Checking Catalog hierarchy.*
    *Checking Extended Attributes file.*
    *Checking volume bitmap.*
    *Checking volume information.*
    *he volume %@ needs to be repaired.",1)*
    *Macintosh HD*
    *Error: The underlying task reported failure on exit*
    *1 HFS volume checked*
    * Volume needs repair*
    Could someone please advise me how to fix this.
    Thank you.
    Simon

    You can only Repair Disk from a different boot volume so boot from your Tiger installer disk, select your language and then from the menu>Utilities>Disk Utility. select your hard drive and then Repair Disk. If Disk Utility can't repair it you will need a stronger utility like DiskWarrior to rebuild the directory.

  • Is my HD Dead? Reformat Disk Utility Error: secure disk erase failed with the error could not open disk.

    Hi,
    Fed up with seeing the spinning beach ball I decided to reformat my MacBook Pro...
    After backing up everything on an external hard drive I put in the OSX install DVD, restarted the machine and held down 'C'.
    I followed the install prcedure, clicking next a few times etc...
    I then went into Utilities > Disk Utility. I chose 7-Pass to erase the Macintosh HD and set it off erasing.
    I checked the process an hour in and message on screen read:
    Secure disk erase failed with the error:
    could not open disk
    The internal hard drive no longer exists in the disk utility so I cant retry erasing it.
    The only thing that appears in disk utility is the OSX install DVD.
    I can't even shut down the mac as everything under the apple tab is greyed out!
    I'm guessing this means my hard drive is broken right?
    If anyone has any other ideas of what to try I'd really appreciate that.
    How do I turn the machine off?
    If my hard drive is gone then should I consider getting an SSD drive?
    Any recommendations for such a drive would be great.
    Hope you can help!

    Did you partition the drive?
    Extended Hard Drive Preparation
    1. Open Disk Utility in your Utilities folder. If you need to reformat your startup volume, then you must boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger or Leopard.)
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area. If it does not say "Verified" then the drive is failing or has failed and will need replacing. SMART info will not be reported on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Click on the Options button, set the partition scheme to GUID (only required for Intel Macs) then click on the OK button. Set the number of partitions from the dropdown menu (use 1 partition unless you wish to make more.) Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the volume(s) mount on the Desktop.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    Steps 4-6 are optional but should be used on a drive that has never been formatted before, if the format type is not Mac OS Extended, if the partition scheme has been changed, or if a different operating system (not OS X) has been installed on the drive.

  • Disk Utility Error 61 when attempting to create disk image on external driv

    I would like to make occasional archive backups of my three macintosh computers. I bought a new Western Digital 2TB drive for this purpose, and formatted it as Mac OS Extended. Trying to do a disk image backup using Disk Utility, I follow the directions:
    - Startup from an install DVD.
    - Start Disk Utilities and select "Restore"
    - Drag "Macintosh HD" into the Source box
    - Click on "New Image" and select compressed and 128-bit AES encryption
    This leads to the error message: Unable to create "....." (error -61)
    I have enocountered this problem both with my iMac G5 and a MacBook, both running Leopard.
    Does anyone know what this error means, what I am doing wrong, and/or if there is another way to create disk image backups? Help!

    1. For reasons I don't know disc images seem to become more fragile the larger they get. They also can be subject to file corruption that affects the entire disc image, whereas file corruption on a clone would only affect certain files.
    2. You cannot put multiple clones on the same volume. Each clone must be on a separate volume, but you can have multiple volumes on a single drive simply by partitioning the drive accordingly. Of course you need a drive large enough to accommodate each clone. Each clone should be to a space equal to the capacity of the cloned drive.
    3. I'm not a big fan of TM, although I must confess it has become more reliable since it's release, especially with Snow Leopard. However, there are many backup utilities that can create clones, perform incremental updates, and archive changed files. See the following:
    Backup Software Recommendations
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    Silver Keeper
    MimMac
    Retrospect
    Super Flexible File Synchronizer
    SuperDuper!
    Synchronize Pro! X
    Synk Pro
    Synk Standard
    Tri-Backup
    Others may be found at VersionTracker or MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore. Also read How to Back Up and Restore Your Files.

  • Help with Disk Utility error message.

    I just ran the repair utility via the installation disk, and at first I got this:
    Checking HFS Plus Volume
    Invalid node structure
    Invalid node structure
    Volume Check Failed
    Error: The underlying task reported failure on exit
    1 HFS Volume
    1 volume could not be repaired because of an error.
    I ran it for a second time, and got the same message, only my Macintosh HD, which is listed at the side, had been renamed to disk1s2.
    I then ran it for a third time and got this.
    Checking HFS Plus Volume
    Checking Extents Overflow
    Checking Catalog File
    Invalid Node Stucture
    Rebuilding Catalog B-tree
    The Volume Macintosh HD could not be repaired
    Error underlying task reported failure on exit
    1 HFS Volume Check
    1 volume could not be repaired because of an error.
    What does all his mean? How can I repair my disk? My computer is acting up. The cursor turns into the coloured busy symbol at the slightest thing. It can stay busy for really long, preventing me from doing anything. I then have to shut down and restart. I've also received the flashing question mark when trying to restart.

    Paul Rybarczyk1 wrote:
    First of all, Dale, you gotta change your closing to these messages! "Cheers!" doesn't quite do it!
    I'm open to suggestions! I am tired of it now too!
    Anyway, why would everything be working OK before the update if my computer was so bad?
    That happens. Applying an update sometimes makes the problems more noticeable.
    Luckily, I managed do back up everything on my two external HDs with no problems.
    What kind of backup? If it's a clone, it will have the same serious error you have now; unless it was done a while back, before any issues were there.
    things seem to freeze up when I'm doing lots of multitasking.
    Because you have serious directory corruption.
    But maybe it's time for a new machine sooner than I planned?
    This is repairable by you. It's possible a piece of hardware, think bad RAM, could cause this directory corruption.
    Try running your Apple Hardware Test to see if it flags anything.
    Cheers! DALE

  • Worrying Disk Utility Error Message

    When I click verify disk in Disk Utility, a worrying error message comes up saying " The underlying task did not complete on exit" giving the error message
    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.
    Invalid volume free block count
    (It should be 24694657 instead of 24694833)
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    I can't repair the volume as it is greyed out.
    Help! This is a brand new MacBookPro, I've only had it a couple of days!

    So far I have never had any problems with them personally so I don't do an Erase & Install.
    I'm sure we're all happy for you although problems do happen. Problems with the installation and even hardware problems. Thing is, often these issues aren't apparent until some time later.
    The way I see it, the time and effort required to do an "Erase and Install" (which include a zero write to the drive) is a known… about 3 hours. To my mind, even there's a remote chance that this stops a potential problem in its tracks before it's a problem it's worth the time spent. 3 hours over the lifetime of a Mac OS X installation is not a lot to give up.
    Additionally, by zero writing to a drive, it does allow you to see if your drive is on one way performing correctly. All four of my 300GB drives in my Mac Pro wrote zeros within one minute of each other. I know these drives won't have issues when being told to write a ton of data. Whithout doing this I would never know.
    Now I did the same thing with my parents' 750GB drives and one finished in 3 hours and the other was still going at 5 hours. Now you can't tell me there's not something up there. So at what point would you like to have found that out?
    How much time, let alone money, does it cost to do something later on?
    Just like tools like Monolingual. How many issues with updates are caused by such tools? Again, how much time is lost to debug and maybe fix such issues? Thing is, we don't know although if you had a customised installation from the outset it wouldn't matter as you wouldn't be using such tools.
    But hey… everyone's got their own opinion. All I know is that my systems always seem to go better and faster than every other Mac owners I know.

Maybe you are looking for

  • Error while working with RFC_ABAP_INSTALL_AND_RUN

    hi, Thanks for help in adv, but i am  using RFC_READ_TABLE but it can not work on multiple table. Now i got the way to read multiple table using RFC_ABAP_INSTALL_AND_RUN , while testing in R/3 it works fine that the result WRITES-ZEILE shows characte

  • How to use --version-script option of gnu ld on SunOS

    I use --version-script=gnu-ld-script to build my c++ source on linux successfully. The file gnu-ld-script has only one line like this: EXPORTED { global: mozembed_main; local: *; }; how can i build the source on SunOS/Solaris, given that there is on

  • Help to calculate Hour per unit

    I have this project for almost a month now and I cannot find a solution: The project is called PA HPU calculation. *Actual HPU = Actual Hours / Actual Units* I have a cube: hour Cube will give me the Actual Hours. Actual Units will be calculated from

  • Web Services - UDDI Context Menu

    Hi I have been following the documentation on the creation of a web service and all was well until I wanted to pubish it.  The documentation tells me to right click on the UDDI icon in the variants tab of the Virtual Interface and select publish. How

  • Lync 2013 causes Access 2010 to reconfigure when opeining

    Hello, We are using Lync Basic 2013 as our Lync client and Office 2010 for everything else. We are having a strange issue with one of our machines, which belongs to my boss, incidentally. Every time she opens Access, it runs through the reconfigure p