🔑
Chmod Calculator
Calculate chmod permissions visually
About Chmod Calculator
Unix file permissions are three sets of three bits — read, write, execute for owner, group, and others. The octal representation (755, 644, 700) maps directly to those bit patterns, but remembering the mapping while setting permissions under pressure is error-prone.
Toggle the checkboxes and see the octal value and symbolic notation update in real time. Or type an octal value like 755 and see exactly what each bit means. The chmod command is generated automatically and ready to copy.
Common values: 755 for executables and directories, 644 for files, 700 for private files, 777 (avoid in production).
Common Use Cases
- →Figuring out the right chmod value for a shell script or binary
- →Understanding what 755 or 644 actually means in terms of who can do what
- →Generating the correct chmod command for a deployment script
- →Debugging permission denied errors on a server