Question 277 of 513
User and Group ManagementhardMultiple ChoiceObjective-mapped

LFCS User and Group Management Practice Question

This LFCS practice question tests your understanding of user and group management. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

An administrator wants to temporarily disable a user account without deleting it. The account should be locked, expire immediately, and the user should not be able to log in. Which single command accomplishes this with minimum side effects?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "minimum / minimize"

    Why it matters: Asks for the least resource use — fewest addresses, smallest subnet, lowest overhead. Eliminate over-provisioned options even if they would technically work.

  • Clue: "immediately / without restart"

    Why it matters: Time or reboot constraint — the correct answer must take effect right away without requiring a reboot or reload.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

usermod -L -e 1970-01-01 user1

Option B is correct because it combines `usermod -L` to lock the password (preventing authentication via password) with `-e 1970-01-01` to set the account expiration date to January 1, 1970, which immediately expires the account (the epoch date is treated as already past). This ensures the user cannot log in via any method (password, SSH keys, etc.) because the account is both locked and expired, with minimal side effects — no files or home directory are removed.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • usermod -L user1; chage -E 0 user1

    Why it's wrong here

    chage -E 0 sets expiration to epoch; but -L alone locks; this works but is two commands.

  • usermod -L -e 1970-01-01 user1

    Why this is correct

    Combined lock and account expiration; -e sets account expiration date.

    Clue confirmation

    The clue words "minimum / minimize", "immediately / without restart" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • usermod -L user1

    Why it's wrong here

    Locks password but account may still be accessible via SSH keys or other methods.

  • usermod -e 1970-01-01 user1

    Why it's wrong here

    Only expires account; password not locked, so if password not expired, login possible?

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often think `usermod -L` alone is sufficient to fully disable an account, forgetting that it only locks password-based authentication and does not prevent login via SSH keys, `su`, or other mechanisms, while the `-e` option alone only expires the account without locking the password.

Trap categories for this question

  • Command / output trap

    chage -E 0 sets expiration to epoch; but -L alone locks; this works but is two commands.

Detailed technical explanation

How to think about this question

Under the hood, `usermod -L` prepends a '!' to the password hash in `/etc/shadow`, making it impossible to authenticate with a password, while `-e 1970-01-01` sets the `EXPIRE` field in `/etc/shadow` to a date in the past, causing the system to treat the account as expired at login time. A subtle behavior: even with account expiration, some PAM configurations may allow root to bypass the check, but for normal users, both locks are enforced by `pam_unix.so` and `pam_lastlog.so`. In a real-world scenario, this combination is ideal for disabling a departing employee's account while preserving their data for audit or transfer.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the LFCS exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related LFCS practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free LFCS practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this LFCS question test?

User and Group Management — This question tests User and Group Management — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: usermod -L -e 1970-01-01 user1 — Option B is correct because it combines `usermod -L` to lock the password (preventing authentication via password) with `-e 1970-01-01` to set the account expiration date to January 1, 1970, which immediately expires the account (the epoch date is treated as already past). This ensures the user cannot log in via any method (password, SSH keys, etc.) because the account is both locked and expired, with minimal side effects — no files or home directory are removed.

What should I do if I get this LFCS question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "minimum / minimize", "immediately / without restart". Asks for the least resource use — fewest addresses, smallest subnet, lowest overhead. Eliminate over-provisioned options even if they would technically work.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More LFCS practice questions

Last reviewed: Jul 4, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This LFCS practice question is part of Courseiva's free Linux Foundation certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the LFCS exam.