Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- thanks, i couldnt remember.
- I did this in Garage band, but if forced me to trip the song to 8 seconds in order to send it to itunes ringtones - any ideas on this? Using the new 3GS.
- Please dont remove this Folder, It occupies only 315 MB and is useful for your Office 2003.... SRIKANTH
- that still wont work and i got no idea about registery could use help
- Thanx for help
Tech-Recipes
Cookbook of Tech TutorialsUNIX: advanced octal file permissions with chmod | UNIX | Tech-Recipes
Started by qdideas · 9 months ago
4 years ago
AIX directories often have setgid set sometimes.
Using chmod 0755 or 0750 if hardening is needed.
remove setgid from dir with symbolic representaion
drwxrws--- ie in octal 2750 change to safer nonsetgid
drwxrwx--- ie in octal 0750
with
chmod 0750 dirname
Usual ownership requirements apply.
Note it is possible to get uppercase S appearing in ls -l output if setgid is set but no execute permissions are set. it means setgid is ineffective.