chmod 775 — what rwxrwxr-x means

775 rwxrwxr-x

The owner and group can read, write, and execute; others can read and execute but not modify.

Note: this grants group or shared write access — fine for team directories, but make sure that is what you intend.

Permission breakdown

When to use 775

Common mistakes & gotchas

775 vs the alternatives

Set it with chmod

Apply this permission to a single file:

chmod 775 filename

Or apply it recursively to a directory and everything inside it:

chmod -R 775 directory/

The same thing in symbolic form:

chmod u=rwx,g=rwx,o=rx filename

Frequently asked questions

What does chmod 775 mean?

chmod 775 sets rwxrwxr-x: owner and group both get full read/write/execute, while others get read and execute (traverse/list) only. It's the standard permission for a directory a whole group needs to write to, shared read-only with everyone else.

When should I use 775?

Use it on a directory where multiple members of a group must create, edit, and delete files collaboratively — shared project, build, or upload folders. Avoid it for sensitive data, since others can still read and traverse.

How do I stop group members from deleting each other's files in a 775 directory?

Add the sticky bit with chmod 1775. Then a user can only delete or rename files they own, even though the directory itself stays group-writable — the same protection /tmp uses.

Why do new files in my 775 directory lose group access?

Without the setgid bit, new files take the creator's primary group instead of the directory's group. Set chmod 2775 on the directory so all new files and subdirectories inherit the shared group automatically.

Other common permissions

Or build any permission with the interactive chmod calculator.