Multiple choice

chmod 644 passwd What are permissions for the passwd file?

  1. User=rw Group=r Other=r

  2. User=r Group=r Owner=rw

  3. User=rwx Group=wite Other=write

  4. Add current user as owner for the file.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In chmod 644, the octal digits represent permissions: 6 (read+write) for the owner, 4 (read) for the group, and 4 (read) for others. This matches User=rw, Group=r, Other=r.