

dd
98 likes
dd, that stands for ‘data duplicator’, is a command-line utility for Unix mainly used for copying and converting data.
License model
- Free • Open Source
Application types
Platforms
- Mac
- Linux
- BSD
Features
dd News & Activities
Highlights • All activities
Recent activities
- alternativeto-deviant liked dd
- POX added dd as alternative to ZOTAC WinUSB Maker
- daghemo added dd as alternative to Relax-and-Recover
- r3v0000 liked dd
Comments and Reviews
'dd' is a powerful command-line program that's been a staple of UNIX operating systems since the 1980s.
Pros:
man dd
Cons:
mkdir -p
, so the option syntax is weirdfdisk -l /dev/sda
to check your device node, becausedd if=my_linux.iso of=/dev/sda
could end up overwriting an important disk!Tips:
bs=1M
to set a 1 megabyte block size and see if it speeds up your transfer!dd
to print statisticsFor users new to 'dd' this may all seem overwhelming. If all you're looking to do is flash a Linux ISO image onto a USB stick and move on with your life then there are definitely much easier applications.
But there is a reason dd has been around for so many decades. It's simply extremely powerful, versatile and ubiquitous.
It just works. GUI utilities for writing ISO files (for example) are just not required and take longer to use than a simple commandline utility.
Fantastic because it's able to copy bytes directly from a larger drive onto a smaller drive (until reaching the end of the smaller drive of course). This allows setting up a partition table that will fit on the smaller drive, on the larger drive, then copying it.