<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tom Purl's Web Site &#187; ubuntu</title>
	<atom:link href="http://tompurl.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://tompurl.com</link>
	<description>My '83 Datsun On The Side Of The Information Superhighway</description>
	<lastBuildDate>Sat, 12 Jun 2010 01:15:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tompurl.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/620cc5862148afd2b2d0242871afa4ab?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Tom Purl's Web Site &#187; ubuntu</title>
		<link>http://tompurl.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tompurl.com/osd.xml" title="Tom Purl&#039;s Web Site" />
	<atom:link rel='hub' href='http://tompurl.com/?pushpress=hub'/>
		<item>
		<title>Walking With Rails 1 &#8211; Setup On Ubuntu</title>
		<link>http://tompurl.com/2010/01/05/walking-with-rails-1-setup-on-ubuntu/</link>
		<comments>http://tompurl.com/2010/01/05/walking-with-rails-1-setup-on-ubuntu/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 18:42:26 +0000</pubDate>
		<dc:creator>Tom Purl</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[agile-web-development-with-rails]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://tompurl.com/?p=120</guid>
		<description><![CDATA[Overview One of my goals for 2010 is to gain a decent understanding of the Ruby On Rails framework.  I don&#8217;t think that this knowledge will directly help me with my current job (as a FileNet P8 administrator), but I do think that it will provide some good benefits. First, learning about something that&#8217;s a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=120&subd=tompurl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h2>Overview</h2>
<p>One of my goals for 2010 is to gain a decent understanding of the <a title="Ruby On Rails Home Page" href="http://rubyonrails.org/" target="_self">Ruby On Rails</a> framework.  I don&#8217;t think that this knowledge will directly help me with my current job (as a FileNet P8 administrator), but I do think that it will provide some good benefits.</p>
<p>First, learning about something that&#8217;s a little bit outside of your comfort zone can often help you with your day-to-day tasks.  For example, if you teach yourself the basics of Java development, then you will know how to read a stack trace.  Having this knowledge is very important if you want to administer software written in Java.</p>
<p>Also,  it&#8217;s just fun.  Creating something useful out of a few lines of text never ceases to amaze me.  Also, I find that learning new technical skills is good for your brain.</p>
<p>Finally, who knows what the future may bring?  It never hurts to know as much as you can about popular technologies in general when you work in IT.</p>
<p>So to get started, I purchased a copy of <a title="Agile Web Development with Rails home page" href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition">Agile Web Development with Rails, Third Edition</a> from the <a title="Pragmatic Programmers Web Site" href="http://www.pragprog.com/">Pragmatic Programmers&#8217; web site</a>.  This book seems to be one of the best for beginners, and I really love that you can buy DRM-free ebooks from the Pragmatic Programmers&#8217; web site.</p>
<h2>Installing Ubuntu Packages</h2>
<p>So enough background information.  Here&#8217;s how I set up my system to get started with Rails development.  First, I installed all of the necessary software on my <strong>Ubuntu 9.10</strong> machine that was  available as an Ubuntu package:</p>
<blockquote>
<pre>sudo apt-get install rails ruby-full rubygems rake mongrel git-core sqlite3</pre>
</blockquote>
<p>Here&#8217;s why I installed more than just the <strong>rails</strong> and <strong>ruby</strong> pacakges.  When you install Ruby from source on a Linux machine, you get a lot of software.  In addition to the Ruby runtime, you get fun tools like <strong>irb</strong>, <strong>rubygems</strong>, <strong>rdoc, ri, </strong>and <strong>rake</strong>.  However, when you install the <strong>ruby</strong> package on Ubuntu and Debian, you just get the Ruby runtime along with a a couple of libraries.  Since I&#8217;m <span style="text-decoration:line-through;">lazy</span> efficient guy, I decided to install the <strong>ruby-full </strong>package instead to save a few keystrokes.  Unfortunately, the <strong>ruby-full</strong> package still doesn&#8217;t include <strong>rake </strong>or <strong>rubygems</strong>, so I installed those manually.</p>
<p><a title="Mongrel's home page" href="http://mongrel.rubyforge.org/">Mongrel</a> is a developer&#8217;s web server that is designed to work very well with Ruby on Rails development.  Since I am also impatient, I wanted a web server that would work a little faster than <a title="Wikipedia page for the WEBrick web server." href="http://en.wikipedia.org/wiki/WEBrick">WEBrick</a>.</p>
<p>Finally, I installed <strong>git</strong> because I wanted to share code between two different computers.  <a title="Home page for git." href="http://git-scm.com/">Git</a> is a version control system that is very popular with Ruby developers, so I figured that I would use the most popular Ruby-related tools while I&#8217;m learning about Ruby.</p>
<h2>Installing Software Without apt-get</h2>
<p>Natrually, you can&#8217;t install everything that you need with <strong>apt-get</strong>.  For starters, the version of <strong>rails</strong> that is used in <a title="Agile Web Development with Rails home page" href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition">Agile Web Development with Rails, Third Edition</a> is 2.2.2, so let&#8217;s install that using <strong>rubygems</strong>:</p>
<blockquote>
<pre>sudo gem install rails --version 2.2.2</pre>
</blockquote>
<p>This operation took a little while (~ 7 minutes) on my machine for some reason.</p>
<p><strong>Note</strong>: For some reason, this bog</p>
<p>Next, I&#8217;m a <a title="Vim home page" href="http://www.vim.org">Vim</a> user, so I would like to see if the <a title="Page where you can download the rails.vim plugin" href="http://www.vim.org/scripts/script.php?script_id=1567">rails.vim</a> plugin would help me at all.  There is an official Ubuntu package for this plugin called <strong>vim-rails</strong>, but when I try to install it using <strong>apt-get</strong>, I get the following error:</p>
<blockquote><p>Some packages could not be installed. This may mean that you have<br />
requested an impossible situation or if you are using the unstable<br />
distribution that some required packages have not yet been created<br />
or been moved out of Incoming.<br />
The following information may help to resolve the situation:</p>
<p>The following packages have unmet dependencies:<br />
vim-rails: Depends: vim-full but it is not installable<br />
E: Broken packages</p></blockquote>
<p>When I tried to install the <strong>vim-full</strong> package on my machine, I got this error:</p>
<blockquote><p>Package vim-full is not available, but is referred to by another package.<br />
This may mean that the package is missing, has been obsoleted, or<br />
is only available from another source<br />
E: Package vim-full has no installation candidate</p></blockquote>
<p>Ok, so after all of that, let&#8217;s just install it the easy way:</p>
<blockquote><p>(Download the latest version of <strong>rails.zip</strong> from the <a href="http://www.vim.org/scripts/script.php?script_id=1567">rails.vim download page</a>)</p>
<pre>$ cp rails.zip ~/.vim</pre>
<pre>$ cd ~/.vim</pre>
<pre>$ unzip rails.zip</pre>
</blockquote>
<p>Finally, open vim or gvim and execute the following command:</p>
<blockquote>
<pre>:helptags ~/.vim/doc</pre>
</blockquote>
<p>In case your interested, here are the other Vim-related packages that I have installed on my machine:</p>
<ul>
<li>vim-common</li>
<li>vim-gnome</li>
<li>vim-gui-commom</li>
<li>vim-runtime</li>
<li>vim-tiny</li>
</ul>
<h2>Conclusion</h2>
<p>And that&#8217;s it!  I now appear to have everything that I need to complete the beginning examples in <a title="Agile Web Development with Rails home page" href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition">Agile Web Development with Rails using</a> <strong>Ubuntu 9.10</strong> and <strong>Vim</strong>.</p>
<p><strong>Update (1/20/10)</strong> &#8211; I added the <strong>sqlite3</strong> package to the apt-get line above.  This package is necessary if you want to query your database manually.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tompurl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tompurl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tompurl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tompurl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tompurl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tompurl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tompurl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tompurl.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tompurl.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tompurl.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=120&subd=tompurl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tompurl.com/2010/01/05/walking-with-rails-1-setup-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b972ff5d62434623ade7ad88b02aa99?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tpurl</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 9.04 =&gt; 9.10 Upgrade</title>
		<link>http://tompurl.com/2009/12/01/ubuntu-9-04-9-10-upgrade/</link>
		<comments>http://tompurl.com/2009/12/01/ubuntu-9-04-9-10-upgrade/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 03:36:03 +0000</pubDate>
		<dc:creator>Tom Purl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mythtv]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://tompurl.com/?p=114</guid>
		<description><![CDATA[I just finished upgrading my MythTv/printing/data/everything server from version 9.04 of Ubuntu to 9.10. For the first time, I tried using the Software Update program to upgrade my entire system, and it went surprisingly well. Here are some of the highlights; hopefully they will help a few other people. MythTv The OS upgrade included an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=114&subd=tompurl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I just finished upgrading my <a title="MythTv" href="http://www.mythtv.org/">MythTv</a>/printing/data/everything server from version 9.04 of Ubuntu to 9.10.  For the first time, I tried using the Software Update program to upgrade my entire system, and it went surprisingly well.  Here  are some of the highlights; hopefully they will help a few other people.</p>
<h3 id="lmythtv">MythTv</h3>
<p>The OS upgrade included an upgrade of MythTv from 0.21 to 0.22, so I was a little nervous about how well mythbackend and all of my MythTv-related applications (like mythweb and nuvexport) would work.  To my surprise, mythbackend and mythweb both upgraded flawlessly.  This is a really impressive feat, and it reflects the hard work that the MythTv package maintainers put into each Ubuntu release.</p>
<p>The nuvexport package is broken for me, but I think that&#8217;s because I compiled a customized version of <a title="ffmpeg" href="http://ffmpeg.org/">ffmpeg</a>.  Oh well, this seems to be a common hurdle when I upgrade Ubuntu.</p>
<p>One little thing that I did have to fix after the upgrade was my MySQL configuration.  The upgrade laid down the default version of the <code>/etc/mysql/my.cnf</code> file (after asking, of course).  This file was configured to block any computer from using MySQL over the network.  This is bad for me, because I like to watch my MythTv movies from other computers using mythfrontend.</p>
<p>To fix this, I simply commented out the following line in <code>my.cnf</code> on my MythTv server by placing a <code>#</code> in front of it:</p>
<pre> bind-address            = 127.0.0.1</pre>
<p>After that, I simply restarted MySQL and I was able to use mythfrontend from my other computers.</p>
<div>
<p>Note</p>
<p>If you are on a network with other untrusted hosts, then you will want to use a more secure configuration than this.</p>
</div>
<h3 id="lvirtualbox">VirtualBox</h3>
<p>I run Windows XP in a <a title="VirtualBox" href="http://virtualbox.org/">VirtualBox</a> VM for work, so it&#8217;s <em>very</em> important that <em>both</em> VirtualBox and my XP image work properly at all times.  Again, to my surprise, everything worked perfectly after the upgrade.  I didn&#8217;t even need to re-install VirtualBox.  The VirtualBox kernel module was automatically re-compiled during the upgrade process, so I didn&#8217;t even have to do that.</p>
<p>Please note that I was using the <strong>absolute latest</strong> stable version of VirtualBox (3.0.12) before I started the upgrade.  Your mileage may vary if you are using an older version.</p>
<h3 id="loverall">Overall</h3>
<p>Again, I am very impressed by how well everything went.  I don&#8217;t see why I would ever choose to do a fresh installation of Ubuntu again on this machine.</p>
<h3 id="lcaveat-emptor">Caveat Emptor</h3>
<p>The automatic upgrade process is <strong>far from perfect</strong>, and <strong>your results may be different</strong>.  <strong>Before you start any major upgrade</strong>, make sure that you perform the following steps:</p>
<ol>
<li><strong>Make a backup of all of your important files</strong> &#8211; I use <a title="rsnapshot" href="http://rsnapshot.org/">rsnapshot</a> to back up my important files daily, and it has saved my bacon more than a couple of times. Also, it&#8217;s a good idea to store this backup on a separate disk from the boot disk.</li>
<li><strong>Download the current and target versions of Ubuntu and burn them to CD&#8217;s</strong> &#8211; If things do go south, then you will want to be able to either reinstall the current working version of Ubuntu or the target version. Having the actual ISO&#8217;s available on a CD may save you a ton of time and grief.</li>
</ol>
<p>Good luck!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tompurl.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tompurl.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tompurl.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tompurl.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tompurl.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tompurl.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tompurl.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tompurl.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tompurl.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tompurl.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=114&subd=tompurl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tompurl.com/2009/12/01/ubuntu-9-04-9-10-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b972ff5d62434623ade7ad88b02aa99?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tpurl</media:title>
		</media:content>
	</item>
		<item>
		<title>Using My Creative Zen With Ubuntu 9.04</title>
		<link>http://tompurl.com/2009/11/18/using-my-creative-zen-with-ubuntu-9-04/</link>
		<comments>http://tompurl.com/2009/11/18/using-my-creative-zen-with-ubuntu-9-04/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:43:35 +0000</pubDate>
		<dc:creator>Tom Purl</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[9.04]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[creative-zen]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://tompurl.com/?p=102</guid>
		<description><![CDATA[I&#8217;ve been using an 8 GB Creative Zen player now for about a year, and in general, I&#8217;m very happy. It was about 25% cheaper than a comparable iPod, it can do more stuff, and it has ended up being very durable and easy-to-use. Another thing that I initially liked about the Zen was how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=102&subd=tompurl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using an 8 GB <a href="http://en.wikipedia.org/wiki/Creative_ZEN">Creative Zen</a> player now for about a year, and in general, I&#8217;m very happy.  It was about 25% cheaper than a comparable iPod, it can do more stuff, and it has ended up being very durable and easy-to-use.</p>
<p>Another thing that I initially liked about the Zen was how well it worked with <a href="http://www.ubuntu.com">Ubuntu</a> Linux 8.04.  From <a href="http://amarok.kde.org/">Amarok</a>, I could add and manage files as easily as I could with my old iPod.</p>
<p>Then I updated my OS to use Ubuntu 9.04.  The Zen would mount automatically when you plugged it in, but I couldn&#8217;t access it using any music player such as Amarok,  RhythmBox, or Banshee.  And if I could access the player using one of those apps, the connection was always very flaky.  I might be able to move one or two songs,  but eventually, something would crash and I would have to start over again.</p>
<p>This thread on the Ubuntu forums shows that many other Zen users were having the same problem:</p>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=1146528">http://ubuntuforums.org/showthread.php?t=1146528</a></li>
</ul>
<p>The basic advice was to unmount the Zen after it was automatically mounted, and <em>then</em> access it using your favorite music player.  This only worked for me sporadically at first.  And if that wasn&#8217;t weird enough, the Amarok maintainers decided to do the following:</p>
<ul>
<li>Completely change the Amarok GUI interface</li>
<li>Completely change the way you copy music to an MP3 player.</li>
</ul>
<p>I figured almost everything out eventually, so I thought I would share it here.</p>
<ol>
<li>First, <strong>plug your Zen</strong> into your computer.  You should now see a Zen icon on your desktop.
<ul>
<li><a href="http://tompurl.files.wordpress.com/2009/11/zen-icon.jpeg"><img class="alignnone size-full wp-image-103" title="zen-icon" src="http://tompurl.files.wordpress.com/2009/11/zen-icon.jpeg?w=124&#038;h=130" alt="Desktop icon of a Creative Zen MP3 player" width="124" height="130" /></a></li>
</ul>
</li>
<li>Next, right-click on that icon and choose the <strong>Unmount</strong> <strong>Volume</strong> option.  This may seem counter-intuitive, but it&#8217;s what you need to do.</li>
<li>Next, open Amarok.  If you don&#8217;t see the Amarok window after a minute, then look for the <strong>howling wolf</strong> icon in your task tray.  You will need to right-click on it and choose <strong>Restore</strong>.
<ul>
<li><strong>Note</strong>: This process may work with other music players, but I haven&#8217;t tested it.</li>
</ul>
</li>
<li>After Amarok opens, you should see the following items in Amarok:
<ol>
<li>An MP3 player icon with a <strong>red X and green +</strong> next to it.
<ul>
<li><a href="http://tompurl.files.wordpress.com/2009/11/zen-plus.jpg"><img class="alignnone size-medium wp-image-105" title="zen-plus" src="http://tompurl.files.wordpress.com/2009/11/zen-plus.jpg?w=300&#038;h=85" alt="Zen icon from within Amarok" width="300" height="85" /></a></li>
</ul>
</li>
<li>Your Zen listed on the left-hand side of the screen.
<ul>
<li> <a href="http://tompurl.files.wordpress.com/2009/11/zen-list1.jpg"><img class="alignnone size-full wp-image-107" title="zen-list" src="http://tompurl.files.wordpress.com/2009/11/zen-list1.jpg?w=350&#038;h=295" alt="File explorer listing for the Creative Zen from within Amarok" width="350" height="295" /></a></li>
</ul>
</li>
<li>If you don&#8217;t see it at first, then make sure that you have clicked on the <strong>Collection</strong> button on the left-hand side of the screen.</li>
<li>Also, If you see the MP3 player icon but your player isn&#8217;t listed on the left-hand side of the screen, then <strong>click on the green + button</strong>.</li>
</ol>
</li>
</ol>
<p>Now you can copy individual songs from your <strong>Local Collection</strong> by right-clicking on a song or album and choosing <strong>Copy To Collection -&gt; Creative Zen</strong>.  That should do it. I&#8217;ve had pretty good luck with this system as long as I didn&#8217;t try to move over 6 albums&#8217; worth of MP3&#8242;s at once.</p>
<p>And here are some of the differences that you need to get used to when using the 2.x version of Amarok:</p>
<ul>
<li><strong>You can no longer copy playlists over to your Zen.</strong> This is a big disappointment to me, and I can&#8217;t figure out why the Amarok maintainers took this functionality away.</li>
<li><strong>You can no longer &#8220;queue&#8221; up MP3&#8242;s that you want to copy to your Zen and then copy them all over at once. </strong>Again, another great feature that was taken away for some mysterious reason.</li>
<li><strong>Album covers are no longer copied to your Zen</strong>.  This isn&#8217;t a huge disappointment, but it was always a nice feature of the pre-2.x version of Amarok.</li>
</ul>
<p>In the end, I&#8217;m very appreciative that Canonical, the Gnome group, and the Amarok maintainers provide such excellent software that makes my life so much more enjoyable.  And I&#8217;m glad that I finally figured out a somewhat-reliable process for copying MP3&#8242;s from my hard drive to my Zen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tompurl.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tompurl.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tompurl.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tompurl.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tompurl.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tompurl.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tompurl.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tompurl.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tompurl.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tompurl.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=102&subd=tompurl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tompurl.com/2009/11/18/using-my-creative-zen-with-ubuntu-9-04/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b972ff5d62434623ade7ad88b02aa99?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tpurl</media:title>
		</media:content>

		<media:content url="http://tompurl.files.wordpress.com/2009/11/zen-icon.jpeg" medium="image">
			<media:title type="html">zen-icon</media:title>
		</media:content>

		<media:content url="http://tompurl.files.wordpress.com/2009/11/zen-plus.jpg?w=300" medium="image">
			<media:title type="html">zen-plus</media:title>
		</media:content>

		<media:content url="http://tompurl.files.wordpress.com/2009/11/zen-list1.jpg" medium="image">
			<media:title type="html">zen-list</media:title>
		</media:content>
	</item>
		<item>
		<title>Notes On Installing Ubuntu 9.04 And Easy Peasy 1.5</title>
		<link>http://tompurl.com/2009/11/17/notes-on-installing-ubuntu-9-04-and-easy-peasy-1-5/</link>
		<comments>http://tompurl.com/2009/11/17/notes-on-installing-ubuntu-9-04-and-easy-peasy-1-5/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 18:47:51 +0000</pubDate>
		<dc:creator>Tom Purl</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[easy-peasy]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mythtv]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://tompurl.com/?p=91</guid>
		<description><![CDATA[It&#8217;s unlike me to upgrade my systems very often since it can take so much time, but I was moved recently to upgrade both my &#8220;server&#8221; (to Ubuntu 9.04) and my EEE PC 900 (to Easy Peasy 1.5). In general, I&#8217;m very impressed with how much better Linux-on-the-desktop gets every 6 months, and I look [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=91&subd=tompurl&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s unlike me to upgrade my systems very often since it can take so much time, but I was moved recently to upgrade both my &#8220;server&#8221; (to <a title="Ubuntu" href="http://www.ubuntu.com/">Ubuntu</a> 9.04) and my EEE PC 900 (to <a title="Easy Peasy" href="http://www.geteasypeasy.org/">Easy Peasy</a> 1.5).  In general, I&#8217;m very impressed with how much better Linux-on-the-desktop gets every 6 months, and I look forward to at least another 8 years as a happy desktop Linux user.</p>
<p>One of the great things about Ubuntu is that it really is just painless to set up some pretty sophisticated servers.  For example, I use my Ubuntu server to record television shows using <a title="MythTv" href="http://www.mythtv.org/">MythTv</a>, which can be <em>very</em> difficult to install.  However, using the Ubuntu packages, I was able to get my system up-and-running in less than 10 minutes.</p>
<p>I do have one very small criticism of Ubuntu, and it&#8217;s that they keep making it harder and harder to install <a title="ffmpeg" href="http://ffmpeg.org/">ffmpeg</a> from source.  The &#8220;stock&#8221; version of ffmpeg that comes with Ubuntu can&#8217;t do a lot of cool things like convert videos to the <a title="H264" href="http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC">H264</a> format, so one of the first things that I usually do after installing Ubuntu is compile a more robust version of that application.  Well, the process I used to compile it in 8.04 definitely did <em>not</em> work with 9.04 for some strange reason.  Thank goodness that I found <a title="this tutorial" href="http://ubuntuforums.org/showthread.php?t=786095">this tutorial</a>, which made things very simple.</p>
<p>One really great thing about the 1.5 version of Easy Peasy is that I can now use some <a title="Compiz" href="http://www.compiz-fusion.org/">Compiz</a> effects with my EEE PC 900.  Previous versions of Easy Peasy didn&#8217;t even allow me to turn Compiz on.  Hooray for tons tap-dancing sprites on my screen!</p>
<p>Here are some of the resources that I used to set up my Ubuntu 9.04 and Easy Peasy 1.5 systems.  Maybe someone else will find them to be useful:</p>
<ul>
<li><a title="Installing ffmpeg from source" href="http://ubuntuforums.org/showthread.php?t=786095">Installing ffmpeg from source</a></li>
<li><a title="NFS Server &amp; Client HOWTO" href="http://www.ubuntugeek.com/nfs-server-and-client-configuration-in-ubuntu.html">NFS Server &amp; Client HOWTO</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tompurl.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tompurl.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tompurl.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tompurl.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tompurl.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tompurl.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tompurl.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tompurl.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tompurl.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tompurl.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tompurl.com&blog=3216699&post=91&subd=tompurl&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tompurl.com/2009/11/17/notes-on-installing-ubuntu-9-04-and-easy-peasy-1-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b972ff5d62434623ade7ad88b02aa99?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tpurl</media:title>
		</media:content>
	</item>
	</channel>
</rss>