Linux Essentials LPI 010-160 Lecture Review

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/55

flashcard set

Earn XP

Description and Tags

A collection of vocabulary flashcards based on Linux Essentials LPI 010-160 lecture notes covering basic commands, file systems, permissions, and system administration.

Last updated 3:34 AM on 8/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

56 Terms

1
New cards

Hard Disk Drives (HDD) vs. Solid State Disks (SSD)

Hard disks possess a motor and moving parts, whereas solid state disks do not and provide faster access to stored data.

2
New cards

top

A command that displays running processes, typically ordered by CPU or RAM consumption.

3
New cards

Reverse DNS Name Storage

For the IP address 198.51.100.165198.51.100.165, the name is stored in the PTR record for 165.100.51.198.inaddr.arpa165.100.51.198.in-addr.arpa.

4
New cards

host

A command used to resolve a DNS name to an IP address.

5
New cards

free

A command that displays information regarding total, used, free, shared, buff/cache, and available memory.

6
New cards

dmesg

A command used to display the contents of the Linux kernel's ring buffer; it may overwrite older information with newer data.

7
New cards

last

A command that displays login information, such as the user, tty, and timestamp of recent sessions.

8
New cards

UID of root

The numerical user ID assigned to the root user is 00.

9
New cards

SATA bus

A type of bus used to connect hard disk drives with the motherboard.

10
New cards

CentOS

A Linux distribution derived from Red Hat Enterprise Linux that allows for the application of Red Hat knowledge without a subscription.

11
New cards

chmod 654 file.txt

A command that sets a regular file's permissions to rwrxr-rw-r-xr--.

12
New cards

File Ownership

Every file in Linux is owned by exactly one user and one group.

13
New cards

/tmp/ Permissions

The standard permissions set on the /tmp/ directory are rwxrwxrwtrwxrwxrwt.

14
New cards

useradd -m tux

A command that adds the new user tux and creates a home directory for them with default configuration files.

15
New cards

/etc/passwd

A file that stores information including the username, the numerical user ID, and the encrypted password.

16
New cards

tar -z and tar -j

Two tar options used specifically to handle compression.

17
New cards

for

The keyword used in a shell script to initiate a loop.

18
New cards

tar -cf work.tar ./work/

A command that creates an archive file named work.tar from the contents of the ./work/ directory.

19
New cards

less Exit Key

The key pressed to exit the less command is qq.

20
New cards

Script Execution Methods

Valid shell scripts can be executed using either ./test.sh./test.sh (if the execute bit is set) or bashtest.shbash test.sh.

21
New cards

find /home -name foo.txt

A command that searches for the file foo.txt within the /home directory.

22
New cards

Linux Distribution

A bundling of the Linux kernel, system utilities, and other software.

23
New cards

RPM

The package management tool utilized in Red Hat-based Linux systems.

24
New cards

Inkscape

A graphical editor used for vector graphics.

25
New cards

Raspberry Pi OS Storage

The operating system is stored on a removable SD card inserted into the device.

26
New cards

Free Software License

Defines the conditions for modifying and distributing the licensed software.

27
New cards

Web Browser Cookies

Small files used to support the identification and tracking of users, which can be considered a security or privacy risk.

28
New cards

Cloud Computing Service Categories

Typical services offered by public cloud providers include Platform as a Service (PaaS), Infrastructure as a Service (IaaS), and Software as a Service (SaaS).

29
New cards

Root Privilege Indicator

The # character in a shell prompt indicates the shell is running with root privileges.

30
New cards

man and info

Two commands used to access documentation and information on the proper use of other commands like ls.

31
New cards

Recursive Directory Listing

A listing that includes the content of a directory and all of its sub-directories.

32
New cards

rmdir

A command used to remove a directory, provided that the directory is empty.

33
New cards

/usr/share/doc/

A directory containing documentation, information, and example configuration files for installed software packages.

34
New cards

PATH Environment Variable

A variable that allows the execution of commands without needing to know the specific location of the executable.

35
New cards

DNS Record Types for IP addresses

Record types that hold IP addresses include A and MX (mail exchange) records.

36
New cards

DHCP

A protocol used for the automatic configuration of IP addresses.

37
New cards

/dev/sda2

The device file representing a specific hard disk partition.

38
New cards

Linux Hardware Drivers

Software components either compiled directly into the Linux kernel or loaded as kernel modules.

39
New cards

/proc/

A directory that contains one subdirectory for every currently running process.

40
New cards

Ubuntu Linux LTS and Red Hat Enterprise Linux

Linux distributions suitable for servers intended to host services for several years with security updates.

41
New cards

/var

A directory that must be mounted with read and write access if it is located on its own dedicated file system.

42
New cards

chown

The command used to change the ownership of a file.

43
New cards

/etc/skel

A directory containing default configuration files that are copied to a new user's home directory upon account creation.

44
New cards

Symbolic Link

A type of link that has the ability to point to a file residing on another file system.

45
New cards

/etc/group

A source file containing information about group IDs and memberships.

46
New cards

passwd Tasks

The passwd command can be used to lock a user account or (according to the transcript) create a new user account.

47
New cards

su

A command that runs a shell or another command as a different user.

48
New cards

ls -R

The specific ls parameter used to print a recursive listing of directory contents.

49
New cards

pwd

The command that outputs the absolute path to the current working directory.

50
New cards

? (Regular Expression)

A regular expression operator that matches the preceding character zero or one time.

51
New cards

export

A command used to set an environment variable, such as USERNAME=bob, making it available to child processes.

52
New cards

Shell Script Return Value

The numeric value returned by a shell script after a successful execution is 00.

53
New cards

grep -i

A command option used to find lines in a file that match a term regardless of case sensitivity.

54
New cards

Apache HTTPD and NGINX

Two common examples of programs used as web servers.

55
New cards

Private Web Browser Window

A window that does not persistently store cookies, keep records in browser history, or send regular stored cookies.

56
New cards

Package Repository

The preferred source for installing new applications in a Linux-based operating system.