← chmod calculator

chmod 700 (rwx------)

What chmod 700 does, who gets which permissions, and when to use it — with the exact commands.

Read (4)Write (2)Execute (1)
Owner✔ read✔ write✔ execute
Group
Others
rwx------
chmod 700 yourfile # recursively, for a directory tree: chmod -R 700 yourdir
The owner can read and write and execute; Group members can do nothing; Everyone else can do nothing.

Notes

When you'd use 700: Private directory or script: full control for the owner, nothing for anyone else. The required mode for ~/.ssh.

Unix permissions are octal digits — owner, group, others — where read=4, write=2, execute=1, summed per digit. An optional leading digit holds setuid (4), setgid (2) and the sticky bit (1). On a directory, "execute" means permission to enter it and reach files inside.

Other values: 400 · 444 · 500 · 555 · 600 · 640 · 644 · 664 · 666 · 711 · 750 · 755 · 770 · 775 · 777 · 1777 · 2755 · 4755

Frequently asked questions

What does chmod 700 mean?

chmod 700 sets the permission rwx------. The owner can read and write and execute; Group members can do nothing; Everyone else can do nothing.

What is the symbolic notation for chmod 700?

rwx------ — three triplets (owner, group, others) of read/write/execute flags.

How do I apply chmod 700 to a whole directory?

Run chmod -R 700 yourdir to apply it recursively. Be careful: files and directories usually should not share the same mode (directories need execute to be entered, regular files usually should not be executable).

Found this useful? 113 free, browser-only tools by Yuvrajsinh Jadav — an engineer who ships production AI systems. No account, nothing sent anywhere.