LCA Study Guide 2026

Everything you need to pass the LCA exam in one place: the exam format, every topic to study, real practice questions with explanations, flashcards, and full-length practice tests. Free, no sign-up needed.

๐Ÿ“‹ LCA Exam Format at a Glance

60
Questions
90 min
Time Limit
70%
Passing Score

๐Ÿ“š LCA Topics to Study (63)

โœ๏ธ Sample LCA Questions & Answers

1. Which command displays real-time per-CPU statistics including user, system, and idle percentages?
โœ“ mpstat

mpstat from the sysstat package shows per-processor statistics in real time.

2. What does `set -o pipefail` change about pipeline exit status?
โœ“ The pipeline returns the exit status of the last failed command, not just the last command

Without `pipefail`, a pipeline's exit status is the last command's status; with it, any failure in the pipeline propagates.

3. What does the `du` command do in Linux?
โœ“ Shows disk usage per file/directory

The `du` command (disk usage) estimates file space usage, specifically showing the amount of disk space consumed by files or directories. When run without arguments, it displays the usage for the current directory and its subdirectories. This is useful for identifying large files or directories that are consuming significant disk space.

4. Which file contains the persistent mount information in Linux?
โœ“ /etc/fstab

The `/etc/fstab` file stores persistent mount information, meaning it defines file systems that should be mounted automatically every time the system boots. Each entry in this file specifies a device, its mount point, file system type, and various options. This ensures that critical partitions and devices are always available.

5. In Bacula, which daemon manages job scheduling, client catalog, and coordinates the overall backup/restore process?
โœ“ Director (bacula-dir)

The Bacula Director (bacula-dir) is the central control daemon that schedules jobs, maintains the catalog, and coordinates all backup and restore operations.

6. Which configuration file sets the DNS resolver search domain and nameserver addresses on a traditional (non-NetworkManager) Linux system?
โœ“ /etc/resolv.conf

/etc/resolv.conf contains 'nameserver' and 'search' directives that configure the system's DNS resolver library.

๐ŸŽฏ Free LCA Practice Tests

๐Ÿ“– LCA Guides & Articles

Your LCA Study Path
1. Learn with Flashcards โ†’ 2. Drill Practice Tests โ†’ 3. Take the Full Exam Simulation
Was this helpful?
LCA Study Guide 2026 โ€” Exam Format, Topics & Practice Questions