Understanding chmod, chown, setfacl, and getfacl in Linux
Basic Linux Permission Model
Before we dive into the commands, understand the Linux permission structure:
ls -l
-rw-r--r-- 1 user group 1234 Jul 6 12:00 example.txt
-rw-r--r-- – permission string
r – read, w – write, x – execute
First set (user)...
rohit1101.hashnode.dev3 min read