nerdexam
LPI

010-150 · Question #69

What are the three sets of permissions for a file?

The correct answer is A. user, group, others. Linux file permissions are divided into three sets: user (owner), group, and others. These map to the three permission triplets visible in ls -l output.

Security and File Permissions

Question

What are the three sets of permissions for a file?

Options

  • Auser, group, others
  • Badministrator, group, others
  • Cuser, standard user, others
  • Dadministrator, standard user, others

How the community answered

(57 responses)
  • A
    77% (44)
  • B
    14% (8)
  • C
    5% (3)
  • D
    4% (2)

Why each option

Linux file permissions are divided into three sets: user (owner), group, and others. These map to the three permission triplets visible in ls -l output.

Auser, group, othersCorrect

Linux and Unix-like systems define permissions for exactly three identity classes: user (the file owner), group (members of the file's associated group), and others (everyone else). This model is foundational to Unix discretionary access control and is reflected in the rwxrwxrwx permission string.

Badministrator, group, others

'Administrator' is not a Linux permission class - the owner of a file is called 'user', regardless of privilege level.

Cuser, standard user, others

'Standard user' is a Windows-centric concept and does not correspond to any of the three Linux permission sets.

Dadministrator, standard user, others

Both 'administrator' and 'standard user' are Windows terminology and have no direct mapping to Linux file permission classes.

Concept tested: Linux file permission ownership classes

Source: https://www.man7.org/linux/man-pages/man1/chmod.1.html

Topics

#file permissions#user group others#permission sets#ownership model

Community Discussion

No community discussion yet for this question.

Full 010-150 Practice