Chmod Calculator
Build Linux and Unix file permissions with numeric, symbolic, and ready-to-use chmod output.
Numeric mode
000
Symbolic mode
---------
Example command
chmod 000 file
About chmod permissions
Common chmod examples
These standard modes cover many everyday file and directory permission needs.
| Selected access | Mode | Typical use |
|---|---|---|
| Owner rwx, group r-x, others r-x | 755 / rwxr-xr-x | Publicly accessible directory or executable |
| Owner rw-, group r--, others r-- | 644 / rw-r--r-- | Publicly readable regular file |
| Owner rw-, group ---, others --- | 600 / rw------- | Private configuration or key file |
How to use the chmod calculator
- Decide what access the file owner needs and toggle those permissions.
- Choose the permissions available to users in the file's group.
- Choose the permissions available to all other users.
- Copy the numeric mode or example command after reviewing the symbolic display.
Chmod FAQ
What does chmod 755 mean?
Mode 755 gives the owner read, write, and execute permission. Group members and other users receive read and execute permission but cannot write.
What do the values 4, 2, and 1 represent?
Four represents read, two represents write, and one represents execute. Their sum becomes the octal digit for one user class.
What is the difference between 644 and 755?
Mode 644 does not grant execute permission and is common for regular readable files. Mode 755 adds execute access and is common for directories and programs.
Why is chmod 777 risky?
Mode 777 allows every user to read, modify, and execute the target. On a multi-user or networked system, that broad write access can create a security risk.
Does directory execute permission run the directory?
No, execute on a directory controls traversal and access to entries inside it. Read permission separately controls whether names can be listed.