Set Linux file permissions visually. Toggle checkboxes, get the chmod command instantly.
chmod 755 filename Every file and directory on Linux has three permission groups: Owner, Group, and Public (others). Each group can have read (r), write (w), and execute (x) permissions.
Each permission has a numeric value: read = 4, write = 2, execute = 1. Add them together for each group:
So chmod 755 means: owner can read+write+execute (7), group and public can read+execute (5).
When you deploy to a server, getting permissions right matters. Wrong permissions on SSH keys block login. Wrong permissions on web files block your site.