🐧 Linux File Permissions Explained in Simple Terms! πŸ”₯

Dhaval GojiyaDhaval Gojiya
3 min read

When working with Linux, you often encounter file permissions represented as letters (rwx) or numbers (4, 2, 1). But what do these mean, and how do they affect file access? πŸ€” Let's break it down step by step! πŸš€

1️⃣ The Basics: What Do r, w, and x Stand For?

  • πŸ“ r (Read): Grants the ability to read the file contents.

  • ✏️ w (Write): Allows modifying or writing to the file.

  • πŸš€ x (Execute): Permits running the file as a program.

2️⃣ Binary Representation: The Language of Computers πŸ–₯️

To understand why r has a weight of 4, w a weight of 2, and x a weight of 1, we need to look at binary numbers.

πŸ”’ Binary in Action:

  • 1 bit = 2 values β†’ 0 or 1

  • 2 bits = 4 values β†’ 00, 01, 10, 11

  • 3 bits = 8 values β†’ 000, 001, 010, 011, 100, 101, 110, 111

Each permission (r, w, x) corresponds to a specific binary value:

PermissionBinaryDecimal
r (Read)1004
w (Write)0102
x (Execute)0011

3️⃣ Understanding Permission Numbers πŸ”’

Linux file permissions are often represented using three-digit numbers. Each digit represents a different set of permissions:

  • Owner (User) πŸ§‘

  • Group πŸ‘₯

  • Others (Everyone else) 🌍

Here’s how combinations work:

  • rwx (111) = 4 + 2 + 1 = 7 βœ…

  • rw- (110) = 4 + 2 = 6 πŸ”“

  • r-- (100) = 4 πŸ“–

🎨 Visual Representation:

Linux File Permissions Overview

4️⃣ Changing Permissions with chmod πŸ› οΈ

You can modify file permissions using the chmod command:

chmod 622 file1.csv

πŸ” Breaking it down:

  • 6 (Owner) = rw- (4 + 2 + 0 = 6)

  • 2 (Group) = -w- (0 + 2 + 0 = 2)

  • 2 (Others) = -w- (0 + 2)

🎯 This means:

βœ… The owner can read and write. βœ… The group and others can only write.

5️⃣ Why Linux Permissions Matter πŸ€”

βœ… Security: Protect sensitive files from unauthorized access. πŸ”’ βœ… Collaboration: Control who can modify or execute files. πŸ‘₯ βœ… Efficiency: Manage system access easily with chmod. πŸ› οΈ

Quick Recap:

πŸ”Ή r = 4, w = 2, and x = 1 🎯

πŸ”Ή Use chmod to set permissions πŸ”₯

πŸ”Ή Master permissions to take full control of your Linux system 🐧

6️⃣ Bonus: Handwritten Notes for Quick Reference ✍️

Final Thoughts πŸ’­

Understanding Linux permissions empowers you to control file access effectively. Keep experimenting with chmod, and soon, these concepts will become second nature! πŸš€πŸ”₯

Happy Coding! πŸ’»πŸ§

πŸš€ Connect with Me

For more insights on Python, Django, Docker, Open Source, DevOps, and backend development, connect with me on LinkedIn.

I’m Dhaval Gojiya, and I look forward to sharing more valuable content with you! 😊

0
Subscribe to my newsletter

Read articles from Dhaval Gojiya directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Dhaval Gojiya
Dhaval Gojiya