previous contents up next

Unix for Advanced Users

15. Advanced Commands and Usage

15.1. dd

The dd command transfers raw data between devices. For example, dd can be used to create a boot floppy under linux using the following command:

dd if=boot.img of=/dev/fd0 bs=1440

where

To change the input and output block sizes to different values, you could use the arguments: or
previous contents up next