Question 284 of 522
System ArchitecturehardMultiple ChoiceObjective-mapped

Quick Answer

The answer is an incorrect or missing `root=` kernel parameter, because the kernel panic occurs after the disk and partitions are detected, meaning the hardware is visible but the system cannot mount the root filesystem. This happens when the bootloader, such as GRUB, passes a `root=` parameter pointing to a non-existent device or wrong partition, preventing the kernel from pivoting to the root filesystem and triggering the panic. On the LPIC-1 exam, this scenario tests your understanding of the boot process and kernel parameters, often appearing as a trap where candidates blame disk failure instead of a misconfigured bootloader. A common memory tip is to think of the root filesystem as the final puzzle piece: the kernel finds the pieces (disk and partitions) but needs the correct `root=` address to place the last piece and complete the boot.

LPIC-1 System Architecture Practice Question

This LPIC-1 practice question tests your understanding of system architecture. 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.

Exhibit

Refer to the exhibit.

# dmesg | grep -i 'ata\|sda'
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    2.345678] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.345679] ata1.00: ATA-8: ST31000524AS, JC45, max UDMA/133
[    2.345680] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    2.345681] ata1.00: configured for UDMA/133
[    2.345682] scsi 0:0:0:0: Direct-Access     ATA      ST31000524AS     JC45 PQ: 0 ANSI: 5
[    2.345683] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.345684] sd 0:0:0:0: [sda] Write Protect is off
[    2.345685] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.345686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.345687] sda: sda1 sda2
[    2.345688] sd 0:0:0:0: [sda] Attached SCSI disk

Refer to the exhibit. A Linux system fails to boot with a kernel panic. The dmesg output shows the disk is detected and partitions are recognized. Which of the following is the most likely cause of the kernel panic?

Clue words in this question

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

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1hardmultiple choice
Full question →

Exhibit

Refer to the exhibit.

# dmesg | grep -i 'ata\|sda'
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    2.345678] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.345679] ata1.00: ATA-8: ST31000524AS, JC45, max UDMA/133
[    2.345680] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    2.345681] ata1.00: configured for UDMA/133
[    2.345682] scsi 0:0:0:0: Direct-Access     ATA      ST31000524AS     JC45 PQ: 0 ANSI: 5
[    2.345683] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.345684] sd 0:0:0:0: [sda] Write Protect is off
[    2.345685] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.345686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.345687] sda: sda1 sda2
[    2.345688] sd 0:0:0:0: [sda] Attached SCSI disk

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

The root filesystem cannot be mounted because the root= kernel parameter points to a non-existent or incorrect device.

A is correct because the kernel panic occurs after the disk and partitions are detected, indicating the kernel can see the hardware but cannot mount the root filesystem. The most common cause is an incorrect or missing `root=` kernel parameter in the bootloader configuration (e.g., GRUB), which specifies the root device (e.g., `/dev/sda1` or `UUID=...`). If this parameter points to a non-existent or wrong partition, the kernel cannot pivot to the root filesystem, leading to a panic.

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.

  • The root filesystem cannot be mounted because the root= kernel parameter points to a non-existent or incorrect device.

    Why this is correct

    The kernel detects the disk and partitions but then panics, likely because it cannot mount the root filesystem, often due to an incorrect root= parameter.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The kernel module for the SATA controller is missing from the initramfs.

    Why it's wrong here

    If the module were missing, the disk would not be detected. The exhibit shows the disk is detected.

  • The SATA controller is not supported by the kernel.

    Why it's wrong here

    The exhibit shows the SATA link is up and the disk is detected, so the controller is supported.

  • The disk has bad sectors causing read errors during boot.

    Why it's wrong here

    There is no indication of read errors in the exhibit; the disk is detected without errors.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates see the disk is detected and assume hardware is fine, then incorrectly blame the SATA controller or initramfs, missing the subtle point that the kernel panic occurs specifically because the root filesystem cannot be mounted due to a misconfigured `root=` parameter.

Trap categories for this question

  • Command / output trap

    If the module were missing, the disk would not be detected. The exhibit shows the disk is detected.

Detailed technical explanation

How to think about this question

Under the hood, the kernel uses the `root=` parameter to locate the root filesystem; if it is missing or invalid, the kernel cannot perform the final `pivot_root` or `switch_root` operation from the initramfs to the real root. In modern systems, the `root=` parameter often uses a UUID or PARTUUID (e.g., `root=UUID=...`) to avoid device name changes, and a mismatch (e.g., due to filesystem recreation or disk reordering) will cause a panic. A real-world scenario is when a disk is replaced or partitions are resized, and the bootloader configuration is not updated, leading to this exact failure.

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 LPIC-1 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 LPIC-1 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 LPIC-1 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 LPIC-1 question test?

System Architecture — This question tests System Architecture — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The root filesystem cannot be mounted because the root= kernel parameter points to a non-existent or incorrect device. — A is correct because the kernel panic occurs after the disk and partitions are detected, indicating the kernel can see the hardware but cannot mount the root filesystem. The most common cause is an incorrect or missing `root=` kernel parameter in the bootloader configuration (e.g., GRUB), which specifies the root device (e.g., `/dev/sda1` or `UUID=...`). If this parameter points to a non-existent or wrong partition, the kernel cannot pivot to the root filesystem, leading to a panic.

What should I do if I get this LPIC-1 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: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

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

Last reviewed: Jun 11, 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 LPIC-1 practice question is part of Courseiva's free LPI 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 LPIC-1 exam.