Chmod Calculator

Calculate Linux file permissions — click checkboxes or type numbers.

755
rwxr-xr-x
chmod 755 filename
Owner (User)
r
Read (4)
w
Write (2)
x
Execute (1)
Group
r
Read (4)
w
Write (2)
x
Execute (1)
Others (World)
r
Read (4)
w
Write (2)
x
Execute (1)

How to Use Chmod Calculator

① Set permissions using checkboxes or enter numeric value ② View both numeric and symbolic notation ③ Copy the chmod command

About Chmod Calculator

Chmod Calculator is a free online tool that converts between numeric (octal) and symbolic Linux file permission formats. Use visual checkboxes to set read, write, and execute permissions for owner, group, and others, or enter a numeric value to see the symbolic equivalent. Linux file permissions control who can read, write, and execute files and directories. The three permission groups — owner, group, and others — each have three permission types: read (r/4), write (w/2), and execute (x/1). Understanding and setting correct permissions is fundamental to Linux system administration and security. Incorrect file permissions are one of the most common causes of security vulnerabilities and application errors on Linux servers. Too permissive (777) exposes files to everyone, while too restrictive blocks legitimate access. This tool helps you calculate the exact permissions you need. Everything runs entirely in your browser. There are no usage limits and no account required. Common use cases include setting web server file permissions, configuring deployment scripts, securing sensitive configuration files, setting up correct permissions for SSH keys, troubleshooting permission denied errors, and documenting server configurations.

Frequently Asked Questions

What does chmod 755 mean?
Owner can read, write, and execute. Group and others can read and execute but not write. Common for scripts and directories.
What does chmod 644 mean?
Owner can read and write. Group and others can only read. Common for regular files like HTML, CSS, and config files.
What permissions should I use for web files?
Typically 644 for files and 755 for directories. Never use 777 on production servers.
What is the difference between numeric and symbolic?
Numeric uses numbers (755). Symbolic uses letters (rwxr-xr-x). They represent the same permissions.
Share Aether Tool
Help us grow!