Convert between octal, symbolic, and binary Unix file permissions with precision and ease.
Transform Unix file permissions between different formats. Enter octal values, symbolic notation, or binary to understand and convert file access rights for users, groups, and others.
Click on any example to load it into the calculator.
Common permissions for executable files and scripts.
Octal: 755
Symbolic: rwxr-xr-x
Binary: 111101101
Description: Owner can read, write, execute; group and others can read and execute
Standard permissions for read-only files and documents.
Octal: 644
Symbolic: rw-r--r--
Binary: 110100100
Description: Owner can read and write; group and others can only read
Permissions for private files accessible only to owner.
Octal: 600
Symbolic: rw-------
Binary: 110000000
Description: Only owner can read and write; no access for group or others
Dangerous permissions allowing anyone to write (use with caution).
Octal: 666
Symbolic: rw-rw-rw-
Binary: 110110110
Description: Everyone can read and write; no execute permissions