Difficulty: Easy
Correct Answer: dd and rawrite
Explanation:
Introduction / Context:
Before widespread USB installers, Linux distributions were often booted and installed from floppy disk images. Writing a raw image requires a sector-by-sector copy utility appropriate to the operating system you are using to create the disk.
Given Data / Assumptions:
Concept / Approach:
On Unix/Linux, the standard tool is dd to perform a raw write: dd if=boot.img of=/dev/fd0 bs=1440k conv=sync. On DOS/Windows, the classic utility is rawrite (or rawritewin later), designed to write raw images to floppy drives.
Step-by-Step Solution:
Verification / Alternative check:
Use file and md5sum to verify the source image; after writing, read back with dd if=/dev/fd0 of=readback.img and compare checksums.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
dd and rawrite.
Discussion & Comments