You have a PC-compatible floppy and want to use it to create a Grand Unified Bootloader (GRUB)
boot floppy. You perform these steps on your Linux system in the order shown (with the /floppy
directory existing on the local hard drive):
1. fdformat /dev/fd0
2. mkfs -t msdos /dev/fd0
3. mount -t msdos /dev/fd0 /floppy
4. mkdir -p /floppy/boot/grub
5. cp /boot/grub/stage* /floppy/boot/grub
6. Invoke the grub shell and type the following commands at the prompt grub> root (fd0)
grub> setup (fd0)
grub> quit
What are the minimum steps required to accomplish the task?
A.
Only 6
B.
Only 4 and 5
C.
3, 4, 5 and 6
D.
1, 2, 4, and 5
E.
1, 2, 3, 4 and 5