EnglishDeutschFrançaisEspañolPortuguês

LPI · LPI-101 · Associate

LPIC-1 Exam 101 (101-500) (LPI-101) — Practice Questions and Mock Exam

Prepare for LPI-101 with original practice questions and clear answer explanations. Ask Alex, your AI tutor, when you need more detail, use your results to identify topics to review, and practice your pacing with timed mock exams.

60Mock exam questions
90minTime limit
500/ 800Passing score

Checked against LPI · September 2026 · Current exam version

About the exam

101-500 is the first half of LPIC-1, and LPIC-1 is the one Linux certification that belongs to nobody's product. LPI's whole pitch against Red Hat and SUSE is that its exams are vendor independent and distribution neutral, so what you are tested on is the Linux underneath rather than one distributor's tooling — which is why the package-management objectives deliberately make you learn both the Debian and the RPM side rather than choosing. The 101 paper is the machine itself: what hardware is present and which modules drive it, the boot path from firmware through the boot loader to a running init, how the disk gets carved up and how software arrives on it, the GNU and Unix command set a shell session is actually made of, and the filesystem layer from mkfs through mount to the Filesystem Hierarchy Standard. There are no prerequisites, the two exams can be taken in either order, and a single pass stays live for five years while you finish the other one.

Try five LPI-101 questions

Try five practice questions from the app’s current LPIC-1 Exam 101 (101-500) question bank, with answers and explanations.

Topic 101: System Architecture1 / 5

After an unclean start, a hosting operator wants to read the kernel ring buffer but see only the error and warning messages in it, leaving the informational noise out. Which dmesg invocation does that?

AlexFull explanation from Alex

Kernel messages carry two independent labels: a facility, saying which part of the system produced them, and a level, saying how severe they are. A reader of the ring buffer can filter on either, and confusing the two is the classic mistake, because both options take a comma-separated list and look alike on the command line. Levels also form an ordered scale, so the filter accepts a plus suffix to mean a level and everything above it, which is usually what an operator hunting failures actually wants. Filtering is a display-time decision and does not alter the buffer, unlike the options that clear it or redirect messages to the console. A separate group of options controls what the console prints rather than what the command prints, and those options deliberately suppress the normal output. Reading the option list with that split in mind — filter, display, or control — makes the tool much easier to use under pressure.

Sourcelearning.lpi.org

Topic 103: GNU and Unix Commands2 / 5

A trainee has just searched a file in vi with the question-mark command, so the remembered search direction is backward, and now presses the n key. According to the vi specification, in which direction does the editor scan?

AlexFull explanation from Alex

vi keeps two pieces of state after a search: the pattern and the direction. The repeat key uses both, which is why it does not always move toward the end of the file. The specification defines it by equivalence: it behaves like re-issuing whichever of the two search commands matches the remembered direction, with no pattern typed. Its upper-case partner is defined the other way round and therefore reverses the direction each time it is used. The practical consequence is that repeating a search after a backward search walks backward through the file, which surprises people who think of the key as meaning next. Exam tip: the remembered direction is set by the search command that was used, so read the scenario for which one it was.

Sourcelearning.lpi.org

Topic 102: Linux Installation and Package Management3 / 5

To shrink the root partition of a fleet image, an engineer proposes moving the diagnostic and repair utilities that an experienced maintainer would need onto a separate /usr filesystem. Under the Filesystem Hierarchy Standard, what is the objection to that plan?

AlexFull explanation from Alex

The root filesystem is the one thing a broken machine can be relied on to have, because everything else is mounted from it. That is why the standard describes its contents as a recovery kit rather than as a convenience: enough software to mount the other filesystems, plus the tools a maintainer needs when those other filesystems will not mount at all. A layout that pushes the repair tools onto a filesystem that may itself be the casualty leaves the operator with a shell and nothing to work with. The standard does want the root kept small, but it qualifies that wish with a floor rather than leaving it open. Exam tip: test any proposed layout by asking what is still reachable when every non-root filesystem fails to mount.

Sourcelearning.lpi.org

Topic 104: Devices, Linux Filesystems, Filesystem Hierarchy Standard4 / 5

A recursive chgrp has to walk a tree in which several subdirectories are reached through symbolic links that sit inside the tree, and those linked directories have to be walked as well. GNU chgrp is used and the group is staff. According to chgrp(1), which invocation does that?

AlexFull explanation from Alex

A recursive walk over a directory tree has to decide what to do when it meets a symbolic link that points at a directory. Following every such link can leave the intended tree, visit the same files twice, or loop; following none can miss whole areas that the administrator thinks of as part of the tree. The three documented traversal choices are exactly those positions plus the middle one, where just the links named on the command line are followed. Because the safest of the three is the default, an administrator who wants the walk to descend into linked directories has to ask for it. Where more than one is given the last one wins, so option order is not decorative. These traversal options are shared by the ownership and permission commands, so learning them once pays off three times.

Sourcelearning.lpi.org

Topic 101: System Architecture5 / 5

While reading the kernel ring buffer after a failed start, an engineer writes dmesg --level=err+ and is asked what the trailing plus sign changes. According to the dmesg manual, what does appending a plus to a level name do?

AlexFull explanation from Alex

Kernel messages carry a severity level, and the numbering runs the opposite way to intuition: the smaller the number, the more serious the message. A filter that names one level therefore has to say which direction it opens in, and the manual gives the tool two decorations for exactly that. One decoration widens the selection towards the more serious end, the other towards the chattier end, and a plain comma-separated list picks the named levels and nothing besides. Getting the direction wrong during a boot investigation either buries the interesting lines under debug noise or hides a panic that sits above the level asked for. Exam tip: check whether the sign leads or trails the level name, because the two placements are documented with opposite meanings.

Sourcelearning.lpi.org

409 practice questions

The Pass-IT question pool gives you material to practice for LPI-101. A Pass-IT mock exam uses 60 questions and a 90-minute time limit; these are practice settings.

Pool details: LPI-101

Exam details checked against LPISeptember 5, 2026

date of the last check against the official LPI source

Passing score500 / 800

as published by LPI

Objectives in the guide23 objectives listed in the official guide

across 4 domains in the official exam guide

Pool size409 questions

= The pool size is equivalent to 6 sets of 60 questions; this does not mean that each mock exam uses a separate set.

Blueprint domains4 domains in the exam blueprint

Topic 101: System Architecture 52 · Topic 102: Linux Installation and Package Management 73 · Topic 103: GNU and Unix Commands 183 · Topic 104: Devices, Linux Filesystems, Filesystem Hierarchy Standard 101

Recorded as checked against sources409 of 409

questions recorded as having their answer, options, and explanation checked against official LPI documentation

What's on the exam

Four topics, and LPI publishes an integer weight for every objective rather than a percentage band for every domain — 60 weight points across the exam, one question per point. GNU and Unix Commands is far and away the biggest at 26 of 60 — two of every five questions: the command line itself, text filters, file management, streams and pipes, processes and priorities, regular expressions and enough vi to survive. Devices, Linux Filesystems and the FHS takes 14 — partitions, mkfs, integrity checks, mounting by label and UUID, the permission model, links, and where a file is supposed to live. Linux Installation and Package Management takes 12, split deliberately across apt/dpkg and rpm/yum/zypper, plus disk layout, boot managers, shared libraries and one short objective on running as a virtualisation or cloud guest. System Architecture is the smallest at 8: hardware discovery, the boot sequence — SysVinit as well as systemd, not one or the other — and switching runlevels or targets. One number is worth internalising before you study: the weights are the question budget.

Exam blueprint: LPI-101

Topic 101: System Architecture13%

The layer between the metal and a usable system. Enumerating what hardware is actually present and which kernel modules drive it, reading the boot story out of the logs, and knowing the sequence from BIOS or UEFI through the boot loader and initramfs to a running init — with both SysVinit and systemd expected, and Upstart at awareness level. It closes on the part every administrator eventually needs at 3 a.m.: moving the running system between runlevels or boot targets, and shutting it down or rebooting it without surprising the people logged in. Eight of the exam’s sixty weight points sit here.

≈ 8 h
Topic 102: Linux Installation and Package Management20%

Getting software onto the machine and keeping it consistent. It starts before installation, with the judgement call of how to carve up the disk — what deserves its own partition, how much swap, where LVM fits — then installs and configures a boot manager, and works out which shared libraries a binary actually needs and how the loader finds them. The bulk of the weight is deliberately split across the two package worlds: apt and dpkg on the Debian side, rpm plus yum and zypper on the RPM side, with dnf at awareness level. A short final objective treats the machine itself as a guest — virtual machines, containers, cloud instances, and the identity artefacts (SSH host keys, D-Bus machine id) that must not survive being cloned.

≈ 12 h
Topic 103: GNU and Unix Commands43%

The largest block on the exam by a wide margin — 26 of 60 weight points, so roughly two questions in five. This is the shell session itself: running and editing commands, the environment and how variables get exported, text filters from cat and cut through sort, sed and the checksum tools, file and directory management including find, tar, cpio and dd, and the stream plumbing that ties them together with pipes, redirects, tee and xargs. Process work sits alongside it — foreground and background jobs, nohup, signals, ps and top, and adjusting priority with nice and renice. It finishes with regular expressions, basic against extended, and enough vi to open a config file, change it and get out.

≈ 26 h
Topic 104: Devices, Linux Filesystems, Filesystem Hierarchy Standard23%

Storage from the partition table upward. Managing MBR and GPT tables, creating ext2/3/4, XFS, VFAT and exFAT filesystems (Btrfs at feature-awareness level), then keeping them honest — checking integrity, watching free space and inodes, repairing the simple failures. Mounting is treated as its own discipline: by hand, at boot through /etc/fstab, by label or UUID, for removable media, with systemd mount units at awareness level. The last third is the permission model — modes, ownership, setuid, setgid and the sticky bit — hard and symbolic links, and the Filesystem Hierarchy Standard, which is what turns “where does this file go?” from an opinion into a rule.

≈ 14 h

Exam format and question types

Sixty questions in ninety minutes, in two formats only: multiple choice, and fill-in-the-blank, where you type the answer — usually a command, a filename or a path — with no options to pick from. There is no lab, no simulation and no terminal; LPI argues for written items in its own FAQ on the grounds that hands-on exams lack established psychometric procedure. Scoring runs on a 200-to-800 scale with 500 to pass. That is a scaled, equated score, not a percentage: LPI states plainly that the number of correct answers needed for 500 depends on which combination of questions you happen to draw, and that candidates are not all given the same questions. The useful structural fact is the weight system — every LPI exam totals 60 weight points and each point is one question, so an objective marked Weight 4 is worth four questions on the paper. Read the weights on the objectives page as a literal question budget, because that is what they are.

Question types: LPI-101

Multiple Choice85%

Select the single answer that best meets the question’s requirements.

Fill Blank15%

See LPI for official question-format information. The shares shown describe the Pass-IT practice pool; they do not establish the proportions on the official exam.

Preparing for LPI-101

Booked through Pearson VUE and sat either in a test centre or online under a remote proctor on OnVUE. LPI publishes two different language lists and the difference matters: at a VUE test centre the exam is available in English, German, Japanese, Portuguese (Brazilian), Chinese (Simplified), Chinese (Traditional) and Spanish (Modern); via OnVUE it is English, German, Japanese, Portuguese (Brazilian) and Spanish — and LPI adds that the OnVUE interface itself and its proctors are English-only. OnVUE also requires macOS or Windows, which LPI apologises for in its own FAQ as an awkward fact for a Linux certification body. Results and a score report arrive immediately at the end of the exam; Pearson VUE passes them to LPI within 24 hours, a PDF certificate becomes downloadable from the lpi.org account, and a physical certificate follows in four to six weeks. A candidate who fails may request a manual re-score in writing within 30 days of the pass/fail decision, against an administrative charge LPI publishes on its policies page; LPI itself describes the exercise as extremely unlikely to change the result.

Preparation and logistics: LPI-101

Preparation

Illustrative study time35–90 h

illustrative planning range: 35 h with relevant experience to 90 h when starting out; your needs may fall outside this range

LevelAssociate
Recommended backgroundNone. LPI publishes “There are no prerequisites for this certification” for LPIC-1, and its certification policy adds that the LPIC exams “may be taken in any order” — only the award of a higher-level designation waits for the lower one. LPI recommends nothing formally in front of this exam; it describes LPIC-1 as validating the ability to work at the command line, install and configure a Linux machine, and set up basic networking.

Taking and maintaining the certification

DeliveryPearson VUE test centre worldwide, or online under a remote proctor on Pearson VUE’s OnVUE platform. LPI notes that the OnVUE client itself requires macOS or Windows — not Linux — and that the OnVUE interface and its proctors are English-only, while test-centre delivery carries the full language list.
Retake policySet by an LPI Board vote (policy revised 18 November 2010) and identical for every LPI exam: after a first attempt a candidate must wait one week before re-taking; after a second and any subsequent attempt the wait is 14 days; and anyone who PASSES an LPI exam may not retake it for at least two years. Exam versions do not reset the clock — LPI states explicitly that 101-400 and 101-500 count as the same exam for retake purposes.
Certification validity5 years

LPIC-1 stays ACTIVE for five years from the date the second of the two exams is passed; LPI recommends recertifying after two years but requires it within five. There are three published routes: join LPI as a member and keep the certification current by submitting 20 professional development units (PDUs) per year while dues are paid; earn a higher LPIC level, which renews every level below it to the higher certification’s date; or pass the current version of the exams again. A single passed exam on its own also stays ACTIVE for five years while the candidate works toward the second one. LPI warns that a lapsed certification cannot be topped up — the holder has to re-earn the current level and every level below it.

Common pitfalls

Topics to review: LPI-101

  1. 01Fill-in-the-blank has no options

    Two of the exam's formats are multiple choice and fill-in-the-blank. The blanks want an exact command, filename or path typed from memory — recognising an answer in a list is not the same skill, and practice that only ever offers four choices will not build it.

  2. 02Distribution-neutral means BOTH package worlds

    102.4 (Debian: apt, dpkg, apt-get) and 102.5 (RPM: rpm, yum, zypper, dnf at awareness level) carry three weight points each. Candidates who only run one family routinely drop six of sixty points by skipping the other.

  3. 03The weights ARE the question count

    LPI publishes that a total weight of 60 means 60 questions and that an objective weighted 4 gets four questions. Studying evenly across 23 objectives wastes effort: Topic 103 alone is 26 points, and 102.3 and 102.6 are one point each.

  4. 04SysVinit is still examinable

    Objective 101.2 expects SysVinit to be understood alongside systemd, with Upstart known at awareness level, and 101.3 covers runlevels as well as boot targets. A candidate who has only ever met systemd is short half of two objectives worth six points together.

  5. 05500 of 800 is not 50% correct

    LPI states that the number of correct answers needed to reach 500 depends on the exact combination of questions drawn, because items vary in difficulty and candidates do not all get the same paper. Treating the pass mark as 30 of 60 is a miscalculation, in either direction.

  6. 06Passing 101 does not certify you

    LPIC-1 requires both 101-500 and 102-500. A single pass stays ACTIVE for five years while you finish the other exam, and the five-year certification clock only starts on the date the SECOND exam is passed.

Frequently asked questions

How long is the LPIC-1 Exam 101 (101-500) exam?

The LPI-101 exam has 60 questions and a 90-minute time limit.

What is the passing score for LPIC-1 Exam 101 (101-500)?

The passing score for the LPI-101 exam is 500 / 800.

Which pitfalls should I review when preparing for LPIC-1 Exam 101 (101-500)?

Topics to review include Fill-in-the-blank has no options, Distribution-neutral means BOTH package worlds, The weights ARE the question count, SysVinit is still examinable, 500 of 800 is not 50% correct, Passing 101 does not certify you. Work through examples to check that you understand the distinctions and can explain your answer.

Do you need any prior certification before taking 101-500?

LPI publishes no prerequisite for LPIC-1. Its certification policy lets you sit 101-500 and 102-500 in whichever order suits you, and only the award of a higher LPIC designation waits for the level beneath it. If you want a gentler on-ramp first, LPI's Linux Essentials certificate sits outside the LPIC programme.

Which topics carry the most weight on 101-500?

Topic 103: GNU and Unix Commands carries 43 percent, far ahead of everything else. Topic 104: Devices, Linux Filesystems, Filesystem Hierarchy Standard follows at 23 percent, then Topic 102: Linux Installation and Package Management at 20 percent and Topic 101: System Architecture at 13 percent. Shape your revision around those shares instead of treating every objective as equal.

How soon can you retake 101-500 after a failed attempt?

LPI's board policy sets a one-week wait after a first failed attempt and 14 days after every attempt that follows. Once you pass an LPI exam, you may not sit that same exam again for two years. A new exam version does not reset the clock, since LPI counts 101-400 and 101-500 as the same exam for retake purposes.

How long does LPIC-1 stay valid, and how do you renew it?

LPIC-1 stays active for five years, counted from the day you pass the second of the two exams. LPI advises recertifying after two years and requires it within five. Three routes keep it current: join LPI as a member and file 20 professional development units each year while your dues are paid, earn a higher LPIC level, which pulls every level beneath it up to the higher date, or pass the current exams again. If the certification lapses there is no top-up, so you re-earn the current level and every level below it.

Can you take 101-500 online instead of at a test centre?

Yes. You can sit it at a Pearson VUE test centre anywhere they operate, or online under a remote proctor on OnVUE. One detail catches Linux people out: the OnVUE client runs on macOS or Windows only, so you need one of those on the machine you test from. The OnVUE interface and its proctors work in English, while test centres carry LPI's full language list.

What do you take after passing 101-500?

101-500 is one half of LPIC-1. The other half is LPIC-1 Exam 102 (102-500), and the five-year certification clock only starts on the day you pass that second exam. A single pass stays active for five years while you work toward the other, so you have room to plan. Both exams rest on the same body of Linux fundamentals.

One certification, 12 months

Practice for LPI-101

Focus your practice on one certification, or choose Pro to practice across all certifications.

Start a free practice sessionTry the first 20 questions without a card to see whether the practice suits you.

For eligible purchases: money-back guarantee if you fail your exam.

View guarantee terms →