~/devtools / chmod / 775
tool::chmod-detail

chmod 775

rwxrwxr-x

Group Collaborative Directory

ad · 728×90
Permission Structure
Owner (User)
Read (r)
Write (w)
Execute (x)
Group
Read (r)
Write (w)
Execute (x)
Others
Read (r)
Write (w)
Execute (x)
Octal
775
Symbolic
rwxrwxr-x

Explanation

chmod 775 gives the owner and group members full read, write, and execute permissions, while others get read and execute only. Suitable for project directories shared among developers in the same group, or team-shared build caches. Enables group collaboration while blocking modification by outsiders.

Common Use Cases
  • Team shared project directories (/srv/project)
  • Deployment directories shared between web server group and developers
  • CI/CD shared artifact directories
  • Workspaces for multiple developers under the same group
  • Shared virtual environment (venv) directories
Security Considerations

When using 775, combine it with the setgid bit (g+s) so that newly created files inherit the group automatically, making collaboration smoother. Manage group membership carefully and remove unnecessary users from the group. No write access for others makes this far safer than 777.

Command Examples

$ chmod 775 /srv/project
$ chmod g+s /srv/project  # setgid for group inheritance
$ chown -R :developers /srv/project
$ find /srv/project -type d -exec chmod 775 {} \;

Related Permissions

750rwxr-x---755rwxr-xr-x644rw-r--r--777rwxrwxrwx
ad · 300×250
Back to chmod Calculator
// related tools
Cron Expression Generator
Build and parse cron expressions visually. Generate human-readable descriptions and preview next execution times.
jwt
JWT Decoder
Decode and inspect JWT tokens. View header, payload, and signature details.
rx
Regex Tester
Test regular expressions with live matching, group highlighting, and explanations.
Color Converter
Convert colors between HEX, RGB, HSL, and more. Pick colors visually.