<?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>Tony Narlock &#187; Cloud computing</title>
	<atom:link href="http://blog.skiquel.com/category/cloud-computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.skiquel.com</link>
	<description>Living life in the cloud</description>
	<lastBuildDate>Sun, 06 Jun 2010 13:38:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Troubleshooting locales in the cloud on debian and ubuntu</title>
		<link>http://blog.skiquel.com/2010/03/troubleshooting-locales-in-the-cloud-on-debian-and-ubuntu/</link>
		<comments>http://blog.skiquel.com/2010/03/troubleshooting-locales-in-the-cloud-on-debian-and-ubuntu/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 14:52:21 +0000</pubDate>
		<dc:creator>Tony Narlock</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Amazon web services]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Rackspace Cloud Servers]]></category>
		<category><![CDATA[Slicehost]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[amazon ec2]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[locales]]></category>

		<guid isPermaLink="false">http://blog.skiquel.com/?p=503</guid>
		<description><![CDATA[If you use Amazon EC2 or Rackspace Cloud Servers, you may end up running into this after your create your instance. I often get these on Debian and Ubuntu (since it's debian based also). lennycloud:~# perl perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), [...]]]></description>
			<content:encoded><![CDATA[<p>If you use <a href="http://aws.amazon.com/ec2/">Amazon EC2</a> or <a href="http://www.rackspacecloud.com/cloud_hosting_products/servers">Rackspace Cloud Servers</a>, you may end up running into this after your create your instance. I often get these on Debian and Ubuntu (since it's debian based also).</p>
<p><code>lennycloud:~# perl<br />
perl: warning: Setting locale failed.<br />
perl: warning: Please check that your locale settings:<br />
LANGUAGE = (unset),<br />
LC_ALL = (unset),<br />
LANG = "en_US.UTF-8"<br />
are supported and installed on your system.<br />
perl: warning: Falling back to the standard locale ("C"). </code></p>
<p>You're missing <code>locales</code>.</p>
<p>Update your apt database. <code>sudo apt-get update</code></p>
<p>Download locales. <code>sudo apt-get install locales</code></p>
<p>Now configure it, and download what locales you need. <code>dpkg-reconfigure locales</code> on Debian. <code>sudo locale-gen en_US.UTF-8</code> on Ubuntu Hardy Heron 8.04 (Note: on server, you may be logged in as root).</p>
<p>I pick en_US ISO-8859-1, en_US.ISO-8859-15 ISO-8859-15 and en_US.UTF-8 UTF-8.</p>
<p>And that solves it.</p>
<p>Updated April 03, 2010 to include <code>locale-gen</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiquel.com/2010/03/troubleshooting-locales-in-the-cloud-on-debian-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use s3sync.rb + screen to move your files to the cloud</title>
		<link>http://blog.skiquel.com/2010/03/use-s3sync-rb-screen-to-move-your-files-to-the-cloud/</link>
		<comments>http://blog.skiquel.com/2010/03/use-s3sync-rb-screen-to-move-your-files-to-the-cloud/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:26:13 +0000</pubDate>
		<dc:creator>Tony Narlock</dc:creator>
				<category><![CDATA[Amazon web services]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[amazon aws]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[s3sync]]></category>
		<category><![CDATA[s3sync.rb]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[simple storage]]></category>

		<guid isPermaLink="false">http://blog.skiquel.com/?p=496</guid>
		<description><![CDATA[Move to your s3sync dir. screen ./s3sync.rb -r /home/tony/backups/ backup:backups -v screen means you will be able to run the command as a screen process. ctrl-d to detach screen, screen -r to resume. -r means recursive copy. /home/tony/backups is where cron stores you backupps. You can replace this with whatever dir you want to sync. [...]]]></description>
			<content:encoded><![CDATA[<p>Move to your <a href="http://s3sync.net/wiki">s3sync</a> dir.</p>
<p><code>screen ./s3sync.rb -r /home/tony/backups/ backup:backups -v</code></p>
<p><code>screen</code> means you will be able to run the command as a <a href="http://www.gnu.org/software/screen/">screen</a> process. ctrl-d to detach screen, <code>screen -r</code> to resume.</p>
<p><code>-r</code> means recursive copy.</p>
<p><code>/home/tony/backups</code> is where cron stores you backupps. You can replace this with whatever dir you want to sync.</p>
<p><code>backups</code> is the name of the bucket.  Do ./s3cmd createbucket <bucket_name> to create your bucket</p>
<p><code>:</code> is a seperator</p>
<p><code>backups</code> is a prefix for the bucket.</p>
<p><code>-v</code> means verbose, so you can see the progress in your screen.</p>
<p>If <code>screen</code> quits too fast, the command may not have worked.</p>
<p>If you detached and screen doesn't resume, your job may done, check your s3 to see if files transferred.</p>
<p>Also, make sure you have your <a href="http://code.google.com/p/s3sync-s3cmd/source/browse/trunk/s3sync/s3config.yml.example?r=2">s3config.yml</a> file ready, you need to copy your key from your <a href="http://aws.amazon.com/">Amazon AWS</a> account.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiquel.com/2010/03/use-s3sync-rb-screen-to-move-your-files-to-the-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Troubleshooting s3sync</title>
		<link>http://blog.skiquel.com/2010/03/troubleshooting-s3sync/</link>
		<comments>http://blog.skiquel.com/2010/03/troubleshooting-s3sync/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:12:59 +0000</pubDate>
		<dc:creator>Tony Narlock</dc:creator>
				<category><![CDATA[Amazon web services]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[amazon aws]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[s3sync]]></category>
		<category><![CDATA[s3sync.rb]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.skiquel.com/?p=487</guid>
		<description><![CDATA[Amazon S3 is a superb, cost-effective, scalable storage solution. It's been around for a few years. s3sync.rb is a well-maintained ruby script to backup your important files. [07:02 AM][root@local ~/.s3conf]# ./s3cmd.rb /usr/bin/env: ruby: No such file or directory You don't have ruby installed. Easy. sudo apt-get install ruby or yum install ruby [07:02 AM][root@local ~/.s3conf]# [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://aws.amazon.com/s3/">Amazon S3</a> is a superb, cost-effective, scalable storage solution. It's been around for a few years. <a href="http://s3sync.net/wiki">s3sync.rb</a> is a well-maintained ruby script to backup your important files.</p>
<p><code>[07:02 AM][root@local ~/.s3conf]# ./s3cmd.rb<br />
/usr/bin/env: ruby: No such file or directory</code></p>
<p>You don't have ruby installed. Easy.</p>
<p><code>sudo apt-get install ruby<br />
</code>or<br />
<code>yum install ruby<br />
</code></p>
<p><code>[07:02 AM][root@local ~/.s3conf]# ./s3cmd.rb<br />
./S3.rb:14:in `require': no such file to load -- openssl (LoadError)<br />
	from ./S3.rb:14<br />
	from ./s3try.rb:26:in `require'<br />
	from ./s3try.rb:26<br />
	from ./s3cmd.rb:16:in `require'<br />
	from ./s3cmd.rb:16</code></p>
<p>Missing openssl libraries. </p>
<p><code>sudo apt-get install libopenssl-ruby<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiquel.com/2010/03/troubleshooting-s3sync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
