How to Calculate Chmod Permissions

Calculate Linux file permissions with an interactive chmod calculator. Convert between numeric (755) and symbolic (rwxr-xr-x) notation instantly.

Open Chmod Calculator →

Step-by-Step Guide

1

Set permissions visually

Toggle read (r), write (w), and execute (x) permissions for owner, group, and others using the interactive checkboxes. The numeric value updates in real-time as you click.

2

Or enter a numeric value

Type a chmod number like 755, 644, or 777 and see the permission breakdown instantly. The tool shows exactly which users can read, write, and execute the file.

3

Understand the meaning

See the full symbolic notation (e.g., rwxr-xr-x) alongside the numeric value. A plain-English description explains what each permission set means in practice.

4

Copy the chmod command

Copy the ready-to-use chmod command (e.g., chmod 755 filename) to run in your terminal. For recursive changes on directories, the tool also provides the -R flag variant.

Try It Now — Free

No signup, no download. Runs entirely in your browser.

Open Chmod Calculator

Frequently Asked Questions

What does chmod 755 mean?
Owner can read, write, and execute (7=rwx). Group can read and execute (5=r-x). Others can read and execute (5=r-x). This is the standard permission for executable scripts and web directories.
What is the difference between 644 and 755?
644 (rw-r--r--) means owner can read/write, everyone else can only read. 755 (rwxr-xr-x) adds execute permission. Use 644 for regular files, 755 for scripts and directories.
What does the execute permission do on a directory?
On a directory, execute (x) means "permission to access contents." Without it, you cannot cd into the directory or list its files, even if you have read permission.
Related Reference

Linux Commands Cheat Sheet

View Cheat Sheet →

More Guides