| dd | |
|---|---|
| Original authors | Ken Thompson (AT&T Bell Laboratories) |
| Developers | Variousopen-source andcommercial developers |
| Initial release | June 1974; 51 years ago (1974-06) |
| Written in | Plan 9:C |
| Operating system | Unix,Unix-like,Plan 9,Inferno,Windows |
| Platform | Cross-platform |
| Type | Command |
| License | coreutils:GPLv3+ Plan 9:MIT License |
| Repository | coreutils:git |
dd (Data(set) Definition) is ashellcommand for reading, writing and convertingfiledata. Originally developed forUnix, it has been implemented on many other environments includingUnix-likeoperating systems,Windows,Plan 9 andInferno.[1]
The command can be used for many purposes. For relatively simple copying operations, it tends to be slower than domain-specific alternatives, but it excels at overwriting or truncating a file at any point or seeking in a file.[2]
The command supports reading and writing files, and if adriver is available to support file-like access, the command can access devices too. Such access is typically supported on Unix-based systems that provide file-like access to devices (such asstorage) and specialdevice files (such as/dev/zero and/dev/random). Therefore, the command can be used for tasks such as backing up theboot sector of a drive, and obtaining random data.
The command can also support converting data while copying, includingbyte order swapping and converting betweenASCII andEBCDIC text encodings.[3]
dd is sometimes humorously called "Disk Destroyer", due to its drive-erasing capabilities involvingtypos.[4]
In 1974, thedd command appeared as part ofVersion 5 Unix. According toDennis Ritchie, the name is an allusion to theDD statement found inIBM'sJob Control Language (JCL),[5][6] whereDD is short fordatadefinition.[7][8] Explaining the cultural context of its syntax,Douglas McIlroy has remarked thatdd was "originally intended for converting files between theASCII,little-endian, byte-stream world ofDEC computers and theEBCDIC, big-endian, blocked world ofIBM".[9]Eric S. Raymond believes "the interface design was clearly a prank", due to the command's syntax resembling a JCL statement more than other Unix commands do.[6]
In 1987, thedd command is specified in theX/Open Portability Guide issue 2 of 1987[citation needed]. This is inherited byIEEE Std 1003.1-2008 (POSIX)[citation needed], which is part of theSingle UNIX Specification.[10]
In 1990, David MacKenzie announcedGNU fileutils (now part ofcoreutils) which includes thedd command;[11] it was written by Paul Rubin, David MacKenzie, and Stuart Kemp.[12] Since 1991, Jim Meyering is its maintainer.[13]
In 1995,Plan 9 2nd edition was released with add command with a more traditional command-line option style than the JCL statement style.[14]
Since at least 1999,UnxUtils has provided anative implementation for theWindows platform.[15][16]
Thecommand line interface significantly differs from most modern shell commands in that anoption is formatted asoption=value instead of the more typical syntax that denotes an option with a dash prefix such as:-x,-yvalue,--abc,--defvalue.
By default,dd reads fromstandard input and writes tostandard output, but input and output can be overridden. Optionif specifies an input file and optionof specifies an output file.
Non-standardized aspects ofdd depend on the underlying system or implementation, including:
On completion,dd writes statistics tostandard error. The format is standardized in POSIX.[10]: STDERR The manual page for GNU dd does not describe this format, but the BSD manuals do. Each of the "Records in" and "Records out" lines shows the number of complete blocks transferred + the number of partial blocks, e.g. because the physical medium ended before a complete block was read, or a physical error prevented reading the complete block.
Ifdd receives aSIGINFO signal while it's running – typically triggered by the user pressingCtrl+T – it writes intermediate statistics to standard error and continues processing.
The command processes data inblocks. The default size is 512 (the POSIX-mandated size and a common legacy size for disk hardware) but can be specified via command-line options. Optionbs specifies the size for both input (read) and output (write) operations. Alternatively, optionibs specifies the size for input operations andobs for output operations. Optioncbs affects conversion operations.
Optionscount,skip andseek specify a number of blocks: maximum to read, to start reading at offset from the start of the input, and to start writing at offset from the start of the output, respectively.[10]: OPERANDS
A block size option value is specified as a whole decimal number of bytes with an optional suffix to indicate a multiplier. POSIX requires suffixesb (blocks) for 512 andk (kibibytes) for 1024,[10]: OPERANDS but implementations differ on other suffixes. (Free) BSD usesm formebibytes,g forgibibytes and so on for largerpower of two units.[17] GNU usesM andG and so on for these units and useskB,MB, andGB forSI units.[12] For example, for GNUdd,bs=16M indicates a size of16 MiB (16777216 bytes) andbs=3kB specifies3000 bytes.
For POSIX compliance, some implementations interpret thex character as a multiplication operator for both block size and count option values. For example,bs=2x80x18b is interpreted as 2 × 80 × 18 × 512 =1474560 bytes, the size of a1440 KiBfloppy disk.[10]: OPERANDS For implementations that do not support this feature, thePOSIX shell arithmetic syntax ofbs=$((2*80*18))b may be used.
Block size affects performance. Many small reads and writes is often slower than fewer, larger ones. On the downside, larger blocks require moreRAM and can complicate error recovery.
When used with a variable block size device such as a tape drive or a network, the block size may determine the tape record size ornetwork packet size, depending on thenetwork protocol.
The examples below apply to many implementations, but are specifically written for GNU dd. Generally, the only difference between implementations is block size values and can be portable by using shell arithmetic expression instead of a size multiplier suffix. For example, instead ofbs=64M usebs=$((64*1024*1024)) orbs=$((64<<20)).
The command can duplicate data across files, devices, partitions and volumes, and it can transform data during transfer as specified via optionconv. In some cases, data transfer is faster withcat.[2]
To create anISOdisk image from aCD-ROM,DVD orBlu-ray disc:[18]
blocks=$(isosize-d2048/dev/sr0)dd if=/dev/sr0 of=isoimage.iso bs=2048 count=$blocks status=progress
To restore a drive from an image file:
dd if=system.img of=/dev/sdc bs=64M conv=noerror
To create an image of partition sdb2, using a64 MiB block size:
dd if=/dev/sdb2 of=partition.image bs=64M conv=noerror
Toclone onepartition to another:
dd if=/dev/sda2 of=/dev/sdb2 bs=64M conv=noerror
To clone drive ad0 to ad1; ignoring any errors:
dd if=/dev/ad0 of=/dev/ad1 bs=64M conv=noerror
The command can modify data in place. For example, this overwrites the first512 bytes of a file with null bytes:
dd if=/dev/zero of=path/to/file bs=512 count=1 conv=notrunc
Optionconv=notrunc requests to not truncate the output file. That is, if the output file already exists, replace the specified bytes and leave the rest of the output file as-is. Without this option, the command would create an output file 512 bytes long.
The example above can also be used to backup and restore any region of a device to a file, including amaster boot record. To duplicate the first two sectors of a floppy disk:
dd if=/dev/fd0 of=MBRboot.img bs=512 count=2
For security reasons, it is sometimes necessary to have adisk wipe of a discarded device. This can be achieved by a "data transfer" from the Unix special files.
dd if=/dev/zero of=/dev/sda bs=16M.dd if=/dev/urandom of=/dev/sda bs=16M.When compared to the data modification exampleabove,notrunc conversion option is not required as it has no effect when the output file is a block device.[19]
Optionbs=16M makes dd read and write16 MiB at a time. For modern systems, an even greater block size may be faster. Note that filling the drive with random data may take longer than zeroing the drive, because the random data must be created by the CPU, while creating zeroes is very fast. On modern hard-disk drives, zeroing the drive will render most data it contains permanently irrecoverable.[20] However, with other kinds of drives such as flash memories, much data may still be recoverable bydata remanence.
Modernhard disk drives contain aSecure Erase command designed to permanently and securely erase every accessible and inaccessible portion of a drive. It may also work for somesolid-state drives (flash drives). As of 2017, it does not work onUSB flash drives nor onSecure Digital flash memories.[citation needed] When available, this is both faster than using dd, and more secure.[citation needed] OnLinux machines it is accessible via thehdparm command's--security-erase-enhanced option.
Theshred program offers multiple overwrites, as well as more secure deletion of individual files.
Data recovery involves reading from a drive with some parts potentially inaccessible. The command is a good fit with this job with its flexible skipping (seek) and other low-level settings. The vanilladd, however, is clumsy to use as the user has to read the error messages and manually calculate the regions that can be read. The single block size also limits the granularity of the recovery, as a trade-off has to be made: either use a small one for more data recovered or use a large one for speed.
A C program calleddd_rescue[21] was written in October 1999. It did away with the conversion functionality ofdd, and supports two block sizes to deal with the dilemma. If a read using a large size fails, it falls back to the smaller size to gather as much as data possible. It can also run backwards. In 2003, add_rhelp script was written to automate the process of usingdd_rescue, keeping track of what areas have been read on its own.[22]
In 2004, GNU wrote a separate utility, unrelated todd, calledddrescue. It has a more sophisticated dynamic block-size algorithm and keeps track of what has been read internally. The authors of bothdd_rescue anddd_rhelp consider it superior to their implementation.[23] To help distinguish the newer GNU program from the older script, alternate names are sometimes used for GNU'sddrescue, includingaddrescue (the name on freecode.com and freshmeat.net),gddrescue (Debian package name), andgnu_ddrescue (openSUSE package name).
To make drive benchmark test and analyze the sequential (and usually single-threaded) system read and write performance for 1024-byte blocks:
dd if=/dev/zero bs=1024 count=1000000 of=1GB_file_to_writedd if=1GB_file_to_read of=/dev/null bs=1024To make a file of 100 random bytes using the random driver:
dd if=/dev/urandom of=myrandom bs=100 count=1
To convert a file to uppercase:
dd if=filename of=filename1 conv=ucase,notrunc
On request, the command reports progress. When it receives signalUSR1 (INFO on BSD systems), it writes the number of transferred blocks to standard error.
The following bash script requests progress every10 s until the transfer completes. The textPID stands for thedd process identifier.
whilekill-USR1PID;dosleep10;done
Newer versions of GNUdd support the optionstatus=progress which enables periodic status feedback.[24]
dcfldd is afork of GNUdd that is an enhanced version developed by Nick Harbour, who at the time was working for the United States'Department of Defense Computer Forensics Lab.[25][26][27] Compared todd,dcfldd allows more than one output file, supports simultaneous multiple checksum calculations, provides a verification mode for file matching, and can display the percentage progress of an operation. As of February 2026, the last release was 1.9.3 from June 2025.[28]
dc3dd is another fork of GNUdd from the United StatesDepartment of Defense Cyber Crime Center (DC3). It can be seen as a continuation of the dcfldd, with a stated aim of updating whenever the GNU upstream is updated. As of June 2023[update], the last release was 7.3.1 from April 2023.[29]
dd was always named after JCL dd cards.
dd – Shell and Utilities Reference,The Single UNIX Specification, Version 5 fromThe Open Groupdd(1) – Linux UserManual – User Commands from Manned.orgdd(1) – Plan 9 Programmer's Manual, Volume 1dd(1) – FreeBSD General CommandsManualImportant note : For some times, dd_rhelp was the only tool (AFAIK) that did this type of job, but since a few years, it is not true anymore: Antonio Diaz did write a ideal replacement for my tool: GNU 'ddrescue'.