تبدیل و کپی یک فایل. اطلاعات بیشتر: https://www.gnu.org/software/coreutils/dd.
archlinux-xxx.iso
:dd if={{path/to/file.iso}} of=/dev/{{usb_drive}}
dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs={{4194304}} conv={{noerror}}
dd if=/dev/urandom of={{path/to/random_file}} bs={{100}} count={{1}}
dd if=/dev/zero of={{path/to/file_1GB}} bs={{1024}} count={{1000000}}
dd if={{/dev/drive_device}} of={{path/to/file.img}}
dd if={{path/to/file.img}} of={{/dev/drive_device}}