Difficulty: Easy
Correct Answer: Fdisk
Explanation:
Introduction / Context:An “invalid media device” boot message typically indicates that the system cannot find a valid partition table or boot sector on the new disk. Before formatting or installing an operating system, the disk must be properly partitioned.
Given Data / Assumptions:
Concept / Approach:
The correct sequence for bringing a new MBR-based disk online is: partition the disk, set the active (bootable) partition, then format the partition with a file system, and only then install the operating system. FDISK (or an equivalent partitioning tool) is therefore the immediate next step.
Step-by-Step Solution:
Run FDISK to create a primary DOS partition (and optionally an extended partition with logical drives).Mark the desired primary partition as Active.Reboot if required so the OS recognizes the new partition table.Run FORMAT on the created partition(s) to create a file system.Proceed with OS installation.Verification / Alternative check:
Re-running FDISK after reboot shows the created partitions; FORMAT completes successfully; subsequent boots no longer show the error and the installer recognizes the disk.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to set the partition Active; power-cycling before saving changes; mixing LBA/CHS modes causing geometry mismatches on very old BIOSes.
Final Answer:
Fdisk
Discussion & Comments