Refer to the exhibit. After adding a new disk to the system, the device /dev/sdb appears. However, the administrator cannot create partitions on /dev/sdb using fdisk. What is the most likely reason?
Trap 1: The disk is mounted and cannot be partitioned.
Even if mounted, fdisk can still modify the partition table (though it may warn).
Trap 2: The disk does not have a valid partition table.
fdisk can create a new partition table on a disk without one.
Trap 3: The kernel does not support the disk's interface.
The device exists, so the kernel supports it.
- A
The disk is currently in use as a physical volume for LVM.
Active LVM physical volumes cannot be partitioned with fdisk; the PV must be removed first.
- B
The disk is mounted and cannot be partitioned.
Why wrong: Even if mounted, fdisk can still modify the partition table (though it may warn).
- C
The disk does not have a valid partition table.
Why wrong: fdisk can create a new partition table on a disk without one.
- D
The kernel does not support the disk's interface.
Why wrong: The device exists, so the kernel supports it.