All Tools

Chmod Calculator

Convert between symbolic and numeric Unix file permissions

755
rwxr-xr-x
chmod 755 filename

Owner

Group

Others

Common Permissions

NumericSymbolicUsage
755rwxr-xr-xStandard directories, executables
644rw-r--r--Standard files, web pages
600rw-------SSH keys, private files
777rwxrwxrwxFull access (not recommended)
400r--------Read-only for owner

Understanding Unix File Permissions

Unix file permissions control who can read, write, and execute files and directories. Each file has three permission groups: owner, group, and others. Each group can have read (4), write (2), and execute (1) permissions. The numeric notation sums these values — 755 means owner has full access (7=4+2+1), while group and others can read and execute (5=4+1). The chmod command changes these permissions. Setting correct permissions is critical for server security — misconfigured permissions are one of the most common causes of security vulnerabilities in web hosting.

Related Tools