Below you will find pages that utilize the taxonomy term “dd”
July 21, 2016
Tuning dd block size
I wanted to write this down for my own reference. I’ve been dealing with dd a bit recently and the whole block size issue comes up. What is optimal? That depends on your hardware. This article here has a way to test and determine what the optimal block size is:
http://blog.tdg5.com/tuning-dd-block-size/
June 24, 2016
Block devices, filesystems
dd – strictly works with block systems, not filesystems. It takes an input file (if), an output file(of) and block size as arguments. It copies everything block for block from one block device / file to another. That’s why you can use dd to create a bootable USB. it takes the if of an .iso and an of of /dev/sdb (a usb drive perhaps) and copies it straight over. Requires sudo in many cases because we’re dealing directly with devices (/dev/sd*).