I found the following in my archives.
I didn't write it.
I'm just re-posting it -- perhaps it may help:
========================================
I called Apple and they gave me the solution :
http://discussions.apple.com/thread....35132�
Quote:
I found a solution that worked.
In Terminal type the following sequence (obviously replace "Volumename with the name of your volume):
sudo chflags 0 /Volumes/Volumename
sudo chown 0:80 /Volumes/Volumename
sudo chmod 775 /Volumes/Volumename
sudo chmod -N /Volumes/Volumename
but if your hard drives name includes a [space] like this: "My HD", then you must write the command like this:
Quote:
sudo chflags 0 /Volumes/firstname\ secondname
sudo chown 0:80 /Volumes/firstname\ secondname
sudo chmod 775 /Volumes/firstname\ secondname
sudo chmod -N /Volumes/firstname\ secondname
or like in my example:
Quote:
sudo chflags 0 /Volumes/My\ HD
sudo chown 0:80 /Volumes/My\ HD
sudo chmod 775 /Volumes/My\ HD
sudo chmod -N /Volumes/My\ HD
It saved both my drives! THANK YOU APPLE!!!
Originally Posted by angelwatt
Thanks for posting the solution you found.
Just to give some more info, for those who care, about the above commands I'll give a brief description of what each line does (as I understand them).
chflags 0 removes all flags from the file(s)
chown 0:80 ensures root:admin (owner:group) permissions so the system can access the files
chmod 775 adjusts file permissions so you and your group have read/write/execute permissions
chmod -N removes the ACL (Access Control Lists) from the named file(s)