Objective 14 - LPI Linux Essentials Beta Exam

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/63

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:49 AM on 9/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

64 Terms

1
New cards

[014.1] What three environments does v2 explicitly expect you to understand for Linux installation/provisioning?

A physical computer, a virtual machine, and a cloud instance.

2
New cards

[014.1] What operating-system comparison is explicitly in scope for 014.1?

Key differences between Windows, macOS, and Linux.

3
New cards

[014.1] Which v2 terms are named for Linux installation media?

Installation media and ISO files.

4
New cards

[014.1] What v2 term is associated with provisioning a prebuilt system in virtual or cloud environments?

Operating system images.

5
New cards

[014.1] [V2 explicit] What is a dual-boot setup at the level expected here?

A computer has more than one operating system installed and the user chooses which one to boot.

6
New cards

[014.1] [V2 explicit] What Microsoft technology is explicitly named as a Linux compatibility option on Windows?

Windows Subsystem for Linux (WSL).

7
New cards

[014.1] Which is more directly associated with installing Linux on physical hardware: an ISO/install medium or a running cloud instance?

An ISO/install medium.

8
New cards

[014.1] Which is more directly associated with cloud provisioning: an operating-system image or /dev/sda?

An operating-system image.

9
New cards

[014.2] What major hardware components are explicitly named in v2?

Motherboards, x86/ARM processors, memory, power supplies, optical drives, peripherals, network interfaces, and block storage.

10
New cards

[014.2] Which processor architecture families are explicitly named in v2?

x86 and ARM.

11
New cards

[014.2] What two network-interface types are explicitly named?

Ethernet and Wi-Fi.

12
New cards

[014.2] What kinds of block storage are explicitly named?

Hard drives, solid-state disks, and partitions.

13
New cards

[014.2] What device-name pattern commonly represents traditional/SCSI-like block disks in Linux?

/dev/sd*.

14
New cards

[014.2] [V2 explicit] What device-name pattern is explicitly named for NVMe storage?

/dev/nvme*.

15
New cards

[014.2] What role do drivers and kernel modules have in this objective?

They allow the Linux kernel to support and manage hardware.

16
New cards

[014.2] What is /dev used for?

It contains device files (nodes) used as interfaces between processes and physical or virtual devices.

17
New cards

[014.2] What is the difference between a block device and a character device?

Block devices transfer addressable blocks of data; character devices transfer data sequentially, one character/stream at a time.

18
New cards

[014.2] In ls -l output for device files, what do leading b and c indicate?

b = block device; c = character device.

19
New cards

[014.2] What is /boot associated with?

The Linux kernel and other boot-related files.

20
New cards

[014.2] What is /sys used for?

It exposes organized kernel/device information, including information about hardware devices.

21
New cards

[014.2] What happens to data written to /dev/null?

It is discarded.

22
New cards

[014.2] What does /dev/zero provide?

As many null (zero) characters/bytes as requested.

23
New cards

[014.2] What does /dev/urandom provide?

Pseudo-random data.

24
New cards

[014.2] Why is Raspberry Pi relevant to this objective?

It is an explicitly named ARM-based computer platform used to illustrate Linux on non-x86 hardware.

25
New cards

[014.3] What is the relationship between a program and a process?

A program is executable code; when it runs, it creates a process.

26
New cards

[014.3] What does PID mean?

Process Identifier: the unique numeric identifier of a running process.

27
New cards

[014.3] What does PPID mean?

Parent Process Identifier: the PID of the process that started the current process.

28
New cards

[014.3] What does ps provide compared with top?

ps gives a static snapshot of processes; top provides a dynamic, interactive view.

29
New cards

[014.3] What does top help you inspect?

Running processes and their resource use, including CPU and memory consumption.

30
New cards

[014.3] What does free display?

The amount of used and free memory, including RAM and swap information.

31
New cards

[014.3] Where can Linux expose per-process information using PID-named directories?

/proc/.

32
New cards

[014.3] If a process has PID 887, where would you look for its process-specific /proc data?

/proc/887/.

33
New cards

[014.3] What is /proc?

A virtual/pseudo filesystem exposing process, kernel, and system information.

34
New cards

[014.3] Where are system-wide configuration files commonly stored?

/etc/.

35
New cards

[014.3] Where are traditional system log files commonly stored?

/var/log/.

36
New cards

[014.3] Why are logs useful?

They record system events and are valuable for troubleshooting.

37
New cards

[014.3] What does dmesg display?

Messages from the kernel ring buffer.

38
New cards

[014.3] What is the kernel ring buffer?

A circular in-memory structure containing kernel messages; older messages can be overwritten as new ones arrive.

39
New cards

[014.3] What does journalctl query?

The systemd journal.

40
New cards

[014.3] What is systemd in this objective?

The system and service manager used to manage services and associated system state.

41
New cards

[014.3] Which command starts a systemd service unit?

systemctl start .

42
New cards

[014.3] Which command stops a systemd service unit?

systemctl stop .

43
New cards

[014.3] Which command queries the current state of a systemd service unit?

systemctl status .

44
New cards

[014.3] Scenario: You want a one-time snapshot of current processes. ps or top?

ps.

45
New cards

[014.3] Scenario: You want a live view that updates process CPU/memory usage. ps or top?

top.

46
New cards

[014.3] Scenario: You want recent kernel/device messages after attaching hardware. journalctl or dmesg?

dmesg is the direct command for the kernel ring buffer.

47
New cards

[014.3] Scenario: You want messages stored in the systemd journal. Which command?

journalctl.

48
New cards

[014.3] Scenario: A service is not working and you first want to see whether its systemd unit is active or failed. Which command form?

systemctl status .

49
New cards

[014.4] What core networking concepts are explicitly in scope?

The Internet, IP networks, routers, IPv4 and IPv6 addresses, routing, name resolution, automatic network configuration, and basic troubleshooting.

50
New cards

[014.4] What does ip addr show display?

Network interfaces and their configured IP addresses.

51
New cards

[014.4] What does ip route show query?

The IPv4 routing table/routes.

52
New cards

[014.4] What does ip -6 route show query?

The IPv6 routing table/routes.

53
New cards

[014.4] What is a default route used for conceptually?

It is the route used when no more-specific route matches a destination, typically forwarding traffic toward a router/gateway.

54
New cards

[014.4] What does ss show?

Socket/network-connection information.

55
New cards

[014.4] What is /etc/resolv.conf associated with?

DNS resolver/client configuration, such as configured name servers.

56
New cards

[014.4] What is /etc/hosts used for?

Local static mappings between host names and IP addresses.

57
New cards

[014.4] [V2 explicit] What command is named for querying systemd-resolved resolver/DNS information?

resolvectl.

58
New cards

[014.4] What does host do?

Queries DNS/name-resolution information.

59
New cards

[014.4] What does ping primarily test?

IP reachability/connectivity to another host.

60
New cards

[014.4] What is DHCP used for?

Automatic IPv4-style network configuration, especially assigning IP addresses and related network settings to clients.

61
New cards

[014.4] What two automatic IPv6 configuration methods are named in the material?

SLAAC and DHCPv6.

62
New cards

[014.4] What is the basic idea of SLAAC?

IPv6 Stateless Address Autoconfiguration lets a host form an IPv6 address using information advertised by routers, without the same explicit address lease process as DHCPv6.

63
New cards

[014.4] What distinguishes DHCPv6 from SLAAC in the learning material?

DHCPv6 uses a DHCP server for finer-controlled IPv6 configuration; clients obtain explicit permission/configuration from the server.

64
New cards

[014.4] Troubleshooting map: interface addresses, routes, sockets, DNS lookup, reachability — which tools?

ip addr show = addresses; ip route show/ip -6 route show = routes; ss = sockets; host = DNS lookup; ping = reachability.