<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><!-- generator="wordpress/2.2.1" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jeff Owens.com</title>
	<link>http://blog.jeff-owens.com</link>
	<description>Where Ignorance Is Not Bliss</description>
	<pubDate>Sat, 31 May 2008 15:58:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/JeffOwens" type="application/rss+xml" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Full Rails Stack Part Four: Capistrano, MySQL</title>
		<link>http://blog.jeff-owens.com/index.php/2008/03/05/full-rails-stack-part-four-capistrano/</link>
		<comments>http://blog.jeff-owens.com/index.php/2008/03/05/full-rails-stack-part-four-capistrano/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 17:53:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Rails</dc:subject><dc:subject>Rails</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2008/03/05/full-rails-stack-part-four-capistrano/</guid>
		<description><![CDATA[We completed our subversion setup in part three, now let's add Capistrano deployment to the mix.  Let's go ahead and ssh into our server:
PLAIN TEXT
CODE:




ssh -p 8888 deploy@your_linux_box.com 






Add the following new directories to our server.  This is where our staging and production factory websites will be deployed to:
PLAIN TEXT
CODE:




sudo mkdir /var/www


sudo mkdir [...]]]></description>
			<content:encoded><![CDATA[<p>We completed our subversion setup in part <a href="http://blog.jeff-owens.com/index.php/2008/03/04/full-rails-stack-part-three-project-and-subversion/">three</a>, now let's add Capistrano deployment to the mix.  Let's go ahead and ssh into our server:</p>
<div class="igBar"><span id="lcode-3"><a href="#" onclick="javascript:showPlainTxt('code-3'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-3">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ssh -p <span style="color:#800000;color:#800000;">8888</span> deploy@your_linux_box.<span style="">com</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Add the following new directories to our server.  This is where our staging and production factory websites will be deployed to:</p>
<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showPlainTxt('code-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo mkdir /var/www</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo mkdir /var/www/apps</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo chown -R deploy:deploy /var/www/apps </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p> <a href="http://blog.jeff-owens.com/index.php/2008/03/05/full-rails-stack-part-four-capistrano/#more-50" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2008/03/05/full-rails-stack-part-four-capistrano/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Full Rails Stack Part Three: Project and Subversion</title>
		<link>http://blog.jeff-owens.com/index.php/2008/03/04/full-rails-stack-part-three-project-and-subversion/</link>
		<comments>http://blog.jeff-owens.com/index.php/2008/03/04/full-rails-stack-part-three-project-and-subversion/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 22:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Rails</dc:subject><dc:subject>Rails</dc:subject><dc:subject>subversion</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2008/03/04/full-rails-stack-part-three-project-and-subversion/</guid>
		<description><![CDATA[If you've finished part two let's continue.  In this part of the series I'm going to assume you have a working installation of MySQL on your local client machine that we will only need for testing purposes.  If you've got a Mac you might look at installing MacPorts and using it to install [...]]]></description>
			<content:encoded><![CDATA[<p>If you've finished part <a href="http://blog.jeff-owens.com/index.php/2008/02/05/full-rails-stack-part-two/">two</a> let's continue.  In this part of the series I'm going to assume you have a working installation of MySQL on your local client machine that we will only need for testing purposes.  If you've got a Mac you might look at installing MacPorts and using it to install MySQL for you.  First we'll create a test rails project.  I'm going to use the latest rails 2 sugar in setting up this simple test site.  Open up terminal or iTerm and find a directory you want to use to create the test project.  Here we go:</p>
<div class="igBar"><span id="lcode-7"><a href="#" onclick="javascript:showPlainTxt('code-7'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-7">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">rails --d=mysql factory</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd factory</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">rake db:create</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">script/generate scaffold widget name:string description:text</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">rake db:migrate </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Now let's test our site to make sure everything is working correctly:</p>
<div class="igBar"><span id="lcode-8"><a href="#" onclick="javascript:showPlainTxt('code-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-8">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">script/server </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Open up your browser and try the site out using http://localhost:3000/widgets.</p>
<p> <a href="http://blog.jeff-owens.com/index.php/2008/03/04/full-rails-stack-part-three-project-and-subversion/#more-49" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2008/03/04/full-rails-stack-part-three-project-and-subversion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Full Rails Stack Part 2: Rails, Mongrel and Nginx</title>
		<link>http://blog.jeff-owens.com/index.php/2008/02/05/full-rails-stack-part-two/</link>
		<comments>http://blog.jeff-owens.com/index.php/2008/02/05/full-rails-stack-part-two/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 18:25:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Rails</dc:subject><dc:subject>Rails</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2008/02/05/full-rails-stack-part-two/</guid>
		<description><![CDATA[We completed setting up ssh and ssh keys in part one, let's continue now with part two of installing a full Rails stack.
SSH into your server:
PLAIN TEXT
CODE:




ssh -p 8888 deploy@your_linux_box.com 






By default, Debian and Ubuntu have ﬁve package repositories called main, restricted, universe, multiverse, and commercial. You will need the universe package repository. By default, [...]]]></description>
			<content:encoded><![CDATA[<p>We completed setting up ssh and ssh keys in part <a href="http://blog.jeff-owens.com/index.php/2008/02/04/full-rails-stack-with-nginx-mongrel-monit-and-more/">one</a>, let's continue now with part two of installing a full Rails stack.</p>
<p>SSH into your server:</p>
<div class="igBar"><span id="lcode-10"><a href="#" onclick="javascript:showPlainTxt('code-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-10">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ssh -p <span style="color:#800000;color:#800000;">8888</span> deploy@your_linux_box.<span style="">com</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>By default, Debian and Ubuntu have ﬁve package repositories called main, restricted, universe, multiverse, and commercial. You will need the universe package repository. By default, it may or may not be enabled. To check, edit the /etc/apt/sources.list ﬁle (note that if you didn't install the aliases in part one you'll use "sudo nano" instead of sn below):</p>
<p> <a href="http://blog.jeff-owens.com/index.php/2008/02/05/full-rails-stack-part-two/#more-48" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2008/02/05/full-rails-stack-part-two/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Full Rails Stack With Nginx, Mongrel, Monit, And More</title>
		<link>http://blog.jeff-owens.com/index.php/2008/02/04/full-rails-stack-with-nginx-mongrel-monit-and-more/</link>
		<comments>http://blog.jeff-owens.com/index.php/2008/02/04/full-rails-stack-with-nginx-mongrel-monit-and-more/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 21:52:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Rails</dc:subject><dc:subject>Rails</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2008/02/04/full-rails-stack-with-nginx-mongrel-monit-and-more/</guid>
		<description><![CDATA[I enjoy coding websites.  I like coming up with elegant and flexible solutions to problems.  If you saw David Heinemeier Hanssons' early screen casts on web development with Ruby on Rails, you may have been as impressed as I was.  Unfortunately, deployment of a website to a *nix server can be a [...]]]></description>
			<content:encoded><![CDATA[<p>I enjoy coding websites.  I like coming up with elegant and flexible solutions to problems.  If you saw David Heinemeier Hanssons' early screen casts on web development with Ruby on Rails, you may have been as impressed as I was.  Unfortunately, deployment of a website to a *nix server can be a daunting task if you haven't done it before.  It doesn't matter if it is a PHP, Python, or Ruby on Rails website, you need to have some basic sysadmin skills to set everything up on a newly installed server.  You've got to know something about web servers (Apache, NginX, etc.), something about databases (MySQL, Postgres), about firewalls (iptables or Shorewall), source control (Subversion), email (SendMail, Postfix), monitoring your server (Monit, Nagios), statistics (Awstats, etc.), log rotation, cron jobs, offsite backups (Amazon s3).  I have yet to meet an expert in all of these areas.  For those sysadmins out there that fit the description I bow deeply.  I've decided to do a series on setting up a full Rails stack on Ubuntu.  So far I have deployed production Rails web applications to Red Hat, Open Solaris, CentOS, and Ubuntu servers.  I've learned enough to know how truly ignorant I am.  I don't claim to be an expert.  But I am willing to share what I've learned so far in hopes it will help others out there.  Here is what you'll get (in no particular order) when finished with the series. <a href="http://blog.jeff-owens.com/index.php/2008/02/04/full-rails-stack-with-nginx-mongrel-monit-and-more/#more-47" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2008/02/04/full-rails-stack-with-nginx-mongrel-monit-and-more/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazon MP3 Music Service (Review)</title>
		<link>http://blog.jeff-owens.com/index.php/2007/09/26/amazon-mp3-music-service-review/</link>
		<comments>http://blog.jeff-owens.com/index.php/2007/09/26/amazon-mp3-music-service-review/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 11:47:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Music</dc:subject>
	<dc:subject>Product Review</dc:subject><dc:subject>amazon</dc:subject><dc:subject>download</dc:subject><dc:subject>mp3</dc:subject><dc:subject>Music</dc:subject><dc:subject>Product Review</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2007/09/26/amazon-mp3-music-service-review/</guid>
		<description><![CDATA[The Amazon MP3 Music Service has just been released.  It is in beta and works quite well.  To use it you must agree to the terms of service.  You then are allowed to download the client software which is used to retrieve purchased music from Amazon's servers.  Client software is available [...]]]></description>
			<content:encoded><![CDATA[<p>The Amazon MP3 Music Service has just been released.  It is in beta and works quite well.  To use it you must agree to the terms of service.  You then are allowed to download the client software which is used to retrieve purchased music from Amazon's servers.  Client software is available for both Mac and PC and has been promised for Linux sometime in the future.  Linux users can download single items in the interim.<br />
<img src="http://blog.jeff-owens.com/wp-content/uploads/2007/09/amazontou.jpg" alt="Amazon MP3 Terms Of Use" /></p>
<p> <a href="http://blog.jeff-owens.com/index.php/2007/09/26/amazon-mp3-music-service-review/#more-39" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2007/09/26/amazon-mp3-music-service-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LilyPond &amp; Textmate Make Beautiful Music</title>
		<link>http://blog.jeff-owens.com/index.php/2007/09/15/lilypond-textmate-make-beautiful-music/</link>
		<comments>http://blog.jeff-owens.com/index.php/2007/09/15/lilypond-textmate-make-beautiful-music/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 21:45:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Music</dc:subject>
	<dc:subject>Product Review</dc:subject><dc:subject>Music</dc:subject><dc:subject>Product Review</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2007/09/15/lilypond-textmate-make-beautiful-music/</guid>
		<description><![CDATA[This weekend I finally got a chance to take the music notation software LilyPond for a spin.  I had heard of the open source project and was anxious to try it out.  As a former Finale and Sibelius user I must admit to being a bit skeptical about its capabilities.  I was [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend I finally got a chance to take the music notation software <a href="http://lilypond.org" title="LilyPond">LilyPond</a> for a spin.  I had heard of the open source project and was anxious to try it out.  As a former Finale and Sibelius user I must admit to being a bit skeptical about its capabilities.  I was pleasantly surprised to find the documentation and examples on the website helpful in getting started.  For my first attempt with the software I kept it simple.  Since my eight-year-old son is now taking piano lessons, I decided to compose a simple Minuet in the Baroque style.   <a href="http://blog.jeff-owens.com/index.php/2007/09/15/lilypond-textmate-make-beautiful-music/#more-33" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2007/09/15/lilypond-textmate-make-beautiful-music/feed/</wfw:commentRss>
<enclosure url="http://blog.jeff-owens.com/wp-content/uploads/2007/09/minuet-in-g.mp3" length="924912" type="audio/mpeg" />
<enclosure url="http://blog.jeff-owens.com/wp-content/uploads/2007/09/minuet-in-g.midi" length="2293" type="audio/midi" />
		</item>
		<item>
		<title>Accessing Yojimbo From Your iPhone</title>
		<link>http://blog.jeff-owens.com/index.php/2007/07/29/accessing-yojimbo-from-your-iphone/</link>
		<comments>http://blog.jeff-owens.com/index.php/2007/07/29/accessing-yojimbo-from-your-iphone/#comments</comments>
		<pubDate>Mon, 30 Jul 2007 01:45:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Product Review</dc:subject>
	<dc:subject>Productivity</dc:subject><dc:subject>Product Review</dc:subject><dc:subject>Productivity</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2007/07/29/accessing-yojimbo-from-your-iphone/</guid>
		<description><![CDATA[Bare Bones Software, authors of BBEdit and TextWrangler, has a wonderful application that helps you to organize your information called Yojimbo.  It can archive complete web pages, create bookmarks, add notes, create PDFs from almost anything, create secure areas, is taggable, searchable, and is now accessible via the web.  The web version, Webjimbo, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.barebonessoftware.com/">Bare Bones Software</a>, authors of BBEdit and TextWrangler, has a wonderful application that helps you to organize your information called <a href="http://www.barebonessoftware.com/products/yojimbo/index.shtml">Yojimbo</a>.  It can archive complete web pages, create bookmarks, add notes, create PDFs from almost anything, create secure areas, is taggable, searchable, and is now accessible via the web.  The web version, <a href="http://www.webjimbo.com/index.html">Webjimbo</a>,  allows you to access your computers Yojimbo database from anywhere you happen to be.</p>
<p> <a href="http://blog.jeff-owens.com/index.php/2007/07/29/accessing-yojimbo-from-your-iphone/#more-28" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2007/07/29/accessing-yojimbo-from-your-iphone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shorewall Firewall on Ubuntu Feisty VPS Part 3</title>
		<link>http://blog.jeff-owens.com/index.php/2007/07/17/shorewall-firewall-on-ubuntu-feisty-vps-part-3/</link>
		<comments>http://blog.jeff-owens.com/index.php/2007/07/17/shorewall-firewall-on-ubuntu-feisty-vps-part-3/#comments</comments>
		<pubDate>Wed, 18 Jul 2007 01:23:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Linux</dc:subject><dc:subject>linux</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2007/07/17/shorewall-firewall-on-ubuntu-feisty-vps-part-3/</guid>
		<description><![CDATA[So lets setup the final piece of the puzzle so we can install some packages and start coding already.  If you've been following along (Part Two), we are now ready to setup the shorewall firewall.  This will lock down all ports we aren't using, both tcp and udp.  Go ahead and ssh [...]]]></description>
			<content:encoded><![CDATA[<p>So lets setup the final piece of the puzzle so we can install some packages and start coding already.  If you've been following along (<a href="http://blog.jeff-owens.com/index.php/2007/07/15/securing-your-new-ubuntu-feisty-vps-part-2/">Part Two</a>), we are now ready to setup the shorewall firewall.  This will lock down all ports we aren't using, both tcp and udp.  Go ahead and ssh into your slice from terminal and type in the code below to install the shorewall package.</p>
<div class="igBar"><span id="lcode-12"><a href="#" onclick="javascript:showPlainTxt('code-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-12">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo -i</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">apt-get install shorewall</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd /etc/shorewall </div>
</li>
</ol>
</div>
</div>
</div>
<p>
 <a href="http://blog.jeff-owens.com/index.php/2007/07/17/shorewall-firewall-on-ubuntu-feisty-vps-part-3/#more-27" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2007/07/17/shorewall-firewall-on-ubuntu-feisty-vps-part-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Securing Your New Ubuntu Feisty VPS Part 2</title>
		<link>http://blog.jeff-owens.com/index.php/2007/07/15/securing-your-new-ubuntu-feisty-vps-part-2/</link>
		<comments>http://blog.jeff-owens.com/index.php/2007/07/15/securing-your-new-ubuntu-feisty-vps-part-2/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 21:51:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Linux</dc:subject><dc:subject>firewall</dc:subject><dc:subject>linux</dc:subject><dc:subject>security</dc:subject><dc:subject>shorewall</dc:subject><dc:subject>Slicehost</dc:subject><dc:subject>ubuntu</dc:subject><dc:subject>vps</dc:subject>
		<guid isPermaLink="false">http://blog.jeff-owens.com/index.php/2007/07/15/securing-your-new-ubuntu-feisty-vps-part-2/</guid>
		<description><![CDATA[So now that we've got Ubuntu Feisty installed (Part One), we'll setup some basic security for our new slice.  Fire up terminal and ssh into your slice.
PLAIN TEXT
CODE:




ssh -l your_username your_ip_address 






]]></description>
			<content:encoded><![CDATA[<p>So now that we've got Ubuntu Feisty installed (<a href="http://blog.jeff-owens.com/index.php/2007/06/01/ubuntu-feisty/">Part One</a>), we'll setup some basic security for our new slice.  Fire up terminal and ssh into your slice.
<div class="igBar"><span id="lcode-14"><a href="#" onclick="javascript:showPlainTxt('code-14'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-14">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ssh -l your_username your_ip_address </div>
</li>
</ol>
</div>
</div>
</div>
<p> <a href="http://blog.jeff-owens.com/index.php/2007/07/15/securing-your-new-ubuntu-feisty-vps-part-2/#more-24" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2007/07/15/securing-your-new-ubuntu-feisty-vps-part-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Setting Up Ubuntu Feisty VPS on Slicehost Part 1</title>
		<link>http://blog.jeff-owens.com/index.php/2007/06/01/ubuntu-feisty/</link>
		<comments>http://blog.jeff-owens.com/index.php/2007/06/01/ubuntu-feisty/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 13:07:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Linux</dc:subject><dc:subject>firewall</dc:subject><dc:subject>linux</dc:subject><dc:subject>security</dc:subject><dc:subject>shorewall</dc:subject><dc:subject>Slicehost</dc:subject><dc:subject>ubuntu</dc:subject><dc:subject>vps</dc:subject>
		<guid isPermaLink="false" />
		<description><![CDATA[Today I'm focusing on setting up a new VPS at Slicehost. BTW, I'm assuming you're new to Linux.  Lets get started.I'm assuming you got an email from Slicehost with the url to manage your new vps.  Grab your uid and pwd they sent you and log into your new vps here.  Once [...]]]></description>
			<content:encoded><![CDATA[<p>Today I'm focusing on setting up a new VPS at Slicehost. BTW, I'm assuming you're new to Linux.  Lets get started.I'm assuming you got an email from Slicehost with the url to manage your new vps.  Grab your uid and pwd they sent you and log into your new vps <a href="https://manage.slicehost.com">here</a>.  Once you've logged in, click on the link that lets you create your new slice.  Create a new name for your slice and select Ubuntu Dapper for the distribution.  It should take only a couple of minutes before your new vps is setup.  Once its done grab the new password Slicehost will show you after your slice has been created and open a command prompt (Terminal or iTerm on Mac OSX, Putty on PC).  Note that you <strong>should not</strong> type in the line numbers below in the code snippets.  They are for reference only.Let's login (you'll be prompted for your pwd so have it handy):
<div class="igBar"><span id="lcode-16"><a href="#" onclick="javascript:showPlainTxt('code-16'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-16">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ssh -l your_username your_ip_address </div>
</li>
</ol>
</div>
</div>
</div>
<p> <a href="http://blog.jeff-owens.com/index.php/2007/06/01/ubuntu-feisty/#more-1" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jeff-owens.com/index.php/2007/06/01/ubuntu-feisty/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
