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

chmod 750

rwxr-x---

Group Accessible 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
750
Symbolic
rwxr-x---

Explanation

chmod 750 gives the owner full permissions, the group read and execute (directory traversal) permissions, and others no access at all. Ideal for restricting an application directory to a specific service group while completely blocking outside users. Achieves the principle of least privilege elegantly.

Common Use Cases
  • Web application root (only www-data group can access)
  • Database data directories (only DB group can access)
  • System service configuration directories
  • Admin script directories accessible only to the sudo group
  • Internal-network-only API server directories
Security Considerations

750 is a clean implementation of the principle of least privilege. Others cannot list (ls) or enter (cd) the directory. It must be paired with the correct group ownership (chown :group) for the intended access control to take effect.

Command Examples

$ chmod 750 /var/www/myapp
$ chown root:www-data /var/www/myapp
$ chmod 750 /etc/myservice
$ chmod 750 /opt/database/data

Related Permissions

775rwxrwxr-x755rwxr-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.