Easily calculate and convert Linux file permissions. Visualize permissions for Owner, Group, and Public in Octal and Symbolic formats.
chmod command: chmod 755 filename
In Linux and Unix-like systems, file permissions determine who can access and modify files. There are three types of permissions: Read (r), Write (w), and Execute (x).
Permissions are assigned to three groups: Owner (the user who created the file), Group (users in the file's group), and Public (everyone else).
The 'chmod' command is used to change these permissions. The numerical (octal) format adds the values: Read=4, Write=2, Execute=1. For example, 7 (4+2+1) means full permissions.
Check the boxes to set permissions for Owner, Group, and Public.
The Octal and Symbolic codes update automatically.
Or enter an Octal code (e.g., 755) to update the checkboxes.
Developer utilities