Chmod Calculator
Calculate Linux file permissions
Owner
Group
Public
Numeric
755
Symbolic
rwxr-xr-x
chmod 755 filename
Use these tools directly in Chrome
Install the DailyDevTools extension — access all tools from your browser toolbar
What is Chmod Calculator?
Unix file permissions use an octal (base-8) number or symbolic notation to define read (r=4), write (w=2), and execute (x=1) access for the owner, group, and others. Remembering what chmod 755 or 644 means requires experience. DailyDevTools' chmod Calculator translates between octal codes, symbolic notation (rwxr-xr--), and plain English descriptions — instantly.
How to use Chmod Calculator
- 1Enter an octal code (e.g., 755, 644, 777) to see the permissions it represents
- 2Or toggle the read/write/execute checkboxes for owner, group, and others to build permissions visually
- 3See the equivalent symbolic notation (rwxr-xr-x) and what each group can do in plain English
- 4Copy the chmod command (chmod 755 filename) ready to run in your terminal