<?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: Adding a simple progress bar to dd</title>
	<atom:link href="http://www.lancealbertson.com/2009/04/adding-a-simple-progress-bar-to-dd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lancealbertson.com/2009/04/adding-a-simple-progress-bar-to-dd/</link>
	<description>Musings of a UNIX SysAdmin, jazz lover, and wine/beer snob</description>
	<lastBuildDate>Tue, 17 Aug 2010 14:47:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Bud</title>
		<link>http://www.lancealbertson.com/2009/04/adding-a-simple-progress-bar-to-dd/comment-page-1/#comment-96</link>
		<dc:creator>Bud</dc:creator>
		<pubDate>Mon, 17 May 2010 19:47:58 +0000</pubDate>
		<guid isPermaLink="false">http://test.lancealbertson.com/?p=93#comment-96</guid>
		<description>You can also use pv (Pipe Viewer)[1] to do this kind of stuff.

[1] http://packages.gentoo.org/package/sys-apps/pv</description>
		<content:encoded><![CDATA[<p>You can also use pv (Pipe Viewer)[1] to do this kind of stuff.</p>
<p>[1] <a href="http://packages.gentoo.org/package/sys-apps/pv" rel="nofollow">http://packages.gentoo.org/package/sys-apps/pv</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Techie Talks</title>
		<link>http://www.lancealbertson.com/2009/04/adding-a-simple-progress-bar-to-dd/comment-page-1/#comment-92</link>
		<dc:creator>Techie Talks</dc:creator>
		<pubDate>Sat, 19 Dec 2009 14:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://test.lancealbertson.com/?p=93#comment-92</guid>
		<description>Cool progress bar.  It&#039;s so simple and I love the effect its like having linux online.</description>
		<content:encoded><![CDATA[<p>Cool progress bar.  It&#8217;s so simple and I love the effect its like having linux online.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kk</title>
		<link>http://www.lancealbertson.com/2009/04/adding-a-simple-progress-bar-to-dd/comment-page-1/#comment-91</link>
		<dc:creator>kk</dc:creator>
		<pubDate>Sat, 05 Dec 2009 10:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://test.lancealbertson.com/?p=93#comment-91</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: Hal Pomeranz</title>
		<link>http://www.lancealbertson.com/2009/04/adding-a-simple-progress-bar-to-dd/comment-page-1/#comment-88</link>
		<dc:creator>Hal Pomeranz</dc:creator>
		<pubDate>Thu, 21 May 2009 03:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://test.lancealbertson.com/?p=93#comment-88</guid>
		<description>There&#039;s also dcfldd, which includes progress-bar functionality built-in (albeit a ASCII art progress bar).

It might be interesting running some timing tests to see how much overhead is involved in displaying the progress bar via these various methods as opposed to just doing the dd without any status updates.</description>
		<content:encoded><![CDATA[<p>There&#8217;s also dcfldd, which includes progress-bar functionality built-in (albeit a ASCII art progress bar).</p>
<p>It might be interesting running some timing tests to see how much overhead is involved in displaying the progress bar via these various methods as opposed to just doing the dd without any status updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: IQgryn</title>
		<link>http://www.lancealbertson.com/2009/04/adding-a-simple-progress-bar-to-dd/comment-page-1/#comment-87</link>
		<dc:creator>IQgryn</dc:creator>
		<pubDate>Tue, 28 Apr 2009 06:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://test.lancealbertson.com/?p=93#comment-87</guid>
		<description>From the dd man page:

Sending a USR1 signal to a running `dd&#039; process makes it print I/O statistics to standard error and then resume copying.

I usually set up a loop to monitor it:
$ while [ -d /proc/ ]; so kill -USR1 ; sleep 15; done

Not as graphical, but it works.</description>
		<content:encoded><![CDATA[<p>From the dd man page:</p>
<p>Sending a USR1 signal to a running `dd&#8217; process makes it print I/O statistics to standard error and then resume copying.</p>
<p>I usually set up a loop to monitor it:<br />
$ while [ -d /proc/ ]; so kill -USR1 ; sleep 15; done</p>
<p>Not as graphical, but it works.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
