Chmod Calculator

Calculate Linux file permissions. Convert between numeric (755) and symbolic (rwxr-xr-x) notation. Get the chmod command.

Owner
Group
Others
Numeric
755
Symbolic
rwxr-xr-x
Command
chmod 755 filename

What are Unix File Permissions?

Unix/Linux file permissions control who can read, write, and execute files and directories. Permissions are assigned to three categories: the file owner, the group, and all other users. Each category can have read (r=4), write (w=2), and execute (x=1) permissions. These are commonly expressed as a three-digit octal number (like 755) or as a symbolic string (like rwxr-xr-x). Understanding permissions is essential for server administration, deployment scripts, and security hardening.

How to Calculate File Permissions

1

Use the interactive checkboxes to toggle read, write, and execute permissions for owner, group, and others.

2

See the numeric (octal) and symbolic representations update in real-time as you toggle permissions.

3

Copy the generated chmod command (e.g., chmod 755 filename) to use directly in your terminal.

Frequently Asked Questions

Related Tools