Skip to content
~/chmod-calculator
$

Chmod Calculator

Calculate Linux file permissions interactively. Toggle permissions for Owner, Group, and Others to generate numeric and symbolic notation.

Numeric

755

Symbolic

rwxr-xr-x

Owner

7

Group

5

Others

5

Read(4)
Write(2)
Execute(1)
chmod 755
$ chmod 755 filename

Common Presets

Permission Reference

NumberSymbolPermission
0---No permission
1--xExecute
2-w-Write
3-wxWrite + Execute
4r--Read
5r-xRead + Execute
6rw-Read + Write
7rwxRead + Write + Execute

What is chmod?

chmod (change mode) is a Linux and Unix command that sets read, write, and execute permissions on files and directories. Permissions are expressed in numeric (octal) notation like 755 or symbolic notation like rwxr-xr-x, and control who can access or modify a file.

How to use this calculator

Toggle the read, write, and execute checkboxes for Owner, Group, and Others. The tool instantly generates the matching numeric and symbolic chmod values, along with a ready-to-copy chmod command you can paste into your terminal.

When do you need chmod?

Common use cases include making a script executable (chmod 755), restricting a config file to the owner (chmod 600), or opening a directory for shared access. Getting the octal value wrong can expose sensitive files, so a visual calculator helps you set the right permissions the first time.