Chmod Calculator

Calculate Unix/Linux file permissions visually. Convert between symbolic and numeric notation instantly. ๐Ÿ”’ Dev Tool

Read (r) Write (w) Execute (x) Octal
๐Ÿ‘ค Owner 7
๐Ÿ‘ฅ Group 5
๐ŸŒ Others 4
Numeric 755
Symbolic rwxr-xr--
Command chmod 755 filename
Common Presets

How permissions work

What do the three permission groups mean?

Owner: The user who owns the file. Group: Users belonging to the file's group. Others: Everyone else. Permissions are checked in order โ€” if you're the owner, only owner permissions apply, even if group or others have more access.

What are the most common permission settings?

644 โ€” standard files (owner can edit, everyone can read). 755 โ€” executable files and directories. 600 โ€” private files like SSH keys. 777 โ€” full access for everyone (use sparingly, security risk). 400 โ€” read-only for owner (e.g. config files).

How do I use the chmod command?

Run chmod [permissions] [filename] in your terminal. For example: chmod 755 deploy.sh makes a script executable. To apply recursively to a directory: chmod -R 755 /path/to/dir. You can also use symbolic notation: chmod u+x file adds execute for owner.