Chmod Calculator

Unix file permissions calculator. Toggle checkboxes or enter numeric permissions.

Processed on your device β€” never uploaded
readwriteexecuteOctalSymbolic
owner7rwx
group5r-x
other5r-x
Numeric
755
Symbolic
-rwxr-xr-x
Command
chmod 755 filename

Common Presets

Frequently Asked Questions

What does chmod 755 mean?
chmod 755 gives the owner full read, write, and execute permissions (7), while group and others get read and execute only (5). This is the standard permission for directories and executable files.
How do I calculate chmod permissions?
Toggle the read (4), write (2), and execute (1) checkboxes for owner, group, and other, and the tool instantly calculates the numeric (e.g., 755) and symbolic (e.g., -rwxr-xr-x) notation.
What is the difference between chmod 644 and 755?
644 gives the owner read/write and everyone else read-only (typical for files), while 755 adds execute permission for all users (typical for directories and scripts).
Should I ever use chmod 777?
Avoid chmod 777 in production as it gives full read, write, and execute access to everyone, creating a significant security risk. Use more restrictive permissions like 755 or 750.