AscendLab

Developer tools

Unix 权限计算器

New free tool

Unix Permission Calculator for chmod Modes

Convert read, write, and execute bits into chmod octal modes, symbolic permissions, and command snippets.

Quick answer

A Unix permission calculator converts read, write, and execute bits into modes like 755 or 644.

Use it to understand chmod values before copying a command into a terminal.

Best inputs

Use known defaults carefully

644 is common for files, while 755 is common for executable directories or scripts.

Review before running

This page formats commands but does not check your filesystem or execute anything.

Permission bits
Toggle read, write, and execute permissions for owner, group, and others.

Try a common chmod setup

Who
Read (4)
Write (2)
Execute (1)
Owner
Group
Others

Valid 3-digit octal mode.

Mode output
Copy the numeric mode, symbolic string, or chmod command.
755
rwxr-xr-x
chmod 755 public

How the number is built

Read is 4, write is 2, and execute is 1. Add the enabled bits for owner, group, and others to get a three-digit mode.

Example
Choose 755 for a public directory, copy the chmod command, and confirm the path before running it locally.
Assumption
The tool uses standard Unix permission bits: read is 4, write is 2, and execute is 1 for owner, group, and others.
Limitation
It does not handle ACLs, ownership changes, recursive flags, special bits, or platform-specific permission behavior.

Suggested workflow

Deployment sanity-check workflow

Calculate permissions, verify files, then keep scheduled maintenance config readable.

Related tools

Related developer tools

Frequently asked questions

What does chmod 755 mean?

755 means owner can read, write, and execute, while group and others can read and execute.

What does chmod 644 mean?

644 means owner can read and write, while group and others can only read.

Does this tool run chmod commands?

No. It only calculates and formats permission values in the browser.

Does it need a backend?

No. Permission calculation is simple browser-side logic.