Tagged Questions

5
votes
2answers
782 views

How to redirect output from dd command to /dev/null?

In shell script i need to redirect output from dd command to /dev/null - how to do that? ( dd if=/dev/zero of=1.txt count=1 ) 2>&1 /dev/null didn't work!
2
votes
3answers
558 views

dd: How to calculate optimal blocksize?

How do you calculate the optimal blocksize when running a dd? I've researched it a bit and I've not found anything suggesting how this would be accomplished. I am under the impression that a larger ...
2
votes
1answer
1k views

dd block size optimisation?

For a long time, I always thought that the bs and count parameters for dd were merely for human convenience; as dd would just multiply them and use the byte value. A month ago, when installing Ubuntu ...
2
votes
3answers
326 views

DD img different MD5's?

We have a smart media card with a linux install on it that we need to duplicate. We created an img with DD and then used dd to write the img back to a couple of new smart media cards. We have compared ...
2
votes
3answers
429 views

do stdout output with specific speed

For a load test of my application (under Linux), I'm looking for a tool that outputs data on stdout at a specific rate (like 100 bytes/s), so that I can pipe the output to netcat which sends it to my ...
0
votes
4answers
52 views

Copy n bytes of data x to file

How we can copy for example 10 bytes of '7' to a file? How can I generate those 10 bytes of 7? For example for n bytes of zero I'm doing dd if=/dev/zero of=myFile bs=1 count=10
0
votes
0answers
53 views

how to generate random number using dcfldd command?

How can I wipe a disk by filling random number on it? I tried using dcfldd if=/dev/urandom of=/dev/sda and produced random characters in the disk. Any ideas?
0
votes
1answer
155 views

problem in reading output of dd command using pipe

I am developing an application, in which I want to redirect the output (progress information) of dd command to my C++ program, but it is not actually getting the output, here is the code FILE * ...
0
votes
3answers
258 views

Grab a random number of bytes from a file with bash?

I have a file of 256MB. I'd like to retrieve a random amount of data from this file and copy it to another file. Is there a way to do this in bash or some other way? Edit: choose a random number ...
0
votes
2answers
554 views

How to backup LIF formatted disk?

I have several old 3.5in floppy disks that I would like to backup. My attempts to create an image of the disks have failed. I tried using the UNIX utility dd_rescue, but when the kernel tries to ...