Chmod Calculator
Linux File Permission Calculator - Free Online Tool
Select permissions with checkboxes to auto-generate chmod numeric notation, symbolic notation, and commands. Reverse lookup from numeric values is also supported. A handy free tool for Linux/Unix file permission management.
Permission Settings
| Read (4) | Write (2) | Execute (1) | |
|---|---|---|---|
| Owner | |||
| Group | |||
| Others |
Numeric (Octal)
755
Symbolic Notation
rwxr-xr-x
chmod 755 filename
Common Presets
Recommended Permissions Reference
Files
| Permission | Symbolic | Use Case |
|---|---|---|
| 644 | rw-r--r-- | HTML, CSS, images |
| 600 | rw------- | Config files, passwords |
| 400 | r-------- | SSH private key (id_rsa) |
| 755 | rwxr-xr-x | CGI, shell scripts |
Directories
| Permission | Symbolic | Use Case |
|---|---|---|
| 755 | rwxr-xr-x | Public directories (web root) |
| 700 | rwx------ | Home directory, private folders |
| 750 | rwxr-x--- | Group shared directories |