medium
Single Answer
0Rick is reviewing Linux system permissions and finds a directory that is set to: -rwxr--r-- Who will have access to the directory to read the file?
Answer Options
A
The user
B
The user and their group
C
All users
D
No users except root
Correct Answer: C
Explanation
Linux permissions are read left to right for user, group, and other. With r’s at each location, this means everyone can read the contents of the directory. Only the user can write and execute files in the directory.