Converter Web ToolsConverter WebTools

chmod Permissions Chart (644, 755, 777)

The chmod command sets Linux file permissions using three octal digits — one each for owner, group and others. Each digit (0–7) is the sum of read (4), write (2) and execute (1). This chart explains the digits and the most common permission modes.

Octal digit meaning

DigitSymbolsPermission
0---No permission
1--xExecute
2-w-Write
3-wxWrite + execute
4r--Read
5r-xRead + execute
6rw-Read + write
7rwxRead + write + execute

Common chmod modes

chmodSymbolicMeaning
644rw-r--r--Files: owner edits, others read
755rwxr-xr-xFolders / scripts: owner full, others read+run
600rw-------Private file (owner only)
700rwx------Private folder (owner only)
666rw-rw-rw-Everyone read + write
777rwxrwxrwxEveryone full (avoid)

Related tools & charts