Chapter 6. Menu Options
Figure 6-12. RawWrite for Windows selection dialog
Select the tab "Read" from the menu. Enter (or choose) the name of the file in which you would like to
save the floppy content. Click on the button "Copy" to initiate the image creation process.
For related tools you may have a look at the homepage of the fdos project
(
http://www.fdos.org/ripcord/rawrite/
).
CD ROM/ISO 9660 Images
UNIX and UNIX-like OS
To create an image file make use of "dd". This is one of the core UNIX utilities and is included in every
UNIX-like OS (UNIX, Sun Solaris, Linux).
To create a CD ROM image file you have to copy the contents of the CD ROM to a file. Use the
following command:
dd [
if=/dev/cdrom
] [
of=/tmp/cdrom.image
]
dd reads the entire disc from the device
/dev/cdrom
and saves the output to the specified output file
/tmp/cdrom.image
. Adjust both parameters to suit your needs (input device etc.).
46