Security: Elevated

chmod 775 β€” rwxrwxr-x

Owner and Group have full control (rwx). Others can read and execute (r-x).

Live Interactive Permission Matrix

Linux chmod Calculator & Generator

Octal Value
775
Symbolic
rwxrwxr-x
Quick Presets:
Owner (User)
The file creator
7
Group
Team or service account
7
Public (Others)
All other system users
5
Security Assessment
Status: Elevated
View Full chmod 775 Guide β†’
Target:
chmod 775 deploy.sh
chmod -R 775 /var/www/deploy.sh

Interactive Permission Matrix (rwx)

RoleRead (r - 4)Write (w - 2)Execute (x - 1)Octal Total
Owner (User)7
Group7
Others (Public)5

Copyable chmod 775 Commands

Apply to Single File
chmod 775 target_file
Apply Recursively to Directory
chmod -R 775 /path/to/folder
Only Apply to Directories (find)
find /path/to/folder -type d -exec chmod 775 {} +
Only Apply to Files (find)
find /path/to/folder -type f -exec chmod 775 {} +

Recommended Real-World Use Cases

  • β€’Shared team web directories (`/var/www/shared`)
  • β€’CMS upload cache folders with group write access
  • β€’Collaborative build output directories

Security Consideration

chmod 775 is ideal for shared team directories and web deployment directories where multiple developers belong to the same group (e.g. `www-data` or `developers`).

Frequently Asked Questions

chmod 775 Questions & Answers

Common questions regarding Linux permissions, security risks, and recursive chmod commands.

Owner and Group have full control (rwx). Others can read and execute (r-x). In symbolic notation, this is represented as "rwxrwxr-x".