Kappy wrote:
The Home folder itself should be:
Owner = username with r/w privileges
Group = admin with r/w privileges
Everyone = read-only privileges
That's
not correct.
In Leopard the default is:
Owner = username with r/w privileges
Group =
staff with
read-only privileges
Everyone = read-only privileges
If you have migrated your user accounts from a previous version of OS X, there might be a different name specified for
group, such as "wheel", or a group matching the username, or "admin" if the account had been an admin account.
The standard folders inside the Home folder are the same.
That's also incorrect; the permissions on most of the default ones (Documents, Desktop, Library, Pictures, Movies, Music) are read and write for the user, and No Access for group and others. The Public and Sites folders, as well as any folders the user creates himself, are read and write for the user, and read only for group and others.
You can open the Terminal application in your Utilities folder and enter the following:
sudo chown -R username:admin
There should be a "space" after "admin." Drag the Home folder to the Terminal window and press RETURN. You will be prompted for your admin password which will not be echoed.
sudo chmod -R 755
Place a "space" after "755" then drag the Home folder into the Terminal window and press RETURN.
That is also
not correct. Running that command is going to give all users read access to his Documents, Desktop, Music, Pictures, Movies, and Library folders. He can certainly set it up that way if he wants and give other users read access to his entire home folder, but that is NOT the OS X default. The default on all of those folders is No Access to group and others.
Running the chmod -R 755 command as you wrote it will also add the executable but to all the user's
files in addition to his folders. That is also not correct. Files should not have the executable bit set unless they are meant to be so (such as on shell scripts and the like).