Chmod Calculator
100% LocalInteractive Linux file permission calculator with presets.
| Read | Write | Execute | Octal | |
|---|---|---|---|---|
| Owner | 7 | |||
| Group | 5 | |||
| Others | 5 |
chmod 755 filename
-rwxr-xr-x
-rwxr-xr-x 1 user group 0 Jan 1 00:00 filename
Click permission checkboxes or type a numeric mode like 755. Symbolic and octal update together.
Learn More
What is Chmod Calculator?
Frequently Asked Questions
Technical Deep Dive
Chmod Calculator
Calculate Unix file permissions with an interactive checkbox matrix. Convert between numeric (octal) and symbolic notation. Includes common permission presets and generates ready-to-use chmod commands.
Symbolic to octal
Toggle the read/write/execute checkboxes and get 755 / rwxr-xr-x both ways, plus the exact chmod command.
setuid / sticky bits
Handles the fourth digit — setuid, setgid, sticky — which most quick references skip.
Preset shortcuts
One click for the common cases: 644 files, 755 dirs, 600 keys, 777 (with a warning about why you probably shouldn't).
01 Octal-Symbolic Reference Matrix
| Octal | Symbolic | Permission Meaning | Security Profile |
|---|---|---|---|
| 7 | rwx | Full Access | Administrative |
| 6 | rw- | Read + Write | Standard File |
| 5 | r-x | Read + Execute | Public Executable |
| 4 | r-- | Read Only | Immutable |
| 0 | --- | No Access | Hardened |
02 Permission Bit Pipeline
chmod command string for execution in the terminal.