Ad Space — horizontal (tool-top)
🔧

chmod Calculator

Calculate Unix file permissions. Convert between numeric and symbolic chmod notation.

Quick Presets

Permissions

owner
(7)
group
(5)
others
(5)
read(4)
write(2)
execute(1)

Result

Numeric Notation755
Symbolic Notationrwxr-xr-x
Commandchmod 755 filename

Permission Breakdown

RoleReadWriteExecuteSymbolicOctal
ownerYesYesYesrwx7
groupYesNoYesr-x5
othersYesNoYesr-x5

How to Use This Chmod Calculator

Calculate Unix file permissions interactively. Toggle checkboxes or type a numeric value to see the corresponding permissions.

  1. Use checkboxes to set read, write, and execute for Owner, Group, and Others
  2. Or type a 3-digit octal number (e.g., 755) in the numeric input
  3. View the numeric notation, symbolic notation, and chmod command
  4. Use quick presets for common permission values

FAQ

What does chmod 755 mean?

chmod 755 sets the file permissions so the owner can read, write, and execute (7), while the group and others can read and execute (5). This is the most common permission for directories and executable scripts.

What is the difference between numeric and symbolic notation?

Numeric notation uses three octal digits (e.g., 755), where each digit represents permissions for owner, group, and others. Symbolic notation uses letters r, w, x (e.g., rwxr-xr-x) to represent the same permissions in a human-readable way.

What does each number mean?

Read = 4, Write = 2, Execute = 1. Add the values to get the permission number for each role. For example, read + execute = 4 + 1 = 5.

Ad Space — horizontal (tool-bottom)