|
|
You can copy the contents of a source diskette to a destination diskette using the dd(1M) command. You can choose either a character or block device, but the same device must be used for the entire procedure.
where special_file is the path to a diskette device (such as /dev/rdsk/f0t).
With multiple diskette drives, the source data can be copied directly to
the destination disk (both diskettes must have the same density, 1.44 MB,
1.2 MB, etc.).
dd if=special_file_1 of=special_file_2 bs=36b
For example:
dd if=/dev/rdsk/f0t of=/dev/rdsk/f1t bs=36b