Unix Permissions Calculator
Build a chmod value by ticking read / write / execute for owner, group, and other — or type an octal value to reflect it back.
All processing happens in your browser — nothing is sent to our servers
Octal
755Symbolic
rwxr-xr-xchmod 755 fileSpecial Permission Bits
Beyond read/write/execute there is a fourth leading octal digit for special bits. setuid (4000) runs an executable as its owner; setgid (2000) runs it as its group (or, on a directory, makes new files inherit the group); and the sticky bit (1000) on a directory (like /tmp) lets users delete only their own files. For example chmod 1777 /tmp sets the sticky bit with full permissions.