π§ Linux File Permissions Explained in Simple Terms! π₯

Table of contents
- 1οΈβ£ The Basics: What Do r, w, and x Stand For?
- 2οΈβ£ Binary Representation: The Language of Computers π₯οΈ
- 3οΈβ£ Understanding Permission Numbers π’
- 4οΈβ£ Changing Permissions with chmod π οΈ
- 5οΈβ£ Why Linux Permissions Matter π€
- 6οΈβ£ Bonus: Handwritten Notes for Quick Reference βοΈ
- Final Thoughts π

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
or1
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:
Permission | Binary | Decimal |
r (Read) | 100 | 4 |
w (Write) | 010 | 2 |
x (Execute) | 001 | 1 |
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:
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! π
Subscribe to my newsletter
Read articles from Dhaval Gojiya directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
