<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Davidx&#039; logs &#187; davidx</title>
	<atom:link href="http://davidx.org/author/davidx/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidx.org</link>
	<description>words i have used</description>
	<lastBuildDate>Fri, 14 Nov 2008 21:17:06 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Where&#8217;s all that disk space being used?</title>
		<link>http://davidx.org/2008/11/14/wheres-all-that-disk-space-being-used/</link>
		<comments>http://davidx.org/2008/11/14/wheres-all-that-disk-space-being-used/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 21:15:04 +0000</pubDate>
		<dc:creator>davidx</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://davidx.org/log/2008/11/14/wheres-all-that-disk-space-being-used/</guid>
		<description><![CDATA[Sometimes there are systems that seems to get clogged full of disk space and it may be unapparant where the space is being used.
I put together a couple commands to get a sense of the disk consumption.
Just copy and paste these into your terminal:

echo "Files bigger than 100Mb:"
find / -size +100000000c -ls &#124;awk '{print $7" [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes there are systems that seems to get clogged full of disk space and it may be unapparant where the space is being used.<br />
I put together a couple commands to get a sense of the disk consumption.</p>
<p>Just copy and paste these into your terminal:<br />
<code><br />
echo "Files bigger than 100Mb:"<br />
find / -size +100000000c -ls |awk '{print $7" "$11}' |sort -rn |awk '{print $2}'|xargs du -sh</p>
<p>echo "Top 20 largest directories"<br />
du -sm /*/* --exclude=/proc/* |sort -rn |head -20 |awk '{print $2}' |xargs du -sh<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://davidx.org/2008/11/14/wheres-all-that-disk-space-being-used/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
