Whosoever has worked in Unix environment must be aware of dd command. The specialty of dd command lies in fact that it can copy a file, convert character mapping of files and do various other operations. In this article I am going to introduce various uses of dd command in the form of FAQs. Although the options apply to all *nix based OS, but these are specifically related to AIX.
What Does dd Command Do
The dd command reads input file specified by “if” parameter and produces output file specified by “of” parameter. In the process of generating output file, it can take several other parameters to fulfill the demands of output file. One more specific thing about dd is that, it copies the files block by block. Default block size is taken as OS block size.
What Are dd Command Common Parameters
The dd command has the following common parameters:
1. bs: Â Â Â Â Â Â Â Â Â Â Â Â Â Â Block Size.
2. cbs:Â Â Â Â Â Â Â Â Â Â Â Â Â Conversion Block Size. Used if block, unblock, ascii, ebcdic or ibm conversion is used. Its used for converting from variable block size devices to fixed block size devices.
3. conv:          Conversion format. It can be [ascii | block | ebcdic | ibm | unblock], [lcase | ucase], [iblock], [noerror], [swab], [sync], [oblock], [notrunc].
4. count:Â Â Â Â Â Â Â Â Â Number of input blocks.
5. files:Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Input files.
6. fskip:Â Â Â Â Â Â Â Â Â Â Skip EOF characterss.
7. ibs:Â Â Â Â Â Â Â Â Â Â Â Â Â Â Input Block Size.
8. obs: Â Â Â Â Â Â Â Â Â Â Â Â Output Block Size.
9. if:Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Input File.
10. of:Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Output File.
11. seek:Â Â Â Â Â Â Â Â Â Skip to record number specified.
12. skip:Â Â Â Â Â Â Â Â Â Â Skip number of input blocks.
13. span:Â Â Â Â Â Â Â Â Â [yes|no] This option is used if your file will span over multiple devices, if the input file is larger than output devices.
Now, for demo purpose I have created a file named as lower. I have added the text to this file.
How To Translate From Lower Case To Upper Case In A File
The following example will demonstrate how to translate a file from lowercase to uppercase and vice versa.
wiwlabs:$ cat lower
dd example for demonstrating translation.
wiwlabs:$ dd conv=ucase if=lower of=upper
0+1 records in
0+1 records out
wiwlabs:$ cat upper
DD EXAMPLE FOR DEMONSTRATING TRANSLATION.
wiwlabs:$ dd conv=lcase if=upper of=lower_case_file
0+1 records in
0+1 records out
wiwlabs:$ cat lower_case_file
dd example for demonstrating translation.
Another nice example is to use dd with pipe:
wsd007:$ cat lower|dd conv=ucase
DD EXAMPLE FOR DEMONSTRATING CONVERSION.
0+1 records in
0+1 records out
wsd007:$ cat upper|dd conv=lcase
dd example from demonstrating translation.
0+1 records in
0+1 records out
How To Create A Duplicate Copy of Diskette
wiwlabs:$ Â dd if=/dev/fd0 of=/tmp/fdcopy
2880+0 records in.
2880+0 records out.
wiwlabs:$ Â dd if=/tmp/fdcopy of=/dev/fd0
2880+0 records in.
2880+0 records out.
How To Convert An ASCII text file to EBCDIC Type And Vice-Versa
wiwlabs:$ cat lower
dd example for demonstrating conversion.
wiwlabs:$ dd conv=ebcdic if=lower of=text.ebcdic
0+1 records in
0+1 records out
wiwlabs:$ cat text.ebcdic
@
§
@@
¢££@¥
wiwlabs:$ dd if=text.ebcdic of=text.ascii conv=ascii
0+1 records in
0+1 records out
wiwlabs:$ cat text.ascii
dd example for demonstrating conversion.
How To Copy Blocks From A Tape With 2KB Blocks To Another With 1KB Blocks
dd if=/dev/rmt0Â ibs=2048 obs=1024 of=/dev/rmt2
How To Copy Blocks From An Input File With Block Size 32k To Tape
1 thought on “The dd Command FAQs”