A systems administrator is troubleshooting a server that fails to boot after a kernel upgrade. The boot process hangs at the stage where the kernel attempts to mount the root filesystem. Which of the following is the most likely cause?
Trap 1: The root filesystem is formatted with an unsupported filesystem…
This would typically produce an error message, not a hang.
Trap 2: The initrd image is missing from the /boot partition.
An initrd is not always required; the kernel can mount root directly.
Trap 3: The GRUB bootloader is not installed on the MBR.
This would prevent the bootloader from loading entirely, not cause a hang at root mount.
- A
The root= parameter in the kernel command line points to a non-existent device.
A missing root device causes the kernel to hang while waiting for the device to appear.
- B
The root filesystem is formatted with an unsupported filesystem type.
Why wrong: This would typically produce an error message, not a hang.
- C
The initrd image is missing from the /boot partition.
Why wrong: An initrd is not always required; the kernel can mount root directly.
- D
The GRUB bootloader is not installed on the MBR.
Why wrong: This would prevent the bootloader from loading entirely, not cause a hang at root mount.