Chmod

chmod Calculator

Convert chmod numeric and symbolic permissions

πŸ”’ 100% client-side β€” your data never leaves this page
Permissions
Numeric
Symbolic
chmod cmd
chmod 755 file
ReadWriteExecuteOctal
Owner (u)7
Group (g)5
Others (o)5
πŸ”’ 100% client-side
Output
Numeric (octal)755
Symbolicrwxr-xr-x
chmod commandchmod 755 filename
Recursivechmod -R 755 dirname/
What each bit means
Owner (u)rwxread + write + execute
Group (g)rwxread + execute
Others (o)rwxread + execute
Common permissions
777rwxrwxrwxFull access for everyone (avoid)
755rwxr-xr-xExecutable / directories
644rw-r--r--Standard file
600rw-------Private file (SSH keys)
750rwxr-x---Scripts, group readable
664rw-rw-r--Group writable file
400r--------Read-only (config files)
700rwx------Private directory

About this tool

Convert between numeric (octal) and symbolic chmod permissions with an interactive permission matrix. Instantly see the corresponding chmod command, recursive command, and a breakdown of what each permission bit means for owner, group, and others. Includes common permission presets like 755 and 644. Everything runs entirely in your browser.

Frequently Asked Questions

What does 755 mean in chmod?

755 means the owner has read, write, and execute permissions (7), while group and others have read and execute permissions (5). It is commonly used for executable files and directories.

What is the difference between numeric and symbolic permissions?

Numeric (octal) permissions use numbers like 755 or 644, where each digit represents read (4), write (2), and execute (1). Symbolic permissions use letters like rwxr-xr-x to represent the same bits.

Is it safe to use 777?

777 grants full read, write, and execute permissions to everyone. It is generally not recommended for production environments due to security risks.