Chmod calculator
Calculate Unix file permissions between octal notation and symbolic rwx format
Quick Input
Permissions
| Read(+4) | Write(+2) | Execute(+1) | Octal | Symbolic | |
|---|---|---|---|---|---|
| Owner | 7 | rwx | |||
| Group | 5 | r-x | |||
| Others | 5 | r-x |
Octal
755
e.g. chmod 755 file
Symbolic
rwxr-xr-x
ls -la output format
Meaning
Owner: read, write, execute
Group: read, execute
Others: read, execute