Chmod Calculator

Calculate Unix/Linux file permissions in octal and symbolic notation.

RoleRead (4)Write (2)Execute (1)Value
owner6
group4
other4

Result

Octal

644

Symbolic

-rw-r--r--
chmod 644 filename
chmod u=rw,g=r,o=r filename

Common Presets

Permission Reference

ValuePermissionsDescription
0---No permissions
1--xExecute only
2-w-Write only
3-wxWrite and execute
4r--Read only
5r-xRead and execute
6rw-Read and write
7rwxFull permissions

What is chmod?

chmod (change mode) is a Unix/Linux command used to change file permissions. Permissions determine who can read, write, or execute a file.

Permission Types

User Classes