You failed. Your score report shows 680. The passing threshold is 800. You’re 120 points short.
This wasn’t bad luck. You didn’t fail because the exam was unfair or because you ran out of time. You failed because you made one of five specific mistakes that trips up 60% of LPIC-1 Linux Administrator candidates on their first attempt. This article tells you which one you made and exactly how to fix it before you retake it.
Why Common Mistakes Trip Everyone Up
The LPIC-1 exam (exam codes 101 and 102) tests real system administration skills. It’s not a memorization gauntlet. It’s testing whether you can troubleshoot an actual broken Linux system, configure a production mail server, or lock down file permissions when the stakes matter.
The catch: the exam questions don’t tell you when you’re thinking about the problem wrong.
You’ll see a question that looks straightforward. You’ll answer it based on what you learned in a video tutorial or study guide. You’ll move on. Then the score report comes back and you see you got entire sections wrong—file permissions, package management, kernel modules, whatever. But you studied those topics.
Here’s what actually happened: you learned the concept, but you learned it wrong. Not completely wrong. Wrong in the specific way that matters on this exam. Wrong in a way that feels right until the test proves it isn’t.
Most candidates make these five mistakes:
-
Assuming permissions work the way they sound — thinking
chmod 755is about making something “accessible” without understanding the octal breakdown (7 = rwx for owner, 5 = rx for group, 5 = rx for others). -
Treating package managers as interchangeable — mixing up
apt-get,yum, anddpkgcommand syntax instead of knowing exactly which tool does what on which system. -
Misunderstanding what processes actually run as — guessing at user/group context instead of checking with
ps auxandid. -
Confusing file system hierarchy — putting config files in
/tmpor binaries in/optwithout understanding what/etc,/usr/bin,/usr/sbin, and/usr/local/binactually mean. -
Skipping the hands-on part of studying — reading about
iptablesrules instead of actually breaking a firewall and fixing it.
One of these is your failure. Usually it’s #5.
The Specific Pattern That Causes This
LPIC-1 tests applied Linux knowledge, not conceptual knowledge. The exam makers don’t care if you can define what /etc/passwd is. They care if you can look at a permission problem and fix it in 45 seconds.
This means studying from slides or videos creates a gap. You learn what something is. You don’t learn what it feels like to use it under pressure, with incomplete information, when you’re tired, and the clock is running.
The exam questions expose this gap immediately.
Here’s a real example:
Question scenario: “A user named alex cannot write to /var/www/uploads. The directory is owned by www-data:www-data with permissions 750. You have 90 seconds to identify the problem and pick the solution.”
Most candidates who studied from slides pick this answer: “Change permissions to 755.”
The actual answer might be: “Add alex to the www-data group and set permissions to 750 with the group writable bit set (770)” — or it might be something else entirely depending on what the question is actually testing.
The problem isn’t the complexity. It’s that you were never forced to sit with the question long enough to think about what the permissions actually mean in context. You were never made uncomfortable enough to really understand it.
How The Exam Actually Tests This
The LPIC-1 exam is 90 minutes per paper (101 and 102, typically taken together or sequentially). You get roughly 60 questions split between the two exams. That’s 90 seconds per question on average.
The score report breaks down your performance by topic:
- System Architecture
- Linux Installation and Package Management
- GNU and Unix Commands
- Devices, Linux Filesystems, Filesystem Hierarchy Standard
- User and Group Management
- Text Editing, Processing, and Printing
- Administrative Tasks
- Essential System Services
- Networking Fundamentals
- Security
If you scored 680, your report shows which of these categories you fell short in. Most candidates fail because they scored poorly in “GNU and Unix Commands” or “User and Group Management.” Those aren’t accidents. Those sections require hands-on competency.
The exam doesn’t ask you to write a script. It doesn’t ask you to build a server from scratch. But it does ask you to read the output of ls -la, understand what it means, and know what command to run next. That requires you to have actually done it.
How To Recognize It Instantly
Before you retake the exam, run this diagnostic on yourself:
Can you do these right now, on a live Linux system, in under 5 minutes each?
-
Create a directory, set its permissions to
755, then add a user to a group that needs write access without changing the directory’s permissions. -
Use
grepto find all lines in/var/log/auth.logthat contain failed login attempts and pipe the output towc -l. -
Identify which user and group own the SSH daemon process while it’s running.
-
Create a symbolic link and a hard link. Explain why they’re different by checking their inodes.
-
List all installed packages, filter for ones containing “apache,” and show their version numbers using the package manager on your system.
If you hesitated or got stuck on any of these, you found your weakness. That’s where you lost points.
Practice This Before Your Exam
Stop reading articles. Stop watching videos.
Get a Linux system. Debian or CentOS, doesn’t matter. If you don’t have one, use a free cloud instance (AWS free tier, DigitalOcean, or VirtualBox).
Pick one of the five common mistakes from earlier. Spend 2 hours only on that one topic.
Break it deliberately. Make it fail. Then fix it. Do this 10 times.
Example: If it’s file permissions, spend the session doing nothing but:
- Create files with different permissions
- Try to access them as different users
- Watch what works and what doesn’t
- Check with
statandls -la - Fix permission problems on the first try
- Do it again
No studying. No notes. Just repetition until your hands know the answer before your brain does.
Right now: Pick the section from your score report where you scored lowest. Spend 90 minutes doing hands-on practice on that one topic. Not reading. Not watching. Doing. Then schedule your retake for two weeks out and commit to this practice schedule.
The second attempt is where most people pass. You’re close. Fix this.