Skip to main content
Back to tools

Chmod Calculator

Calculate Unix file permissions in octal and symbolic notation

About Chmod Calculator

Chmod Calculator lets you calculate unix file permissions in octal and symbolic notation.

Category: Text.

Frequently asked questions

What do the three chmod digit groups represent?

The three digits represent permissions for owner, group, and others respectively. Each digit is the sum of read (4), write (2), and execute (1). 755 means owner has full access (7=4+2+1) and group/others can read and execute (5=4+1).

What does the execute bit mean for a directory?

For directories, the execute bit means 'traverse' — the ability to enter the directory and access files inside it. Without it, a user cannot cd into the directory even if they have read permission.

What is the difference between chmod 644 and 755?

644 is typical for files (owner can read/write, others can only read — not execute). 755 is typical for directories and executables (owner has full access, others can read and execute/traverse).

Related tools