<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: dd command &#8220;progress bar&#8221;</title>
	<atom:link href="http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/</link>
	<description>Exploring Creativity Is My Passion</description>
	<lastBuildDate>Tue, 04 Oct 2011 14:45:14 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: blog:run_dd_with_progress_information [Brb wiki]</title>
		<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/comment-page-1/#comment-909</link>
		<dc:creator>blog:run_dd_with_progress_information [Brb wiki]</dc:creator>
		<pubDate>Tue, 23 Aug 2011 06:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=362#comment-909</guid>
		<description>[...] http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/   linux, dd, security    1) if you are required by law or are really paranoid, use shred, which [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/" rel="nofollow">http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/</a>   linux, dd, security    1) if you are required by law or are really paranoid, use shred, which [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ateeq</title>
		<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/comment-page-1/#comment-580</link>
		<dc:creator>Ateeq</dc:creator>
		<pubDate>Tue, 11 May 2010 11:49:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=362#comment-580</guid>
		<description>Just don&#039;t try it on Solaris as you&#039;ll kill your dd command.</description>
		<content:encoded><![CDATA[<p>Just don&#8217;t try it on Solaris as you&#8217;ll kill your dd command.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/comment-page-1/#comment-547</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Mon, 05 Apr 2010 15:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=362#comment-547</guid>
		<description>Really useful tip - many thanks! 

I use dd a lot, and it always troubled me that you get *no* indication that it&#039;s even doing anything at all! This has solved that worry :-)</description>
		<content:encoded><![CDATA[<p>Really useful tip &#8211; many thanks! </p>
<p>I use dd a lot, and it always troubled me that you get *no* indication that it&#8217;s even doing anything at all! This has solved that worry <img src='http://www.vioan.ro/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Strange</title>
		<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/comment-page-1/#comment-541</link>
		<dc:creator>Strange</dc:creator>
		<pubDate>Mon, 22 Mar 2010 19:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=362#comment-541</guid>
		<description>If someone is wondering how to do this in BSD here is the code:

dd if=/dev/path of=/dev/path bs=1048576 &amp;
ddpid=$!
while [ -d /proc/$ddpid ]; clear; do kill -INFO $ddpid; sleep 10; done

-INFO is the same that -USR1 but for BSD environments.

Hope this helps someone.</description>
		<content:encoded><![CDATA[<p>If someone is wondering how to do this in BSD here is the code:</p>
<p>dd if=/dev/path of=/dev/path bs=1048576 &amp;<br />
ddpid=$!<br />
while [ -d /proc/$ddpid ]; clear; do kill -INFO $ddpid; sleep 10; done</p>
<p>-INFO is the same that -USR1 but for BSD environments.</p>
<p>Hope this helps someone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kk</title>
		<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/comment-page-1/#comment-463</link>
		<dc:creator>kk</dc:creator>
		<pubDate>Sat, 05 Dec 2009 10:23:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=362#comment-463</guid>
		<description>Just a tip about zeroing drives with dd :
use bs=&quot;buffer size ofthe driver&quot; for the speedy erase.
You can try several dd, letting it go about 2 min then ctrl-c
and compare the output. So:
dd if=/dev/null of=/dev/&quot;sdX&quot; bs=&quot;buffer size of the harddisk&quot;

you can see the buffer size with hdparm -i /dev/&quot;sdX&quot;

sdX here is the drivename you have to substitte can be sda sdb ...

BE CAREFUL!!!</description>
		<content:encoded><![CDATA[<p>Just a tip about zeroing drives with dd :<br />
use bs=&#8221;buffer size ofthe driver&#8221; for the speedy erase.<br />
You can try several dd, letting it go about 2 min then ctrl-c<br />
and compare the output. So:<br />
dd if=/dev/null of=/dev/&#8221;sdX&#8221; bs=&#8221;buffer size of the harddisk&#8221;</p>
<p>you can see the buffer size with hdparm -i /dev/&#8221;sdX&#8221;</p>
<p>sdX here is the drivename you have to substitte can be sda sdb &#8230;</p>
<p>BE CAREFUL!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ionut</title>
		<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/comment-page-1/#comment-363</link>
		<dc:creator>ionut</dc:creator>
		<pubDate>Sun, 26 Apr 2009 20:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=362#comment-363</guid>
		<description>@Dan, thanks for your suggestion, but in my post I forgot to add &quot;dd&quot; to killall command, so, the correct command should be: &lt;strong&gt;sudo killall -USR1 dd&lt;/strong&gt;</description>
		<content:encoded><![CDATA[<p>@Dan, thanks for your suggestion, but in my post I forgot to add &#8220;dd&#8221; to killall command, so, the correct command should be: <strong>sudo killall -USR1 dd</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.vioan.ro/wp/2009/03/28/dd-command-progress-bar/comment-page-1/#comment-362</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sat, 25 Apr 2009 19:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=362#comment-362</guid>
		<description>It is better to use &quot;sudo pkill -USR1 ^dd$&quot; instead of killall.  If you use killall you send the signal to every process running on your system, which can have unpredictable results.</description>
		<content:encoded><![CDATA[<p>It is better to use &#8220;sudo pkill -USR1 ^dd$&#8221; instead of killall.  If you use killall you send the signal to every process running on your system, which can have unpredictable results.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

