Courseiva
Storage ManagementeasyMultiple ChoiceObjective-mapped

LFCS Storage Management Practice Question

A system administrator receives an alert that disk /dev/sda is predicted to fail soon. The server uses LVM, and /dev/sda is part of a volume group named vg_system. Which of the following is the best course of action to replace the failing disk without downtime?

⚠ Common exam trap

Many exam-takers confuse block-level cloning (dd) with LVM-aware migration (pvmove), assuming any copy tool can replace a disk in an LVM setup without understanding that LVM metadata and extent mapping must be handled correctly to avoid downtime or data corruption.

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

Use pvmove to move physical extents to another disk, then remove the old disk.

Pvmove relocates physical extents from /dev/sda to another physical volume in the same volume group while the filesystem remains online and accessible. This allows the failing disk to be removed from vg_system without any downtime, preserving LVM metadata and data integrity.

Answer analysis

Option-by-option breakdown

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

  • Use dd to clone /dev/sda to a new disk and then replace.

    Why it's wrong here

    dd may cause downtime and I/O errors.

  • Use ddrescue to copy data, then replace the disk.

    Why it's wrong here

    ddrescue is for failing disks but does not handle LVM metadata well.

  • Remove /dev/sda from the volume group and add a new disk.

    Why it's wrong here

    Removing without moving data first causes loss.

  • Use pvmove to move physical extents to another disk, then remove the old disk.

    Why this is correct

    pvmove safely relocates data online.

About these practice questions

This LFCS question is part of Courseiva's 507-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.