The Cult of DD
eklitzke.org
The Cult of DD
1–10 of 178 posts
Re: The Cult of DD
#2Re: The Cult of DD
#3Re: The Cult of DD
#4Someone should write a wiki bot to crawl through the wikis for Arch, Debian, and so forth to help rewrite all these bad instructions.
Re: The Cult of DD
#5Interesting assertion. Can you show me a shell invocation without using dd that cuts off the first 16 bytes of a binary file, for example? This is a common reason I use dd.
Re: The Cult of DD
#6Interesting assertion. Can you show me a shell invocation without using dd that cuts off the first 16 bytes of a binary file, for example? This is a common reason I use dd.
tail -c +17
Re: The Cult of DD
#7Also note that there are still unix systems out there which do not support byte-level granularity of access to block devices. On those devices you must actually use a buffer of exactly the size of the blocks on the device. Heck, linux was like this until at least v2.
Re: The Cult of DD
#8Re: The Cult of DD
#9Re: The Cult of DD
#10As far as I'm concerned, dd is lower-level than most of the other utilities and provides more control over what's happening.
The author does have a point that the syntax is strange though.