<?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>Tech Notes &#187; EBS</title>
	<atom:link href="http://www.ryannitz.org/tech-notes/tag/ebs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryannitz.org/tech-notes</link>
	<description>Miscellaneous technology examples and notes</description>
	<lastBuildDate>Sun, 03 Apr 2011 16:48:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<image>
  <link>http://www.ryannitz.org/tech-notes</link>
  <url>http://ryan-nitz/favicon.ico</url>
  <title>Tech Notes</title>
</image>
		<item>
		<title>Create Amazon EBS</title>
		<link>http://www.ryannitz.org/tech-notes/2008/12/20/create-amazon-ebs/</link>
		<comments>http://www.ryannitz.org/tech-notes/2008/12/20/create-amazon-ebs/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 18:21:06 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[EBS]]></category>
		<category><![CDATA[EC2]]></category>

		<guid isPermaLink="false">http://leisuremech.com/?p=91</guid>
		<description><![CDATA[The Amazon Web Services blog has a good post on how to setup an EBS volume using ElasticFox: Amazon EBS (Elastic Block Store) &#8211; Bring Us Your Data I do not see a way to schedule snapshots through the UI so, you may have to write a script to accomplish this feat. Once you have [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-92" title="aws" src="http://www.ryannitz.org/tech-notes/wp-content/uploads/2008/12/aws.gif" alt="aws" width="150" height="60" /></p>
<p>The <a href="http://aws.typepad.com/" target="_blank">Amazon Web Services blog</a> has a good post on how to setup an EBS volume using <a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=609" target="_blank">ElasticFox</a>:</p>
<p><a href=" http://aws.typepad.com/aws/2008/08/amazon-elastic.html" target="_blank">Amazon EBS (Elastic Block Store) &#8211; Bring Us Your Data</a></p>
<p>I do not see a way to schedule snapshots through the UI so, you may have to write a script to accomplish this feat.</p>
<p>Once you have created your EBS volume you still have to mount the new device. First add the following line to /etc/fstab:</p>
<pre>/dev/YOUR_DEVICE_NAME  /data  ext3  defaults 0 0</pre>
<p>E.g.</p>
<pre>/dev/sde  /data  ext3  defaults 0 0</pre>
<p>Next, you need to format the device. This is accomplished by executing:</p>
<pre>mkfs.ext3 /dev/YOUR_DEVICE_NAME</pre>
<p>E.g.</p>
<pre>mkfs.ext3 /dev/sde</pre>
<p>This post assumes you are using the <a href="http://en.wikipedia.org/wiki/Ext3" target="_blank">ext3 filesystem</a>. Next, you need to mount the device. This is done by issuing:</p>
<pre>mount -t ext3 /dev/YOUR_DEVICE_NAME /DIRECTORY_TO_MOUNT_IN</pre>
<p>E.g.</p>
<pre>mount -t ext3 /dev/sde /data</pre>
<p>After you mount the device you should be good to go. If possible, reboot your instance to make sure the process mounted properly on a restart.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannitz.org/tech-notes/2008/12/20/create-amazon-ebs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

