Users & Permissions

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/22

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

23 Terms

1

/etc/password

is a file on Unix-like systems that stores user account information, including usernames, hashed passwords, user IDs, and group IDs.

2

/etc/shadow

File that stores user account information, including hashed passwords, in a secure manner, ensuring that only authorized processes can access the password data.

3

/etc/group

is a file on Unix-like systems that defines user groups, including group names, group IDs, and the users who belong to each group.

4

/etc/gshadow

is a file that stores group information, including hashed passwords for the groups, ensuring enhanced security for group management.

5

useradd

is a command used in Unix-like systems to create a new user account and set initial configurations.

6

useradd -c

option that allows you to add a comment or description for the new user being created.

7

useradd -d

option that specifies the home directory for the new user being created.

8

passwd

is a command used to change a user's password in Unix-like systems, allowing the user to securely manage their credentials.

9

usermod

command used to modify an existing user account's properties in a Unix/Linux system.

10

userdel

is a command used to delete an existing user account from a Unix-like system, removing the user's files and permissions.

11

groupadd

is a command used to create a new group in a Unix-like system, allowing for the management of user permissions and access rights.

12

groupmod

command used to modify an existing group account's properties in a Unix/Linux system.

13

usermod

is a command used to modify an existing user's account details, such as username, home directory, and group memberships in a Unix/Linux system.

14

groups

Displays the primary and secondary group membership for the specified user account.

15

Read - r

Permission that allows a user to view the contents of a file or directory in a Unix/Linux system. - Vale: 4

16

Write - w

Permission that allows a user to modify or delete the contents of a file or directory in a Unix/Linux system. - Value: 2

17

Execute - x

Permission that allows a user to run a file as a program in a Unix/Linux system. - Value: 1

18

-rwxrw-r—

File permission notation indicating read, write, and execute permissions for the owner, read and write for the group, and read-only for others in a Unix/Linux system. Value: 764

19

ls -la

Command to list all files and directories in detail, showing permissions, ownership, and size in Unix/Linux.

20

chmod

Command used to change file permissions in Unix/Linux systems.

21

ACL

Access Control List, a list that defines permissions for different users or groups for specific resources in a Unix/Linux system.

22

chown

Command used to change the ownership of files and directories in Unix/Linux systems.

23

chgrp

Command used to change the group ownership of a file or directory in Unix/Linux systems.