Linux Permissions:

About Chmod Calculator

Chmod Calculator is a free utility to calculate the numeric (octal) or symbolic value for a set of file or folder permissions in unix or unix-like systems such as linux or ubuntu.

How it Works?

Check the desired boxes or directly enter a valid numeric value (e.g. 777) or symbolic notation (e.g. rwxrwxrwx) to see its value in other formats.

How to use chmod?

You can change file permissions in this format:
chmod [options] [mode] [file_name]


What are permissions?

Each file on a system has a set of permissions associated with it, meaning which users have access and what type of access they have.

There are three types of users:

  1. User, meaning the user who owns the file
  2. Group, meaning the files defined ownership group
  3. Other, meaning everyone else

File permissions in Linux file system are managed in three distinct user classes: user/owner, group and others/public. Each class can have read, write and execute permissions. File permission can be represented in a symbolic or numeric (octal) format.

Examples

Chmod examples in octal mode:

Readable by owner only

$ chmod 400 chmodExample.txt

Readable by group only

$ chmod 040 chmodExample.txt

Readable by anyone

$ chmod 004 chmodExample.txt

Writeable by owner only

$ chmod 200 chmodExample.txt

Writeable by group only

$ chmod 020 chmodExample.txt

Writeable by anyone

$ chmod 002 chmodExample.txt

Executeable by owner only

$ chmod 100 chmodExample.txt

Executeable by group only

$ chmod 010 chmodExample.txt

Executeable by anyone

$ chmod 001 chmodExample.txt

Allow read permission to owner and group and anyone.

$ chmod 444 chmodExample.txt

Allow everyone to read, write, and execute file.

$ chmod 777 chmodExample.txt
Chmod examples in symbolic mode:

Deny execute permission to everyone.

$ chmod a-x chmodExampleFile.txt

Allow read permission to everyone.

$ chmod a+r chmodExampleFile.txt

Make a file readable and writable by the group and others.

$ chmod go+rw chmodExampleFile.txt

Make a shell script executable by the user/owner.

$ chmod u+x chmodExampleScript.sh

Allow everyone to read, write, and execute the file and turn on the set group-ID.

$ chmod =rwx,g+s chmodExampleScript.sh
100% Free, Always No Sign-up Required Files Deleted in 15 Min Private & Secure Works on All Devices

How to Use the Chmod Calculator

  1. Open the tool — Visit the Chmod Calculator page on Easy Code Tools. No login or download is needed.
  2. Enter your input — Type your text, paste your data, or upload your file into the input area provided.
  3. Adjust settings (if available) — Configure any options or parameters to match exactly what you need.
  4. Process — Click the main action button (e.g., Convert, Generate, Calculate). The result appears instantly.
  5. Use your result — Copy the output, download the file, or use the generated content as needed.

Frequently Asked Questions

Yes — the Chmod Calculator is 100% free to use. There are no hidden charges, no subscriptions, and no account required. Just open the page and start using it right away.
No installation is needed. The Chmod Calculator runs entirely in your web browser on any device — desktop, laptop, tablet, or smartphone. A modern browser like Chrome, Firefox, Edge, or Safari is all you need.
Absolutely. Easy Code Tools is built with your privacy in mind. Many tools process data directly in your browser without uploading anything to a server. When server-side processing is required, all uploaded files are automatically and permanently deleted within 15 minutes. We never store, sell, or share your files or personal data. See our Privacy Policy for full details.
The Chmod Calculator uses established algorithms to deliver accurate, consistent results. All processing happens instantly in your browser or on our secure servers, ensuring speed and reliability every time.
Yes. Easy Code Tools is fully responsive and works perfectly on all screen sizes, including smartphones and tablets. You can also install it as a Progressive Web App (PWA) for instant one-tap access directly from your home screen.
Copied!