What is a Chmod Calculator?
A chmod calculator is a free online tool for calculating the numeric and symbolic representations of Unix file permissions. It helps you visualize permissions and generate the correct syntax for the chmod command. All calculations happen in the browser.
How to calculate permissions
Click the permission checkboxes to set the desired permissions for owner, group and others. The calculator shows the numeric (like 755) and symbolic (like rwxr-xr-x) representations in real time.
Understanding permissions
Permissions are grouped into three classes: owner, group and others. Each class can have read (r, value 4), write (w, value 2) and execute (x, value 1) permissions. These values are added together to get the number for each class.
Common permission modes
- 755 (rwxr-xr-x) - Directories and executable files
- 644 (rw-r--r--) - Regular files
- 700 (rwx------) - Private directories
- 600 (rw-------) - Sensitive files
- 777 (rwxrwxrwx) - Full permissions (use with caution)