Ad Space β€” 728Γ—90
🐧 Developer

Chmod Calculator

Calculate Unix file permissions. Toggle checkboxes or enter numeric values.

Permission OwnerGroupOthers
Read (4)
Write (2)
Execute (1)

Numeric

Symbolic

rwxr-xr-x
Linux Command
chmod 755 filename

πŸ“‹ Common Permissions

644 rw-r--r-- Default file
755 rwxr-xr-x Default directory/script
600 rw------- SSH keys, secrets
700 rwx------ Private directory
777 rwxrwxrwx ⚠️ Full access (avoid!)
444 r--r--r-- Read-only
Ad Space β€” 336Γ—280

Frequently Asked Questions

What is chmod?

chmod (change mode) is a Unix/Linux command that changes file permissions. It controls who can read, write, and execute a file. Permissions are represented as a 3-digit number (e.g., 755) or symbolic notation (e.g., rwxr-xr-x).

What do the numbers mean?

Each digit represents permissions for owner, group, and others. Read (r) = 4, Write (w) = 2, Execute (x) = 1. Add them together: 7 = rwx (4+2+1), 5 = r-x (4+1), 0 = --- (none).

Ad Space β€” 728Γ—90