About the Exam

Linux Essentials is LPI’s foundational certification for people new to Linux and open source. It covers open source concepts, Linux basics, command-line use, files and directories, backups, simple scripting, hardware, and basic security and file permissions. Passing the exam demonstrates that a candidate has the core Linux literacy expected for an end user or early-career IT professional.

Exam Topics

  • The Linux Community and a Career in Open Source7%
  • Finding Your Way on a Linux System9%
  • The Power of the Command Line9%
  • The Linux Operating System8%
  • Security and File Permissions7%

How to Use This Practice Exam

  1. Browse — Read each question, select your answer, and reveal the explanation.
  2. Exam Mode — Simulate real exam conditions with a timed session and score report.
  3. Learn Mode — Spaced repetition schedules questions you struggle with for long-term retention.

Download the Full Exam PDF

Get every question and answer in a clean, printable PDF built for offline study. Purchase once, keep permanent access, and re-download the latest version anytime.

Last updated June 16, 2026 at 8:34 PM

Topic filter
Retired questions
Question sort

QuestionQ1

The Linux Operating System

Where is a Raspberry Pi’s operating system stored?

  • A On the master device attached to the Raspberry Pi's IDE bus.
  • B On a read only partition on the Raspberry Pi's firmware, next to the BIOS.
  • C On a removable SD card which is put into the Raspberry Pi.
  • D On a Linux extension module connected to the Raspberry Pi's GPIO pins.
  • E On rewritable flash storage which is built into the Raspberry Pi.
Explanation

Raspberry Pi OS is normally installed as an OS image on removable SD-card boot media, which is inserted into the Raspberry Pi. Raspberry Pi documentation identifies a microSD card as the most common boot medium and states that devices check an inserted SD card for an operating system by default.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ2

The Power of the Command Line

Which of the following commands can resolve a DNS name to an IP address?

  • A dnsname
  • B dns
  • C query
  • D host
  • E iplookup
Explanation

The host utility queries DNS and returns address records, allowing a hostname to be resolved to its IP address.

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ3

Finding Your Way on a Linux System

A user is in the directory /home/user/Downloads/ and runs the command ls ../Documents/.

Assuming that it exists, which directory’s contents are displayed?

  • A /home/user/Documents/
  • B /home/user/Documents/Downloads/
  • C /home/user/Downloads/Documents/
  • D /Documents/
  • E /home/Documents
Explanation

.. refers to the parent of /home/user/Downloads/, which is /home/user/. Therefore, ../Documents/ resolves to /home/user/Documents/.

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ4

The Power of the Command Line

Most Linux commands can show information about how they are used. How can this information usually be displayed?

  • A By running the command with the option /? or /??.
  • B By running the command with the option ?! or ?=!.
  • C By running the command with the option /doc or /documentation.
  • D By running the command with the option -h or --help.
  • E By running the command with the option -m or --manpage.
Explanation

Most Linux command-line utilities conventionally display a usage summary and available options when invoked with -h or --help.

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ5

The Linux Operating System

What is the recommended source for installing new applications on a Linux-based operating system?

  • A The vendor's version management system
  • B A CD-ROM disk
  • C The distribution's package repository
  • D The vendor's website
  • E A retail store
Explanation

A Linux distribution’s package repository is the preferred installation source because it supplies distribution-compatible, dependency-managed, and typically signed software packages that receive updates through the system package manager.

Community Discussion

No comments yet. Be the first to start the discussion!
Know a question that should be here? Contribute to this exam
Back home