Table of Contents

dd

Table of ContentsClose

1. Usage

  • Create a file of arbitrary size

    dd if=/dev/random of=/var/tmp/file1.db count=100 bs=1M # 100MB db
    dd if=/dev/zero of=/tmp/mytempimage.img count=500 bs=1M # 500MB img
    
  • How fast disk IO is happening

    dd if=/dev/zero of=speedtest bs=1G count=50 conv=fdatasync
    

2. Resources

3. Others

  • dd was originally to be called cc for "character copy", but because cc was already taken by the C compiler, the next letter in the alphabet was taken.

Created: 2024-07-16 Tue 16:44

Validate