Week 2 Flashcards

1
Q

Windows domain

A

A network of computers, users, files, etc that are added to a central database

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

User Access Control (UAC)

A

A feature in Windows that prevents unauthorized changes to a system

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

/logonpasswordchg:yes

A

Asks the user to change the default password

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

PASSWD

A

Command to change password in Linux

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

sudo passwd -e victor

A

Asks the user Victor to change his password

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

net user andrea * /add

A

Lets you add a user in Windows and setup a default password for them

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

Remove-LocalUser user

A

Windows command followed by the specified user you want to remove

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

sudo useradd user

A

Adds a specified user in Linux

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

sudo userdel user

A

Deletes a specified user in Linux

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

User profile

A

User account on a mobile device

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

Primary account

A

Root account on a mobile device

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

What are access control lists used for?

A

To assign permissions

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

Read permission

A

Lets the user see that be file exists, and allows them to read its contents. Also lets them user read the files and directories in a directory

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

Read and Execute permission

A

Allows the user to read files, and if the file is an executable, the user can run the file.

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

List folder contents permission

A

An alias for Read and Execute permission on a directory

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

Write permission

A

Lets the user make changes to a file. Does not include read permission, so if you want the user to be able to read the file too, then both read and write permission will need to be given.

17
Q

Modify permission

A

An umbrella permission that includes read, execute, and write

18
Q

Full control permission

A

Allows a user to do whatever they want with a specified file, including giving various permissions to other users for access to the file

19
Q

What are the three permissions that can be given in Linux?

A

Read, write, execute

20
Q

What’re the owner, group, and other users denoted by?

A

Owner - u
Group - g
Other users - o

21
Q

How to grant permissions in windows cli?

A

icacls “file” /grant user:(permission 1)(permission 2)

22
Q

How do you grant permissions in Linux BASH?

A

chmod u/g/o + r/w/x file

23
Q

How to check file permissions in Linux

A

ls -l file_name

24
Q

Numerical equivalents for each permission in Linux

A

4 for r
2 for w
1 for x

25
Q

how to change owner or group of a file?

A

chowm user_name - change owner

chgrp group_name - change group owner

26
Q

WD, AD, and S permissions

A

WD - create files/write data

AD - create folders/append data

S - Synchronize

27
Q

Sticky bit permission in Linux

A

Sticks a file of folder down to make it so anyone can write to a file or folder but they can’t delete anything