<?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>David Ehlers &#187; Linux</title>
	<atom:link href="http://davidehlers.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidehlers.com</link>
	<description>Art, Algorithms, &#38; Design</description>
	<lastBuildDate>Mon, 14 Mar 2011 04:01:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>rSync</title>
		<link>http://davidehlers.com/2010/11/rsync/</link>
		<comments>http://davidehlers.com/2010/11/rsync/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 18:43:11 +0000</pubDate>
		<dc:creator>David Ehlers</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://davidehlers.com/?p=345</guid>
		<description><![CDATA[I&#8217;m done with lame file sync programs. I am always jumping around between a number of computers and need the latest files while not online and synced to cloud storage. Rsync works great, is free, and is already installed on all macs. Just open a shell and type: rsync &#8211;help or rsync -avx &#8211;progress &#8211;human-readable [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m done with lame file sync programs. I am always jumping around between a number of computers and need the latest files while not online and synced to cloud storage. </p>
<p>Rsync works great, is free, and is already installed on all macs. </p>
<p>Just open a shell and type: rsync &#8211;help</p>
<p>or</p>
<p>rsync -avx &#8211;progress &#8211;human-readable [source] [dest]</p>
<p>Learn more here:<br />
rsync: http://en.wikipedia.org/wiki/Rsync</p>
<p>There&#8217;s even an awesome logo here: http://samba.anu.edu.au/rsync/</p>
]]></content:encoded>
			<wfw:commentRss>http://davidehlers.com/2010/11/rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>s3 backup + mySql dump</title>
		<link>http://davidehlers.com/2008/06/s3-backup-mysql-dump/</link>
		<comments>http://davidehlers.com/2008/06/s3-backup-mysql-dump/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 19:17:11 +0000</pubDate>
		<dc:creator>David Ehlers</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://davidehlers.com/?p=60</guid>
		<description><![CDATA[These two open source scripts are very useful when combined with cron: s3 Tools : http://sourceforge.net/projects/s3tools/ OpenSource tools to access Amazon S3 file storage. s3cmd &#8211; unix-like tools to manipulate stored files from the command line, s3fuse &#8211; driver to mount the S3 storage locally. and automysqlbackup : http://sourceforge.net/projects/automysqlbackup/ A script to take daily, weekly [...]]]></description>
			<content:encoded><![CDATA[<p>These two open source scripts are very useful when combined with cron:</p>
<p><strong>s3 Tools</strong> : <strong><a href="http://sourceforge.net/projects/s3tools/">http://sourceforge.net/projects/s3tools/</a></strong></p>
<p>OpenSource tools to access Amazon S3 file storage. s3cmd &#8211; unix-like tools to manipulate stored files from the command line, s3fuse &#8211; driver to mount the S3 storage locally.</p>
<p>and</p>
<p><strong>automysqlbackup : </strong><a title="automysqlbackup" href="http://sourceforge.net/projects/automysqlbackup/"><strong>http://sourceforge.net/projects/automysqlbackup/<br />
</strong></a></p>
<p>A script to take daily, weekly and monthly backups of your MySQL databases using mysqldump. Features &#8211; Backup mutiple databases &#8211; Single backup file or to a seperate file for each DB &#8211; Compress backup files &#8211; Backup remote servers</p>
]]></content:encoded>
			<wfw:commentRss>http://davidehlers.com/2008/06/s3-backup-mysql-dump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wget a complete site</title>
		<link>http://davidehlers.com/2008/04/wget-a-complete-site/</link>
		<comments>http://davidehlers.com/2008/04/wget-a-complete-site/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 17:12:18 +0000</pubDate>
		<dc:creator>David Ehlers</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://davidehlers.com/?p=20</guid>
		<description><![CDATA[A quick way to archive a complete site via a shell: wget -r http://yourwebsite.com Here&#8217;s the man page. GNU Wget 1.9, a non-interactive network retriever: Usage: wget [OPTION]&#8230; [URL]..]]></description>
			<content:encoded><![CDATA[<p>A quick way to archive a complete site via a shell:</p>
<p><strong>wget -r http://yourwebsite.com</strong></p>
<p>Here&#8217;s the <a href="http://www.linuxmanpages.com/man1/wget.1.php">man page.</a></p>
<p>GNU Wget 1.9, a non-interactive network retriever<strong>: Usage: wget [OPTION]&#8230; [URL]..</strong></p>
<p><a href="http://www.linuxmanpages.com/man1/wget.1.php"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://davidehlers.com/2008/04/wget-a-complete-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

