EnglishDeutschFrançaisEspañolPortuguês

LPI · LPI-102 · Associate

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

Prepare for LPI-102 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

102-500 is the second half of LPIC-1, and it is the half about the system in use rather than the machine underneath. Where 101 asks how the box boots and where the files go, 102 asks what happens once people are logged into it: the shell environment they land in and the Bash scripts that automate their work, accounts and groups and scheduled jobs, the four services every host quietly runs — time, logging, mail and printing — networking from addressing through troubleshooting to client-side DNS, and enough security to harden a host and use SSH and GnuPG properly. It is the same distribution-neutral contract as 101 and the same shape of paper: sixty questions, ninety minutes, 200-to-800 with 500 to pass. The exams may be taken in either order, and LPIC-1 is awarded only when both are done.

Try five LPI-102 questions

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

Topic 107: Administrative Tasks1 / 5

An attempt to delete the group builders is refused because one account still has builders as its primary group. According to groupdel(8), what is the effect of adding the --force option?

AlexFull explanation from Alex

A primary group is referenced by numeric ID in every account record and in the ownership of the files that account creates, so removing it leaves dangling references behind. Account tools therefore refuse the deletion while an account still points at the group, and offer a force flag for the administrator who has decided to accept the consequences. Forcing the removal fixes the refusal, not the dangling references: accounts keep a numeric group ID that no longer resolves to a name, and files keep an owner group that no longer exists. The documentation makes that division of labour explicit by telling the administrator to check the file systems by hand afterwards. The safe order remains to move accounts to another primary group first and then delete the group.

Sourcelearning.lpi.org

Topic 105: Shells and Shell Scripting2 / 5

A maintenance script has to visit the odd-numbered slots of a rack, so it needs the numbers 1, 3, 5, 7 and 9, each on its own line. Which invocation of the coreutils seq utility produces exactly that list?

AlexFull explanation from Alex

Generating a numeric list is a routine part of loop writing, and the utility that does it takes one, two or three operands with different meanings. One operand is an upper bound, two are a lower and an upper bound, and three put the step between them rather than at the end, which is where most mistakes come from. The sequence stops as soon as adding the step again would pass the last value, so an end value that is not hit exactly is simply not printed. Omitted operands default to one, which is why the two-operand form counts upwards in single steps. Formatting options exist as well, for padding and for a different separator, but they change the appearance rather than the values. Exam tip: read a three-operand invocation as start, step, end.

Sourcelearning.lpi.org

Topic 106: User Interfaces and Desktops4 / 5

An employee reports that the borders of windows and the edges of buttons are hard to make out on her workstation. A colleague turns on the High Contrast switch in the desktop accessibility settings. According to the GNOME desktop help, what does that switch change?

AlexFull explanation from Alex

A high-contrast theme is a visual setting rather than a display setting, and the distinction decides which problems it solves. It repaints interface elements — window frames, buttons, panels — so their edges separate more strongly, while the content a user has opened is left as its author made it. Screen brightness, by contrast, is a property of the display hardware and affects everything shown on it, so the two settings are not substitutes for one another. The desktop offers the theme both in its accessibility settings and from a menu in the top bar, which lets a user switch it on and off during a session. Sites that support users with low vision usually combine it with a larger text setting and, where needed, with magnification. Exam tip: read what an accessibility feature changes — the interface, the text size, or the screen area shown — before choosing it.

Sourcelearning.lpi.org

Topic 110: Security5 / 5

A security audit asks for every file that carries the set-user-ID bit and the set-group-ID bit together, whatever its read, write and execute bits happen to be. Which find test expresses exactly that condition?

AlexFull explanation from Alex

The permission test of the search command has three different modes and confusing them is the classic way to produce a misleading audit. Given a bare mode, the test demands an exact match of the whole permission word, so a file with any other bit set drops out of the result. With a leading minus it asks whether all the named bits are present and stays silent about the rest, which is the form an audit wants. With a leading slash it asks whether any of the named bits are present, so a file carrying only one of the two would be reported. A fourth form that once meant something close to the slash form was withdrawn long ago and is documented as no longer supported. Exam tip: translate the punctuation into words — exactly, all of, any of — before choosing.

Sourcelearning.lpi.org

395 practice questions

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

Pool details: LPI-102

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 guide19 objectives listed in the official guide

across 6 domains in the official exam guide

Pool size395 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 domains6 domains in the exam blueprint

Topic 105: Shells and Shell Scripting 54 · Topic 106: User Interfaces and Desktops 28 · Topic 107: Administrative Tasks 84 · Topic 108: Essential System Services 75 · Topic 109: Networking Fundamentals 93 · Topic 110: Security 61

Recorded as checked against sources395 of 395

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

What's on the exam

Six topics, weighted in integers that add to 60 — and on this paper each point is one question, so the spread is worth reading as a study plan. Networking Fundamentals is the heaviest at 14: IPv4 and IPv6 addressing and subnetting, TCP/UDP/ICMP, persistent interface configuration across both net-tools and iproute2, troubleshooting as its own objective, and client-side DNS. Administrative Tasks and Essential System Services take 12 each — accounts, cron/at/systemd timers and localisation on one side; system time, rsyslog and the journal, MTA basics and CUPS printing on the other. Security takes 10, and its heaviest objective is everyday cryptography: OpenSSH configuration and host keys, port and X11 tunnels, plus GnuPG key handling from signing through revocation. Shells and Shell Scripting takes 8, split evenly between the login environment and writing Bash that actually runs. User Interfaces and Desktops is the lightest block on either LPIC-1 paper at 4 points, and two of those are awareness-level.

Exam blueprint: LPI-102

Topic 105: Shells and Shell Scripting13%

Two objectives of equal weight, and between them the single most transferable skill on the exam. The first is the environment a login actually lands in — which of the profile and rc files run in which order, how variables and aliases and functions are set and exported, and what skeleton files hand a new user their defaults. The second is writing Bash that survives: conditionals and loops, exit codes and test, command substitution, arguments and shebangs, sourcing one script from another, and knowing that a script is only useful once it is executable and on a sensible path.

≈ 8 h
Topic 106: User Interfaces and Desktops7%

The smallest block on the exam — four of sixty weight points — and mostly awareness rather than configuration. Installing and configuring X11 and its display manager, then recognising the major desktop environments (KDE, GNOME, Xfce) and the protocols that carry a remote session, X11 and Wayland among them. The third objective is accessibility, and it is a pure knowledge check: the assistive technologies a Linux desktop ships — sticky and slow keys, screen readers, magnifiers, on-screen keyboards, high-contrast and large-print themes — and what each is for.

≈ 4 h
Topic 107: Administrative Tasks20%

The recurring work of running a multi-user machine. Accounts and groups first — adding, removing, suspending and changing them, and reading the files behind the commands: /etc/passwd, /etc/shadow, /etc/group and the skeleton directory. Then scheduling: cron in all its forms, at for one-off jobs, systemd timers as the modern equivalent, and the access files that decide who may schedule anything at all. The block closes on localisation — time zones, locale and character-encoding settings, and converting between encodings — which is the objective candidates skip and then meet in a question.

≈ 12 h
Topic 108: Essential System Services20%

Four services every administrator inherits. Keeping the clock right, including the hardware clock and NTP synchronisation, because half of an authentication or log mystery is a clock. System logging, which on this exam means rsyslog configuration, log rotation and the systemd journal side by side. Mail transfer at basics level — awareness of the common MTAs, forwarding and aliases, and enough to redirect mail rather than administer a mail server. And printing through CUPS with the surviving LPD-compatible commands: queues, jobs, and the configuration behind them.

≈ 12 h
Topic 109: Networking Fundamentals23%

The heaviest block on this exam, fourteen of sixty weight points. It opens on the theory — IPv4 and IPv6 addressing, subnetting, the difference TCP, UDP and ICMP make, and the common ports and services — then moves to configuring an interface so it survives a reboot, across the old net-tools commands and the modern iproute2 set. Troubleshooting is its own objective and is treated practically: work out where the path breaks and which tool tells you. It closes on client-side DNS — /etc/resolv.conf, /etc/hosts, nsswitch, and the resolver tools — which is where a surprising share of “the network is down” turns out to live.

≈ 14 h
Topic 110: Security17%

Security at the level a system administrator, not a specialist, is expected to hold. Reviewing the configuration for the obvious exposures — files with setuid set, open ports, accounts that should not be there — and using sudo rather than a shared root password. Host hardening comes next: shutting off services that need not run, shadow passwords, per-user resource limits, and the access-control files. The largest single objective in the block is encryption in daily use — OpenSSH client configuration, host keys and the role they play, port and X11 tunnels, and GnuPG for encrypting, signing, verifying and revoking.

≈ 10 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-102

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-102

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-102

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-102

  1. 01Networking is the biggest block, and it is practical

    Topic 109 carries 14 of 60 points and three of its four objectives are configuration and troubleshooting, not theory. Persistent configuration is examined across both the legacy net-tools commands and iproute2 — knowing only ip, or only ifconfig, leaves points on the table.

  2. 02Don't skip the four-point topic

    User Interfaces and Desktops is the lightest block on either paper, and candidates drop it. It is still four guaranteed questions, and objective 106.3 (accessibility) is pure recall — sticky keys, screen readers, magnifiers, high-contrast themes — which makes it the cheapest four points on the exam.

  3. 03cron AND at AND systemd timers

    Objective 107.2 is worth four points and names all three scheduling mechanisms plus the access files (/etc/cron.allow, /etc/at.deny and their siblings) that gate who is allowed to schedule at all. Knowing crontab syntax alone covers maybe half of it.

  4. 04Logging means rsyslog and the journal

    108.2 is a four-point objective and it wants all three at once: rsyslog, logrotate and journalctl. A candidate fluent in journalctl but blank on /etc/rsyslog.conf and logrotate is examinable on the half they skipped.

  5. 05Fill-in-the-blank wants exact paths

    This paper is dense with configuration files — /etc/shadow, /etc/resolv.conf, /etc/nsswitch.conf, /etc/hosts.allow, ~/.ssh/authorized_keys. The typed-answer format gives no list to recognise them from, so approximate recall of a path scores zero.

  6. 06500 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.

Frequently asked questions

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

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

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

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

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

Topics to review include Networking is the biggest block, and it is practical, Don't skip the four-point topic, cron AND at AND systemd timers, Logging means rsyslog and the journal, Fill-in-the-blank wants exact paths, 500 of 800 is not 50% correct. Work through examples to check that you understand the distinctions and can explain your answer.

Do you need any prerequisites before taking LPIC-1 Exam 102 (102-500)?

There are none. LPI sets no entry requirement for LPIC-1, and its certification policy lets you sit the two papers in either order. Only the LPIC-1 designation waits for both: it is awarded after the second pass, and each individual pass stays active for five years while you work toward the other. LPI frames the level around command-line work, installing and configuring a Linux system, and basic network setup.

How is LPIC-1 Exam 102 (102-500) weighted across its topics?

Topic 109: Networking Fundamentals is the heaviest block at 23%. Topic 107: Administrative Tasks and Topic 108: Essential System Services follow at 20% each, then Topic 110: Security at 17% and Topic 105: Shells and Shell Scripting at 13%. Topic 106: User Interfaces and Desktops closes the list at 7%, which is small but still scored, so skipping it hands away points you could have banked.

When can you retake LPIC-1 Exam 102 (102-500) after a fail?

LPI applies one retake rule to every one of its exams. After a failed first attempt you wait one week; after a second or any later attempt the wait is 14 days. A version change does not reset that clock, since LPI counts 101-400 and 101-500 as the same exam for this purpose. Once you pass, you may not sit that exam again for two years.

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 inside five. Three routes are published: join LPI as a member and file 20 professional development units a year while your dues are paid, earn a higher LPIC level, which pulls every level below it up to the newer date, or sit the current version of the exams again. Let it lapse and there is no top-up: you re-earn the current level and everything under it.

Can you take LPIC-1 Exam 102 (102-500) online instead of at a test centre?

You have two options: a Pearson VUE test centre anywhere in its network, or an online sitting supervised by a remote proctor on OnVUE. Two constraints apply to the online route. The OnVUE client runs on macOS and Windows only, so a Linux desktop cannot host your own exam, and the OnVUE interface and its proctors work in English. Test-centre delivery keeps the full language list.

What should you take alongside LPIC-1 Exam 102 (102-500)?

LPI-101, LPIC-1 Exam 101 (101-500), is the other half of the same certification. Order does not matter, so starting with 102 is a legitimate path if networking and security sit closer to your day job. Each pass holds for five years, and the LPIC-1 designation is issued once you clear both. Later on, the renewal route through a higher LPIC level refreshes LPIC-1 with it.

One certification, 12 months

Practice for LPI-102

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 →