Permissions Calculator

chmod 444

Unix file permission mode 444 explained in detail.

Symbolic Notation
-r--r--r--(as shown by ls -l)
-r--r--r--
typeownergroupother
Permission Matrix
Read(4)Write(2)Execute(1)Octal
Ownerr--4
Groupr--4
Otherr--4
What Does chmod 444 Mean?

Owner can read. Group can read. Others can read.

$ chmod 444 filename
Common Use Cases

Read-only for everyone. Used for published reference files that should not be modified.

Security Notes

Write-protected but any user can read. Do not use for sensitive data — anyone on the system can view the contents.

Other Common Modes
Interactive Tool

Need to calculate a custom permission? Use the interactive permissions calculator to toggle individual bits and get instant results.

Unix Permissions Calculator