I have a directory that has rwxrwsr-x as its permissions and I need to set group to rwx. How can I do this on the command-line? I have root access.
+1
A:
rwxrwsr-x
means that the set group ID is set. You can turn off set GID by doing this:
chmod g-s [name]
Delan Azabani
2010-09-02 11:05:40
Thanks - knew it had to be a simple one, but couldn't find the answer anywhere. You were fast!
amacbishop
2010-09-02 11:44:00