chmod Calculator

Visualize Unix/Linux file permissions with special bits support

Permission Matrix

RoleRead (r)Write (w)Execute (x)Octal
Owner6
Group4
Others4

Special Bits

chmod command

chmod 644 <file>

Symbolic

rw-r--r--

Octal input

3-digit: 644
4-digit: 0644

Common Permission Reference

rw-r--r--Regular file (owner writes, others read)
rwxr-xr-xExecutable / directory (owner full, others execute)
rw-------Private file (owner read/write only)
rwxrwxrwxWorld-writable (not recommended in production)
r--------Read-only (commonly used for key files)
rwsr-xr-xsetuid executable (e.g. /usr/bin/sudo)
rwxrwxrwtSticky directory (e.g. /tmp — anyone can write, nobody can delete others' files)