Users and Groups Flashcards

1
Q

What should you remember about computer users and groups?

A

Computers can have multiple users and groups.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are User Rights?

A

Permissions granted to a user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a User Group?

A

A collection of users based on common attributes. Usually this means work roles.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

chmod (Change Mod)

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Privilege Creep

A

When users over time gain additional privileges as they rotate through different positions in the company. Privilege creep violates least privilege.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

User Access Recertification

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly