Users & Permissions

call kaiCall Kai
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.

Last updated 4:28 PM on 5/5/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Add student to class section state
Add studentsNo students in these sections. Invite them to track progress!

23 Terms

1
New cards

/etc/password

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

2
New cards

/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
New cards

/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
New cards

/etc/gshadow

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

5
New cards

useradd

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

6
New cards

useradd -c

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

7
New cards

useradd -d

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

8
New cards

passwd

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

9
New cards

usermod

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

10
New cards

userdel

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

11
New cards

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
New cards

groupmod

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

13
New cards

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
New cards

groups

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

15
New cards

Read - r

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

16
New cards

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
New cards

Execute - x

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

18
New cards

-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
New cards

ls -la

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

20
New cards

chmod

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

21
New cards

ACL

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

22
New cards

chown

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

23
New cards

chgrp

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