<?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: Who&#8217;s got my Disk Space</title>
	<atom:link href="http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 21:56:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Andrew Gregory</title>
		<link>http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/comment-page-1/#comment-1154</link>
		<dc:creator>Andrew Gregory</dc:creator>
		<pubDate>Wed, 17 Dec 2008 09:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/10/30/whos-got-my-disk-space/#comment-1154</guid>
		<description>I&#039;m a bit late to this conversation, but I had to free up some space on a relatives&#039; computer, and the best tool I could find was one called SpaceMonger. There&#039;s quite an old, but free, version fairly readily available.</description>
		<content:encoded><![CDATA[<p>I&#8217;m a bit late to this conversation, but I had to free up some space on a relatives&#8217; computer, and the best tool I could find was one called SpaceMonger. There&#8217;s quite an old, but free, version fairly readily available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Schiller</title>
		<link>http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/comment-page-1/#comment-1153</link>
		<dc:creator>Jeff Schiller</dc:creator>
		<pubDate>Sat, 08 Nov 2008 14:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/10/30/whos-got-my-disk-space/#comment-1153</guid>
		<description>@Rob: yeah that&#039;s useful but:  1) lots of ugly &quot;Permission denied&quot; using cygwin (would want to use 2&gt;/dev/null) and 2) &quot;Program Files&quot; and &quot;Documents and Settings&quot; are usually the two biggest culprits so I&#039;d have to do multiple commands at various points to get a good picture.</description>
		<content:encoded><![CDATA[<p>@Rob: yeah that&#8217;s useful but:  1) lots of ugly &#8220;Permission denied&#8221; using cygwin (would want to use 2&#62;/dev/null) and 2) &#8220;Program Files&#8221; and &#8220;Documents and Settings&#8221; are usually the two biggest culprits so I&#8217;d have to do multiple commands at various points to get a good picture.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Russell</title>
		<link>http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/comment-page-1/#comment-1152</link>
		<dc:creator>Rob Russell</dc:creator>
		<pubDate>Sat, 08 Nov 2008 02:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/10/30/whos-got-my-disk-space/#comment-1152</guid>
		<description>I usually do something like du -hs * to get a summary by directory then drill down and repeat. Doesn&#039;t take as long as you might expect on an ext3 partition in Linux, not sure how it&#039;d go on cygwin.</description>
		<content:encoded><![CDATA[<p>I usually do something like du -hs * to get a summary by directory then drill down and repeat. Doesn&#8217;t take as long as you might expect on an ext3 partition in Linux, not sure how it&#8217;d go on cygwin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Schiller</title>
		<link>http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/comment-page-1/#comment-1151</link>
		<dc:creator>Jeff Schiller</dc:creator>
		<pubDate>Fri, 31 Oct 2008 18:20:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/10/30/whos-got-my-disk-space/#comment-1151</guid>
		<description>@François: Yes, the &#039;head&#039; command works fine, but it doesn&#039;t save any time in execution.  I figure if you&#039;re going to wait that entire time, you might as well get the entire disk contents :)</description>
		<content:encoded><![CDATA[<p>@François: Yes, the &#8216;head&#8217; command works fine, but it doesn&#8217;t save any time in execution.  I figure if you&#8217;re going to wait that entire time, you might as well get the entire disk contents <img src='http://www.codedread.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: François Parmentier</title>
		<link>http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/comment-page-1/#comment-1150</link>
		<dc:creator>François Parmentier</dc:creator>
		<pubDate>Fri, 31 Oct 2008 17:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/10/30/whos-got-my-disk-space/#comment-1150</guid>
		<description>Why not use:

$ cd /cygdrive/c/

$ du -k . 2&gt;/dev/null &#124; sort -nr &#124; head -50 &gt; diskalloc.txt



In order to lower the size of the diskalloc.txt file? ;)</description>
		<content:encoded><![CDATA[<p>Why not use:</p>
<p>$ cd /cygdrive/c/</p>
<p>$ du -k . 2&#62;/dev/null &#124; sort -nr &#124; head -50 &#62; diskalloc.txt</p>
<p>In order to lower the size of the diskalloc.txt file? <img src='http://www.codedread.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dbt</title>
		<link>http://www.codedread.com/blog/archives/2008/10/30/whos-got-my-disk-space/comment-page-1/#comment-1149</link>
		<dc:creator>dbt</dc:creator>
		<pubDate>Fri, 31 Oct 2008 07:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/10/30/whos-got-my-disk-space/#comment-1149</guid>
		<description>I prefer doing du -xk (the -x doesn&#039;t mean squat on windows, of course) &gt; file and then sorting the file separately, it lets you get a partial picture much quicker.</description>
		<content:encoded><![CDATA[<p>I prefer doing du -xk (the -x doesn&#8217;t mean squat on windows, of course) &#62; file and then sorting the file separately, it lets you get a partial picture much quicker.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

