<?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>Cheat Monk &#187; disk quota</title>
	<atom:link href="http://cheatmonk.com/tag/disk-quota/feed/" rel="self" type="application/rss+xml" />
	<link>http://cheatmonk.com</link>
	<description>Quick codes, one liners and cheats courtesy of the Monk</description>
	<lastBuildDate>Thu, 29 Dec 2011 18:09:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Copy Large Files Over the Network with Netcat + tar + Qpress compression</title>
		<link>http://cheatmonk.com/2010/11/copy-large-files-over-the-network-with-netcat-tar-qpress-compression/</link>
		<comments>http://cheatmonk.com/2010/11/copy-large-files-over-the-network-with-netcat-tar-qpress-compression/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 05:38:13 +0000</pubDate>
		<dc:creator>Code Monk</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[disk quota]]></category>
		<category><![CDATA[large files]]></category>
		<category><![CDATA[netcat]]></category>
		<category><![CDATA[qpress]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://cheatmonk.com/?p=28</guid>
		<description><![CDATA[On the target host, change directory to the folder you want to copy the files to: nc -l 9999 &#124; qpress -vdio &#124; tar xvf - On the source host, change directory to the folder containing the files to be copied: tar -cf - . &#124; qpress -vio - . &#124; nc [TARGET_HOST_IP] 9999]]></description>
			<content:encoded><![CDATA[<p>On the target host, change directory to the folder you want to copy the files to:</p>
<p><code>nc -l 9999 | qpress -vdio | tar xvf -</code></p>
<p>On the source host, change directory to the folder containing the files to be copied:</p>
<p><code>tar -cf - . | qpress -vio - . | nc [TARGET_HOST_IP] 9999</code></p>
]]></content:encoded>
			<wfw:commentRss>http://cheatmonk.com/2010/11/copy-large-files-over-the-network-with-netcat-tar-qpress-compression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Large Files using `find` Command</title>
		<link>http://cheatmonk.com/2009/11/find-large-files-using-find-command/</link>
		<comments>http://cheatmonk.com/2009/11/find-large-files-using-find-command/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 03:47:15 +0000</pubDate>
		<dc:creator>Code Monk</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[disk quota]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[large files]]></category>

		<guid isPermaLink="false">http://cheatmonk.com/?p=15</guid>
		<description><![CDATA[Oftentimes you will be maintaining disk space on your servers or nearing your account&#8217;s disk space quota. Quickly you want to know which files are taking up your disk space, here&#8217;s a quick rundown to find files greater than 10MB. find . -type f -size +10240k -exec ls -lh {} \; &#124; awk '{ print [...]]]></description>
			<content:encoded><![CDATA[<p>Oftentimes you will be maintaining disk space on your servers or nearing your account&#8217;s disk space quota. Quickly you want to know which files are taking up your disk space, here&#8217;s a quick rundown to find files greater than 10MB.</p>
<p><code>find . -type f -size +10240k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'</code></p>
<p>This will find files from your current working directory and list them alongside their corresponding sizes.</p>
]]></content:encoded>
			<wfw:commentRss>http://cheatmonk.com/2009/11/find-large-files-using-find-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

