Users and Groups Flashcards
What should you remember about computer users and groups?
Computers can have multiple users and groups.
What are User Rights?
Permissions granted to a user
What is a User Group?
A collection of users based on common attributes. Usually this means work roles.
chmod (Change Mod)
Program in Linux that is used to change permission or rights of a file or folder using a shorthand number system.
R (read) = 4
W (write) = 2
X (execute) = 1
The command to use chmod:
chmod 760 filename
Where 7 = Owner has full power (4+2+1=7)
Where 6 = Group can RW (4+2=6)
Where 0 = All Users have no access
Need to know for exam.
Privilege Creep
When users over time gain additional privileges as they rotate through different positions in the company. Privilege creep violates least privilege.
User Access Recertification
Process where each users rights are revalidated to ensure they are correct. It’s essentially account auditing.
This should be conducted when a user is either Hired, Fired, or Promoted.