Tagged Questions
The dd tag has no wiki summary.
10
votes
3answers
149 views
Not understanding dd command arguments at all
I'm passingly familiar with the dd command, but I've rarely had the need to use it myself. Today I need to, but I'm encountering behavior that seems really weird.
I want to create a 100M text file, ...
9
votes
2answers
252 views
Windows C# implementation of linux dd command
I'm writing a C#.Net app to run on windows that needs to take an image of a removable disk and chuck it onto a Linux Live USB. The Live USB is the inserted into the target machine and boots, on start ...
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!
4
votes
2answers
194 views
Can't reach speeds of dd
I'm writing C code with some real-time constraints. I tested out the speed I can write to a disk with dd:
dd if=/dev/zero of=/dev/sdb bs=32K count=32768 oflag=direct
This writes 1GB of zeros to ...
3
votes
5answers
109 views
Low-Level-Writing in C
How can I write to any block on my HDD using the C programming language?
There was a question about writing the MBR but it didn't cover the C aspects that much.
Since filedescriptors are - as the ...
2
votes
1answer
34 views
Using the Sleuth Kit function tsk_fs_open_img() returns an error that the FS is not a FAT FS
I am writing a program using the Sleuth Kit Library that is designed to printout the File Allocation Table of a FAT32 filesystem. Everything in my program works fine until I call the ...
2
votes
2answers
87 views
python subprocess dd and stdout
I am using subprocess to create a random file from /dev/random using unix dd. Now, if i want the data output of dd to be written to a file instead of stdout. so here's the code am using,
import ...
2
votes
2answers
932 views
Using grep to search for hex strings in a file
I have been trying all day to get this to work.
Does anyone know how to get grep, or something of the like, to retrieve offsets of hex strings in a file?
I have a bunch of hexdumps that I need to ...
2
votes
1answer
150 views
C# Html Agility Pack dd and dt tags parse problem
I'm trying to parse this field, but can't get it to work. Current attempt:
HTML:
<div class="movie_data">
<dl>
<dt><a ...
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
4answers
657 views
Reading a sector on the boot disk
This is a continuation of my question about reading the superblock.
Let's say I want to target the HFS+ file system in Mac OS X. How could I read sector 2 of the boot disk? As far as I know Unix only ...
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 ...
1
vote
1answer
16 views
What is the best way to replicate an out of disk space condition in a test environment?
I want to replicate a quota issue. a process write to a file in a directory and that we ran out of disk space, process writes empty file due to that.
I want to replicate that on my dev machine. Does ...
1
vote
1answer
67 views
How to overwrite some bytes of a binary file with dd?
I have a binary file and i want to replace the value A2 at address DEADBEEF with some other value, say A1.
How can I do this with dd? If there are other tools that can do this, please suggest. But I ...
1
vote
2answers
108 views
Inability to capture output from “dd” using backticks
I've been working with a very old Solaris system and not in a position to add more modules to make my life easier, and I'm working with a number of scripts that use various command line options.
The ...
1
vote
1answer
118 views
A java library of common unix commands (specifically dd)?
I need to use the dd command for blocking some files, and would rather do it without calling it via shell.
Is there a class library already written, or should I roll my own blocker unblocker?
...
1
vote
1answer
150 views
dd speed issue using ibs/obs
I have a loop where I use dd to copy a stream to a disk. I am using a larger blocksize using 'bs' in the entire process for speed reasons. However with one specific line I have to use 'ibs' and 'obs' ...
1
vote
3answers
554 views
Mac OS X Bash get /dev/diskNsM size
How could I get device size in bytes?
In Mac OS X 10.6 I am using this:
$ diskutil information /dev/disk0s2
Device Identifier: disk0s2
Device Node: /dev/disk0s2
Part Of ...
1
vote
1answer
1k views
How to query datetime based on date in c#
I have an MS-Access database with a DateTime column.
ex: 03/08/2009 12:00:00 AM.
I want query based on date like:
select * from tablename where date='03/08/2009'
I want display data as 03/08/2009 ...
0
votes
1answer
41 views
jQuery facebox not working with DD Ajaxtabs, any solution?
After pullingout my hairs for last 2hours, still I could not find out the conflict. Please help me in troubleshooting this issue. I am using ...
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
24 views
Replicating Unix's dd conv=block in Java (or language agnostic)
I need to replicate dd's block command in Java. For a given input, I need to remove and pad based on a cbs size.
Any tips, examples?
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
0answers
16 views
how to copy chunks of a file into an image on mentioned locations using dd [closed]
I am completely new to DD and want to create an image using dd command. and in this image I want to write chunks of a file(e.g. 5MB file) into a new image or existing image created by dd(e.g. 100 MB) ...
0
votes
1answer
146 views
Information box in DIV with absolute positioning contained in a FIELDSET gets cut off
I'm having a few troubles with an info box that is absolutely positioned in a form. The basic construction of the page is that I am using a definition list which has the label for each field ...
0
votes
1answer
124 views
any way to run gparted on cygwin?
I am creating bunch of sdcard images for android and fine myself using dd and gparted a lot
Right now I reboot my laptop in parted magic from usb drive
I have cygwin on my windoz box, which has dd
...
0
votes
0answers
113 views
Cloned Centos laptop with dd but have a problem with lvm
I thought I had cloned a linux system using dd. I booted into rescue linux from a Centos 5 dvd.
I mount my external hd.
The command I typed to clone was
dd if=/dev/hda of=/mnt/external/t42.img
...
0
votes
1answer
30 views
dd peculiarity with newlines
According to the sources I have read, dd block simply replaces newlines with spaces. Is this correct or are there other things at work.
The unix dd utility when used like so:
dd if=foo.log ...
0
votes
1answer
55 views
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
2answers
189 views
Explaination of dd command in nasm
I am reading osdev wiki. I came across these two lines of code.
nasm kernel.asm -f bin -o kernel.bin
dd if=kernel.bin of=/dev/fd0
I can understand the first line but I can't understand the ...
0
votes
1answer
70 views
dd Command - How to determine cbs
I have a input file in EBCDIC format. I have no idea how many records there are in the file. In that case, if I want to convert it to ASCII, what would be ibs, obs, and cbs?
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
6answers
232 views
T-SQL Problem
I have following table (SQL Server) Table name is LandParcels
Blockid ParcelNo Stateorprivate
========================
11001901 30 Deemana
11001901 35 Deemana
11001901 41 ...
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 ...
-1
votes
2answers
65 views
What is causing huge performance differences in these c write() calls? [closed]
Does anybody see the difference between these two lines?
1) ret = write( fd_out, local_bugger, bytes_to_move);
2) nwritten = write (fd, buf + total_written, size - total_written);
Obviously, not ...
-2
votes
1answer
97 views
Can you DD an Xbox 360 Hard Drive? [closed]
I've had a first gen Xbox since the first month it came out, and it is still in great condition, but the new bleeding edge games (i.e. L.A. Noire) are starting not to play. I have a bunch of XBLA ...