Tools

chmod Cheat Sheet

Print-ready cheat sheet for chmod, organized for fast lookup, study, and desk-side use

Source
chmod(1) Manual Page
License
MIT
Variants
3 download options
Updated
2026-03-27

Sample

What's in this cheat sheet

Octal Permission Digits

4Read (r)
2Write (w)
1Execute (x)
0No permission

Three-Digit Format

chmod 755 file    # rwxr-xr-x
chmod 644 file    # rw-r--r--
chmod 700 file    # rwx------
chmod 600 file    # rw-------

Digit Calculation

7 (4+2+1)rwx — read, write, execute
6 (4+2)rw- — read, write
5 (4+1)r-x — read, execute
4r-- — read only
3 (2+1)-wx — write, execute
2-w- — write only
1--x — execute only
0--- — no permissions

Download the full cheat sheet for all sections, formatted for print

Download PDF

Downloads

Choose the treatment that matches how you read

Text formats

Copy or download as plain text

Download Markdown

Best for copying commands, snippets, and config into notes, prompts, or docs

Download Markdown

Preview

The web preview is for quick browsing. The PDF remains the authoritative print artifact

Open in Browser