"dd" Command

Learn all about dd command

HOME

The dd command stands for "data duplicator" or "data destroyer" based on its usage. It is very powerful low level utility of Linux that can be used in variety of ways.

  • Backing up and restoring an entire hard drive or a partition
  • Creating virtual filesystem and backup images of CD or DVDs called ISO files
  • Copy regions of raw device files like backing up MBR (Master Boot Record)
  • Converting data formats
  • Converting File from lowercase to uppercase and vice versa
More information can be found on its man page.
root:~# man dd
          
Only superuser can execute this command.

Warning! User should be very careful while using this command as improper usage may cause data loss so that is another reason in linux community its famous as data destroyer.

The basic use of the dd command is rather easy because it takes just two arguments: if= to specify the input file and of= to specify the output file.
root:~# dd if= of= [Options]