active questions tagged dd - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T19:11:15Zhttp://stackoverflow.com/feeds/tag/ddhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1721116/styling-the-dd-tag0Styling the DD tag Joemon2009-11-12T09:49:37Z2009-11-12T13:11:16Z
<p>I am using dl,dt and dd tags in one of my project . Now I want give a bullet before dd .
How can I make my dd's to a bulleted list using css ?</p>
<p>Any Ideas ???</p>
http://stackoverflow.com/questions/1713048/how-to-style-dt-and-dd-so-they-are-on-the-same-line2How to style dt and dd so they are on the same line?Alessandro Vernet2009-11-11T04:39:22Z2009-11-11T05:15:52Z
<p>Using CSS, how can I style the following:</p>
<pre><code><dl>
<dt>Mercury</dt>
<dd>Mercury (0.4 AU from the Sun) is the closest planet to the Sun and the smallest planet.</dd>
<dt>Venus</dt>
<dd>Venus (0.7 AU) is close in size to Earth, (0.815 Earth masses) and like Earth, has a thick silicate mantle around an iron core.</dd>
<dt>Earth</dt>
<dd>Earth (1 AU) is the largest and densest of the inner planets, the only one known to have current geological activity.</dd?>
</dl>
</code></pre>
<p>so the content of the <code>dt</code> show in one column and the content of the <code>dd</code> in another column, with each <code>dt</code> and the corresponding <code>dd</code> on the same line? I.e. producing something that looks like:</p>
<p><img src="http://img.skitch.com/20091111-thmtati51knkix6jc15idymucx.png" alt="table format"></p>
http://stackoverflow.com/questions/1619013/guarantee-the-content-of-a-file-is-flushed-when-using-dd-convfsync0Guarantee the content of a file is flushed when using dd conv=fsyncJesper Nielsen2009-10-24T20:33:08Z2009-10-24T20:33:08Z
<p>Hi</p>
<p>I am trying to do a wear leveling test on a series of SD cards. I relation to this my idea was to use dd to write, read, rewrite and reread the same "first block" on the SD card - my for doing this is the following -</p>
<p>dd if=data of=/dev/sdb bs=512 count=1 conv=fsync
rm readdata >/dev/null
dd if=/dev/sdb of=readdata bs=512 count=1 conv=fsync</p>
<p>I then do a md5sum on data and readdata to ensure that everything is ok, afterwards I overwrite the same block with zeroes,</p>
<p>dd if=zero of=/dev/sdb bs=512 count=1 conv=fsync
rm zerodata >/dev/null
dd if=/dev/sdb of=zerodata bs=512 count=1 conv=fsync</p>
<p>Again I compare the md5sum of zero and zerodata, these two processes keep occuring over and over again.</p>
<p>Now to my question, can I be sure that my operating system, flushes the data to the SD card. From the man dd, I get the following:</p>
<p>""
sync pad every input block with NULs to ibs-size; when used with
block or unblock, pad with spaces rather than NULs</p>
<p>fdatasync physically write output file data before finishing</p>
<p>fsync likewise, but also write metadata
""</p>
<p>Or am I not writing anything at all to the SD card?</p>
<p>Thanks in advance for your input</p>
<p>Jesper Nielsen</p>
http://stackoverflow.com/questions/1376395/dd-clone-hard-drive-input-output-error-though-chkdsk-says-ok0dd clone hard drive: Input/Output Error though "chkdsk" says OK [closed]unknown (google)2009-09-03T22:55:50Z2009-09-03T22:59:41Z
<p>Hi,</p>
<p>I've used dd to clone hard drives before using 'dd' and a live cd, but have run into a problem.</p>
<p><strong>The issue:</strong></p>
<p>dd fails with an "Input/Output Error" on /dev/sda3 , even though windows "check disk" (chkdsk) says it's ok.</p>
<p><strong>Context:</strong></p>
<ul>
<li>Trying to replace my laptop hard
drive w/ a faster one of the same
size </li>
<li>Laptop has NTFS on a 320gb hard drive </li>
<li>Booting into knoppix </li>
<li>Knoppix recognizes 'original' drive
(/dev/sda) </li>
<li>I am using a usb
connection for ‘new' drive
(irrelevant, but just an fyi)</li>
<li>Knoppix recognizes the usb drive as /dev/sdb </li>
<li><p>Using dd, as follows:</p>
<p>dd if=/dev/sda of=/dev/sdb </p></li>
<li><p>"dd" gives the I/O error above at
82Gb (out of 320Gb) </p></li>
<li><p>I then tried
checking each partition as follows
and found it failed on /dev/sda3:</p>
<p>dd if=/dev/sda1 of=/dev/null</p>
<p>dd if=/dev/sda2 of=/dev/null</p>
<p>dd if=/dev/sda3 of=/dev/null </p></li>
<li><p>I have ran windows xp chkdsk on the
offending drive in both "find only" and "find and fix" mode and it reports no errors</p></li>
</ul>
<p><strong>Question</strong></p>
<p>How can I find and fix the error on my original hard drive partition (i.e. /dev/sda3) so that dd reads it successfully?</p>
http://stackoverflow.com/questions/994582/t-sql-problem0T-SQL ProblemChandana De Silva2009-06-15T05:22:36Z2009-06-20T09:40:00Z
<p>I have following table (SQL Server) Table name is LandParcels</p>
<pre><code>Blockid ParcelNo Stateorprivate
========================
11001901 30 Deemana
11001901 35 Deemana
11001901 41 State
11001901 45 State
11001901 110 Private
11001901 111 Private
11001902 1 Deemana
11001902 11 State
11001902 16 Private
11002001 15 Deemana
11002001 16 State
11003001 20 Private
11002003 2 Deemana
11002003 3 State
11003003 4 Private
</code></pre>
<p>Blockid (Numeric) = first 6 digits used for Cadastral Map No and last 2 digits for the Block No</p>
<p>eg: 110019 is Cadastal map no and 01 is Block No.</p>
<p>I used the following query</p>
<pre><code>select substring(ltrim(str(blockid)),1,6) as blockid,stateorprivate, count(*) as noofLP from LandParcels group by blockid, stateorprivate order by blockid asc
</code></pre>
<p>Result is</p>
<pre><code>Blockid Stateorprivate noofLP
========================
110019 Deemana 2
110019 State 2
110019 Private 2
110019 Deemana 1
110019 State 1
110019 Private 1
110020 Deemana 1
110020 State 1
110020 Private 1
110020 Deemana 1
110020 State 1
110020 Private 1
</code></pre>
<p>I want to get the following result for a report</p>
<pre><code>blockid noofBlocks Deemana State Private Amt_of_Deemana_State_Private
110019 2 3 3 3 9
110020 2 2 2 2 6
</code></pre>
<p>How to query this. Pl help me.</p>
http://stackoverflow.com/questions/893639/how-to-query-datetime-based-on-date-in-c1How to query datetime based on date in c#nagaraju2009-05-21T15:51:03Z2009-05-22T20:42:45Z
<p>I have an MS-Access database with a DateTime column.<br />
ex: <code>03/08/2009 12:00:00 AM</code>.</p>
<p>I want query based on date like:</p>
<pre><code>select * from tablename where date='03/08/2009'
</code></pre>
<p>I want display data as <code>03/08/2009 12:00:00 AM</code>.</p>
<p>How would I write this query in C#?
Please help me.</p>
http://stackoverflow.com/questions/636100/dd-img-different-md5s1DD img different MD5's?SpyderDriver2009-03-11T19:59:04Z2009-03-11T20:34:09Z
<p>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 the MD5 checksum of both the original and the new copies and they are different. </p>
<p>Here is what we used:</p>
<p>dd if=/dev/sdb of=myimage.img</p>
<p>dd if=myimage.img of=/dev/sdb</p>
<p>dd if=/dev/sdb of=newimage.img</p>
<p>Anyone have any ideas of why these come out different?</p>
http://stackoverflow.com/questions/342057/reading-a-sector-on-the-boot-disk1Reading a sector on the boot disktitaniumdecoy2008-12-04T21:03:26Z2008-12-05T17:58:47Z
<p>This is a continuation of my question about <a href="http://stackoverflow.com/questions/339795/reading-the-superblock">reading the superblock</a>.</p>
<p>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 provides system calls to read from files, which are never stored at that location.</p>
<p>Does this require either 1) the program to run kernel mode, or 2) the program to be written in Assembly? I would prefer to avoid either of these restrictions, particularly the latter.</p>
http://stackoverflow.com/questions/242697/do-stdout-output-with-specific-speed2do stdout output with specific speedoliver2008-10-28T09:51:34Z2008-10-28T11:04:58Z
<p>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 application. Some option for dd would be ideal, but I didn't find anything so far. It doesn't really matter what kind of data is printed (NUL bytes are OK). Any hints?</p>
http://stackoverflow.com/questions/87758/how-to-backup-lif-formatted-disk0How to backup LIF formatted disk?Mike2008-09-17T21:16:35Z2008-09-18T03:15:22Z
<p>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 open (/dev/fd0) I get a kernel error "floppy0: probe failed...". I would like an image because some of the floppies are using the LIF file system format. Does anyone have any ideas as to what I should do?</p>
<p>HP now Agilent made some tools that could read and write to files on LIF formatted disk. I could use these tools to copy and convert the files to the local disk but not without possibly losing some data in the process. In other words, converting from LIF to some other format back to LIF will lose some information.</p>
<p>I just want to backup the raw bytes on the disk and not be concerned with the type of file system.</p>