Chmod Calculator
Convert between symbolic and numeric file permissions
755
rwxr-xr-x
Command
chmod 755 filename
777
Full access
755
Standard exec
644
Standard file
600
Private file
700
Private exec
666
Read/write all
444
Read only
400
Owner read
About File Permissions
In Unix/Linux systems, file permissions control who can read, write, or execute files.
Permission Values:
4 = Read (r), 2 = Write (w), 1 = Execute (x)
Common Examples:
755 - Owner can do everything; others can read/execute (typical for scripts)
644 - Owner can read/write; others can only read (typical for files)
600 - Only owner can read/write (private files like SSH keys)