Understand what 4755 or 1777 really grants
Expand the special bits next to the rwx triplets instead of judging the permission from memory.
Guide
The chmod calculator turns the read/write/execute bits for owner, group and others, together with the setuid, setgid and sticky bits, into octal notation and a symbolic form such as rwxr-xr-x, and it writes out two chmod commands for you — one numeric, one symbolic. The page only builds the strings; it never runs anything on your system.
Updated 2026-09-102 min read
chmod command.| Input | Output | Notes |
|---|---|---|
755 |
rwxr-xr-x |
Ordinary permissions |
4755 |
The symbolic form including setuid | The fourth digit carries the special bits |
rwsr-xr-x |
The matching octal value | s/S/t/T are all understood |
ls -l can be pasted in too.s/S/t/T according to whether the matching execute bit is set, rather than being appended as an extra character.chmod.Expand the special bits next to the rwx triplets instead of judging the permission from memory.
Tick the permissions you want, copy the chmod command, and review it in a terminal you control before executing it.
No. The page displays and copies a piece of text, nothing more.
They mean the special bit is set while the matching execute bit for owner, group or others is not.
Permissions and file names are computed entirely in your browser; the tool never touches the file system or a remote host.
Updated 2026-09-10
Linux permissions as checkboxes, octal and symbolic notation kept in sync, special bits and a ready chmod command
Checking a box updates the octal and symbolic forms live
| Role | Read r | Write w | Execute x | Value |
|---|---|---|---|---|
| Owner (u) | 7 | |||
| Group (g) | 5 | |||
| Others (o) | 5 |
$ chmod 755 file$ chmod u=rwx,g=rx,o=rx fileClick any row to apply it