Enjoying UtilToolkits?
Support our development and help us create more amazing tools!
Support our development and help us create more amazing tools!
Did you know the Pomodoro Technique can help you stay focused? Work for 25 minutes, then take a 5-minute break. It's a game-changer for long study sessions!
Master Linux file permissions without the math. The Chmod Calculator lets you visually set read, write, and execute permissions for users, groups, and others. It instantly generates the correct numeric (octal) code (e.g., 755) and the symbolic notation (rwxr-xr-x), so you can secure your files correctly.
Linux permissions can be confusing. `chmod` (change mode) uses a 3-digit number to define permissions. The first digit is for the Owner, the second for the Group, and the third for Everyone else. Each digit is the sum of permissions: Read (4) + Write (2) + Execute (1). This tool does that addition for you.
Unix file systems treat permissions as bits. Read is the 4-bit, Write is the 2-bit, and Execute is the 1-bit. By adding these values (e.g., 4+2+1 = 7), the system knows exactly what access is allowed. This calculator is essentially a visual binary-to-octal converter specific to file modes.
`755` is common for directories and scripts (owner can do everything; others can only read/execute). `644` is standard for files (owner can write; others can only read).
It means everyone can read, write, and execute the file. This is generally insecure and should be avoided on public servers.
Open your terminal and paste the generated line, followed by your filename. E.g., `chmod 755 myscript.sh`.
All calculations and data processing for this tool are performed locally in your browser. UtilToolkits does not send any of your data to an external server, ensuring your information remains private and secure.