<?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>James Ward &#187; Linux</title>
	<atom:link href="http://www.jamesward.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jamesward.com</link>
	<description>Heroku &#124; Java &#124; Scala &#124; Cloud &#124; Open Source &#124; Linux</description>
	<lastBuildDate>Fri, 03 Feb 2012 19:29:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Install Adobe AIR on 64-bit Ubuntu 10.10</title>
		<link>http://www.jamesward.com/2010/10/14/install-adobe-air-on-64-bit-ubuntu-10-10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-adobe-air-on-64-bit-ubuntu-10-10</link>
		<comments>http://www.jamesward.com/2010/10/14/install-adobe-air-on-64-bit-ubuntu-10-10/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 14:22:05 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/?p=2064</guid>
		<description><![CDATA[Right now Adobe AIR is only officially available for 32-bit Linux. But it does work on 64-bit Linux with the 32-bit compatibility libraries. There are several ways to install Adobe AIR on Linux. My preferred way on Ubuntu is to use the .deb package. However the .deb package distributed by Adobe can only be installed [...]]]></description>
			<content:encoded><![CDATA[<p>Right now Adobe AIR is only officially available for 32-bit Linux.  But it does work on 64-bit Linux with the 32-bit compatibility libraries.  There are several ways to install Adobe AIR on Linux.  My preferred way on Ubuntu is to use the .deb package.  However the .deb package distributed by Adobe can only be installed on 32-bit systems.  Good news is that this can be easily fixed!  To install the Adobe AIR .deb package on a 64-bit system just follow these steps:</p>
<ol>
<li><a href="http://get.adobe.com/air/">Download the Adobe AIR .deb file</a></a>
<li>In a terminal window go to the directory containing the adobeair.deb file</li>
<li>Create a tmp dir:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> tmp</pre></div></div>

</li>
<li>Extract the deb file to the tmp dir:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">dpkg-deb <span style="color: #660033;">-x</span> adobeair.deb tmp</pre></div></div>

</li>
<li>Extract the control files:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">dpkg-deb <span style="color: #660033;">--control</span> adobeair.deb tmp<span style="color: #000000; font-weight: bold;">/</span>DEBIAN</pre></div></div>

</li>
<li>Change the Architecture parameter from &#8220;i386&#8243; to &#8220;all&#8221;:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;s/i386/all/&quot;</span> tmp<span style="color: #000000; font-weight: bold;">/</span>DEBIAN<span style="color: #000000; font-weight: bold;">/</span>control</pre></div></div>

</li>
<li>Repackage the deb file:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-b</span> tmp adobeair_64.deb</pre></div></div>

</li>
</ol>
<p>Now you can install Adobe AIR on a 64-bit system!  From the command line just do:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> adobeair_64.deb</pre></div></div>

<p>That&#8217;s it!  Let me know if you have any questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2010/10/14/install-adobe-air-on-64-bit-ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>123</slash:comments>
		</item>
		<item>
		<title>Flex Development on Linux with IntelliJ IDEA</title>
		<link>http://www.jamesward.com/2010/09/22/flex-development-on-linux-with-intellij-idea/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flex-development-on-linux-with-intellij-idea</link>
		<comments>http://www.jamesward.com/2010/09/22/flex-development-on-linux-with-intellij-idea/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 00:11:19 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/?p=2016</guid>
		<description><![CDATA[It&#8217;s kinda hard to believe that I&#8217;ve been doing Flex development on Linux for over six years now. In that time I&#8217;ve tried a few different tools. Vim will always be my favorite but debugging is painful. Flex Builder for Linux worked but lacked major features and commitment from Adobe for continual improvement. Most recently [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s kinda hard to believe that I&#8217;ve been doing Flex development on Linux for over six years now.  In that time I&#8217;ve tried a few different tools.  Vim will always be my favorite but debugging is painful.  <a href="http://labs.adobe.com/technologies/flex/flexbuilder_linux/">Flex Builder for Linux</a> worked but lacked major features and commitment from Adobe for continual improvement.  Most recently I&#8217;ve been using <a href="http://www.jetbrains.com/idea/">IntelliJ IDEA</a> for Flex development on Linux.  It&#8217;s been working great!  There are a few things I&#8217;ve had to get used to but they are doing a great job of providing superb tooling support for Flex.  I&#8217;ve also been very impressed with the responsiveness from the IntelliJ team in their <a href="http://devnet.jetbrains.net/community/idea/ideacommunity?view=discussions">forums</a> and <a href="http://youtrack.jetbrains.net/dashboard/IDEA#tab=0">bug system</a>.</p>
<p>Here is a quick video I recorded to show the basics of using IntelliJ IDEA for Flex development on Linux:<br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/bOlV2qwvDdM?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/bOlV2qwvDdM?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p>To get started download either the <a href="http://confluence.jetbrains.net/display/IDEADEV/IDEA+X+EAP">latest prerelease of IntelliJ IDEA</a> or their <a href="http://www.jetbrains.com/idea/download/index.html">current production version</a>.  Flex development is only available in their Ultimate Edition but they do provide a free 30 day trial.  Let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2010/09/22/flex-development-on-linux-with-intellij-idea/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Install Flash Player on 64-bit Linux</title>
		<link>http://www.jamesward.com/2010/09/15/install-flash-player-on-64-bit-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-flash-player-on-64-bit-linux</link>
		<comments>http://www.jamesward.com/2010/09/15/install-flash-player-on-64-bit-linux/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 19:13:58 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/?p=2007</guid>
		<description><![CDATA[Adobe has just released a preview of a 64-bit Flash Player for Windows, Mac, and Linux! I created a quick video to show Linux users how to install Flash Player on a 64-bit system. Check it out: Let me know how Flash Player &#8220;Square&#8221; works for you!]]></description>
			<content:encoded><![CDATA[<p>Adobe has just <a href="http://adobe.com/go/fpsquare">released a preview of a 64-bit Flash Player</a> for Windows, Mac, and Linux!  I created a quick video to show Linux users how to install Flash Player on a 64-bit system.  Check it out:<br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/ITE2NqLhIy8?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ITE2NqLhIy8?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p>Let me know how Flash Player &#8220;Square&#8221; works for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2010/09/15/install-flash-player-on-64-bit-linux/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.10 Boots in 8.6 Seconds!</title>
		<link>http://www.jamesward.com/2010/09/08/ubuntu-10-10-boots-in-8-6-seconds/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-10-10-boots-in-8-6-seconds</link>
		<comments>http://www.jamesward.com/2010/09/08/ubuntu-10-10-boots-in-8-6-seconds/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 15:30:25 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/?p=1980</guid>
		<description><![CDATA[*** Update: My boot time is now down to 7 seconds! New video coming soon. *** I just updated to the latest Ubuntu 10.10 desktop and noticed that boot time is now extremely fast! My Intel Core 2 Duo 2.80GHz laptop with an Intel SSD now boots in 8.6 seconds! That is from boot loader [...]]]></description>
			<content:encoded><![CDATA[<p><font color="red">*** Update: My boot time is now down to 7 seconds!  New video coming soon. ***</font></p>
<p>I just updated to the latest Ubuntu 10.10 desktop and noticed that boot time is now extremely fast!  My Intel Core 2 Duo 2.80GHz laptop with an Intel SSD now boots in 8.6 seconds!  That is from boot loader all the way to logged in and ready to use!  Nice work Ubuntu!  Check out the video if you want to see it in action:<br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/KMbfAPKGHdM?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/KMbfAPKGHdM?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>Ubuntu 10.10 will be released in October, 2010 but if you want to check it out now, <a href="http://www.ubuntu.com/testing/maverick/beta">get the beta</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2010/09/08/ubuntu-10-10-boots-in-8-6-seconds/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>Flex Builder on Linux Update</title>
		<link>http://www.jamesward.com/2009/11/25/flex-builder-on-linux-update/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flex-builder-on-linux-update</link>
		<comments>http://www.jamesward.com/2009/11/25/flex-builder-on-linux-update/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 13:32:44 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/?p=1381</guid>
		<description><![CDATA[Adobe has posted an update for Flex Builder on Linux which was scheduled to time-out on December 1, 2009. While the Flex SDK has always worked on Linux, development is certainly easier with Eclipse support for coding, compiling, and debugging. This alpha 5 release of Flex Builder for Linux allows us Linux folks to continue [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/uploads/2007/10/tux_w_fx_flag_blog.png" align="left" width="200"/>Adobe has posted <a href="http://labs.adobe.com/downloads/flexbuilder_linux.html">an update</a> for Flex Builder on Linux which was scheduled to time-out on December 1, 2009.  While the Flex SDK has always worked on Linux, development is certainly easier with Eclipse support for coding, compiling, and debugging.  This alpha 5 release of Flex Builder for Linux allows us Linux folks to continue building Flex applications in Eclipse for another 401 days.  However, Adobe has still not announced any plans to create a full Flex Builder (or Flash Builder) product for Linux.  If that is something you want then please go vote for <a href="http://bugs.adobe.com/jira/browse/FB-19053">FB-19053</a>.  This update still doesn&#8217;t support Eclipse 3.5.  If you want Eclipse 3.5 support then you will need to apply patches created by <a href="http://blog.danyul.id.au/?p=68">Danyul</a> and <a href="http://www.jamesward.com/2009/09/29/flex-builder-3-on-eclipse-3-5/">myself</a>.</p>
<p>Let me know how it goes.  And if you are in the USA &#8211; Happy Thanksgiving!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2009/11/25/flex-builder-on-linux-update/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 (Karmic Koala) Desktop Edition Review</title>
		<link>http://www.jamesward.com/2009/10/29/ubuntu-9-10-karmic-koala-desktop-edition-review/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-9-10-karmic-koala-desktop-edition-review</link>
		<comments>http://www.jamesward.com/2009/10/29/ubuntu-9-10-karmic-koala-desktop-edition-review/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 15:22:33 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/blog/?p=1301</guid>
		<description><![CDATA[Today Ubuntu released Karmic Koala 9.10 Desktop Edition. Like Snow Leopard and Windows 7, I find this release underwhelming. It seems that all three major operating systems are running out of room for innovation and the focus has now shifted to core improvements. But the lack of anything really new and exciting in all three [...]]]></description>
			<content:encoded><![CDATA[<p>Today <a href="http://www.ubuntu.com/products/whatisubuntu/910features">Ubuntu released Karmic Koala 9.10</a> Desktop Edition.  Like Snow Leopard and Windows 7, I find this release underwhelming.  It seems that all three major operating systems are running out of room for innovation and the focus has now shifted to core improvements.  But the lack of anything really new and exciting in all three recently released operating systems (Snow Leopard, Windows 7, and Ubuntu 9.10) indicates that the OS space has become a commodity market.  All OS innovation seems to have shifted to mobile devices while the only significant remaining differentiator between the operating systems is the applications that run natively on them.</p>
<p>Applications are now the key to OS adoption.  I love using iPhoto and iMovie on my wife&#8217;s MacBook Pro.  They are fantastic apps for a novice photo and video editor (like me).  Outlook and Office on Windows continue to be significantly better for office productivity, email, calendaring, and contact management than any other available options for me.  Everyone I work with passes around PowerPoint presentations and Word documents.  Without 100% compatibility the Mac and Linux alternatives to Office make it unusable for me.  Adobe uses Exchange so Outlook is the only real option for email, calendaring, and contact management.  Outlook may not be sexy or simple but it just works.  There are also some great plugins for Outlook that really improve my productivity.  For instance, Adobe&#8217;s travel agency has an Outlook plugin that automatically syncs my travel information to my calendar.  I frequently hear my co-workers who use Mac Mail / Entourage complain about calendar mishaps and other issues, which makes me thankful that I have never had any issues with Outlook in the past seven years that I&#8217;ve been using it.</p>
<p>Ubuntu Linux is my primary desktop OS and since I need Office for my day-to-day work I use VMWare Workstation and boot the same Windows 7 install that I also can dual-boot into for presentations.  This provides me with the ability to use the OS I&#8217;m most familiar with (Linux) most of the time but to also use Windows for Office when needed.  It&#8217;s just too bad that I can&#8217;t run Snow Leopard in VMWare since that would certainly alleviate some marital tension because my wife hates it when I use her laptop to produce new episodes of <a href="http://www.drunkonsoftware.com">Drunk on Software</a>.</p>
<p>As I said before I&#8217;m underwhelmed by Ubuntu 9.10.  It&#8217;s not a bad release.  Most stuff works.  But looking back at my <a href="http://www.jamesward.com/blog/2009/04/23/ubuntu-904-desktop-edition-review-what-works-what-doesnt/">review of Ubuntu 9.04</a> it seems that not much has really changed:</p>
<ul>
<li>Battery Life &#8211; Still great!</li>
<li>Suspend &#8211; Still works great except that I still can&#8217;t see my F3507g Mobile Broadband card after I resume (<a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/334413">open bug</a>) unless I toggle my wireless kill switch.</li>
<li>3G Mobile Broadband &#8211; Now consistently works much better!  And works out-of-the-box (unlike on Windows).</li>
<li>Email &#8211; I would love to switch to Evolution from Outlook but MAPI is still not working for me.  Whenever I try Evolution crashes.</li>
<li>Display &#8211; The Intel drivers are working great except that setting the Display Preferences in Gnome&#8217;s Preferences still doesn&#8217;t work.  Using xrandr from the command line works fine though &#8211; even when plugging into a projector.</li>
<li>Boot Performance &#8211; Improved by a few seconds.  From BIOS to logged in in under ten seconds!</li>
<li>Office Productivity &#8211; OpenOffice is unusable for me.  It&#8217;s UI is clunky and it&#8217;s compatibility with Office is still not perfect.</li>
<li>Screen Sharing &#8211; Still no <a href="https://na5.brightidea.com/ct/ct_a_view_idea.bix?c=8FBBEA8F-D8E6-4E34-A7C1-7C74FB3B4EFA&#038;idea_id=3F96AA68-9F30-41F3-8727-399E8AA5BD9E">Adobe Acrobat Connect presenter plugin for Linux</a>.</li>
<li>Flex Builder for Linux &#8211; The alpha is about to expire.  Please <a href="http://bugs.adobe.com/jira/browse/FB-19053">vote for the feature request</a>.</li>
<li>Accelerometer &#8211; Still doesn&#8217;t work out-of-the-box.</li>
</ul>
<p>Overall I really appreciate any steps that Linux takes towards being a more viable Windows / Mac alternative.  And who am I to complain?  I don&#8217;t have to pay for Linux and have never really contributed to making it better.  So overall I am happy with Ubuntu 9.10 and there are only a few things that I wish were better.  The good news is that improvement of Linux on the Desktop is accelerating while desktop OS innovation seems to have stagnated due to the OS market being commoditized.  As long as the applications that run on Linux continue to improve then the future of Desktop Linux seems bright.  Maybe what we need is more cross-platform applications using Adobe AIR?  :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2009/10/29/ubuntu-9-10-karmic-koala-desktop-edition-review/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Would you pay for Flex Builder on Linux?</title>
		<link>http://www.jamesward.com/2009/04/28/would-you-pay-for-flex-builder-on-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=would-you-pay-for-flex-builder-on-linux</link>
		<comments>http://www.jamesward.com/2009/04/28/would-you-pay-for-flex-builder-on-linux/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 22:13:01 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/blog/?p=958</guid>
		<description><![CDATA[The current alpha version of Flex Builder on Linux doesn&#8217;t have feature parity with the Windows and Mac versions of Flex Builder. It is scheduled to timeout on December 1, 2009 and current development seems to be on hold. If you would like to see Adobe create a full version of Flex Builder for Linux [...]]]></description>
			<content:encoded><![CDATA[<p>The current <a href="http://labs.adobe.com/downloads/flexbuilder_linux.html">alpha version</a> of Flex Builder on Linux doesn&#8217;t have feature parity with the Windows and Mac versions of Flex Builder.  It is scheduled to timeout on December 1, 2009 and current development <a href="http://gruchalski.com/2009/04/22/flex-builder-3-for-linux-on-hold/">seems to be on hold</a>.  If you would like to see Adobe create a full version of Flex Builder for Linux then please go vote for <a href="http://bugs.adobe.com/jira/browse/FB-19053">feature request #FB-19053</a>!  Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2009/04/28/would-you-pay-for-flex-builder-on-linux/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 Desktop Edition Review &#8211; What works.  What doesn&#8217;t.</title>
		<link>http://www.jamesward.com/2009/04/23/ubuntu-904-desktop-edition-review-what-works-what-doesnt/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-904-desktop-edition-review-what-works-what-doesnt</link>
		<comments>http://www.jamesward.com/2009/04/23/ubuntu-904-desktop-edition-review-what-works-what-doesnt/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:47:27 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/blog/?p=851</guid>
		<description><![CDATA[Since the days when I installed Slackware Linux via a stack of 3.5&#8243; floppies, Linux has been a *nearly* suitable desktop for me. With some tinkering and with VMWare to run Windows when I need it I&#8217;ve been able to use Linux as my primary desktop OS for around 15 years. As computers and software [...]]]></description>
			<content:encoded><![CDATA[<p>Since the days when I installed Slackware Linux via a stack of 3.5&#8243; floppies, Linux has been a *nearly* suitable desktop for me.  With some tinkering and with VMWare to run Windows when I need it I&#8217;ve been able to use Linux as my primary desktop OS for around 15 years.  As computers and software have evolved Linux has had to keep up.  In some areas it&#8217;s done exceptionally well and in others it has struggled.  But based on the improvements in Ubuntu Jaunty I believe the pace of improvement is accelerating.  This means that many of the niche oddities and problems with Linux should soon be ironed out.</p>
<p>With the <a href="http://www.ubuntu.com/news/ubuntu-9.04-desktop">recent release of Ubuntu 9.04</a> aka Jaunty I wanted to give a brief overview of what works for me and what doesn&#8217;t.  My requirements for an operating system are not the same as everyone else&#8217;s.  So some of these may not matter to others.  First let me describe what I primarily use my computer for.  I travel frequently so things like battery life, suspend, and 3G connectivity are important.  My employer uses Exchange so being able to access my email, contacts, and calendar while offline is essential.  I do development on Java and Flex so those development platforms must work.  I regularly present at conferences and user groups so connecting to external displays and solid presentation tools are essential.  So let&#8217;s see how Jaunty does in these areas:</p>
<p><strong>Battery Life</strong></p>
<p>The 9-cell battery on my Lenovo W500 now lasts four to five hours!  This is a significant improvement!  In the past I was never able to get more than about two hours.  Also tools such as PowerTOP help me identify which processes are waking up the processor most frequently.</p>
<p><strong>Suspend</strong></p>
<p>I never hibernate to disk so I&#8217;m not sure if that works.  But suspend now regularly works when using the Intel video card (my laptop has both Intel and ATI).  The only problem with suspend is that my F3507g doesn&#8217;t come back after I resume.  I&#8217;m not sure if there is a bug for this yet other than <a href="https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/287893/comments/16">a comment</a> on another bug.</p>
<p><strong>3G</strong></p>
<p>Sometimes 3G dial-up works.  My F3507g card for some reason is a lot slower than using a PCMCIA 3G card.  But strangely I can only get my PCMCIA card to connect occasionally.  I&#8217;m not sure if there are bugs for either of these issues.  Overall NetworkManager has led to significant improvements in 3G connection handling.  And more improvements are expected with NetworkManager 0.8, which will include ModemManger.</p>
<p><strong>Email</strong></p>
<p>Using Evolution for my personal email via IMAP has always worked fine.  However using Evolution for my work email has been hit and miss over the past few years.  It used to work sometimes before my email account was switched to Exchange 2007.  Since then it has pretty much not worked at all.  I could use IMAP but then I wouldn&#8217;t be able to access my contacts and calendar.  So unfortunately I&#8217;ve been using Outlook via VMWare.  I do have hope though that the evolution-mapi support will soon stabilize and I can ditch Outlook.  Right now there are a number of <a href="https://bugs.launchpad.net/ubuntu/+source/evolution-mapi/+bug/338982">evolution-mapi bugs</a>, some of them crashers.</p>
<p><strong>Display</strong></p>
<p>After a number of problems with my ATI card (performance, suspend, Xrandr, etc.) I gave up and switched over to my Intel card.  So far things have worked much better than they ever have with display drivers on Linux.  Xrandr now actually works to mirror my display when I plug into an external monitor.  However I continue to have problems with gnome-display-properties and compiz.</p>
<p><strong>Boot Performance</strong></p>
<p>One of the best improvements with Jaunty is boot performance.  My W500 now boots from the Grub menu to GDM in 16 seconds!  Hopefully the next release of Ubuntu (Karmic Koala) will incorporate the kernel mode setting stuff to trim the boot time down even further.</p>
<p><strong>Office Productivity</strong></p>
<p>For some people OpenOffice is a viable alternative to Office, but unfortunately not for me.  The PowerPoint and Word conversions are not 100% perfect.  The reviewing / tracking changes mode in Office is still second to none.  So I&#8217;ve been trying to use online solutions like <a href="http://www.acrobat.com">Buzzword</a> and <a href="http://www.sliderocket.com">SlideRocket</a> more.  Once these new platforms support full offline editing I think I&#8217;ll be able to mostly stop using Office.  But for now I&#8217;m stuck with Office via Windows on VMWare.</p>
<p><strong>Screen Sharing</strong></p>
<p>I frequently use <a href="http://acrobat.com">Adobe Acrobat Connect</a> to do remote presentations.  However there isn&#8217;t a presenter plugin for Linux so this is another thing that keeps me using Windows.  Please <a href="https://na5.brightidea.com/ct/ct_a_view_idea.bix?c=8FBBEA8F-D8E6-4E34-A7C1-7C74FB3B4EFA&#038;idea_id=3F96AA68-9F30-41F3-8727-399E8AA5BD9E">go vote for this</a> on the Acrobat.com Ideas website.</p>
<p><strong>Accelerometer</strong></p>
<p>My laptop has an accelerometer and although the hdaps module is supposed to make it work the module won&#8217;t load.  There is an <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/57315">open bug</a> for this one.</p>
<p><strong>Overall</strong></p>
<p>Overall Jaunty is a solid release that moves Linux closer to being my full-time desktop.  For the first time I can see on the horizon the day when I no longer have to use Windows (dual-booted or via VMWare).  Thank you Ubuntu and everyone else who builds this great stack of open source software!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2009/04/23/ubuntu-904-desktop-edition-review-what-works-what-doesnt/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Adobe Reader 9.1 for Linux Released!</title>
		<link>http://www.jamesward.com/2009/03/25/adobe-reader-91-for-linux-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adobe-reader-91-for-linux-released</link>
		<comments>http://www.jamesward.com/2009/03/25/adobe-reader-91-for-linux-released/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 16:17:51 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/blog/?p=846</guid>
		<description><![CDATA[Adobe has released Adobe Reader 9.1 for Linux! This is the first 9.x release on Linux and has a number of new features. My personal favorite is the inclusion of Flash Player so that Portable RIAs will work on Linux! Portable RIAs are beginning to catch on more and so it&#8217;s great to have true [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe has released <a href="http://get.adobe.com/reader/">Adobe Reader 9.1 for Linux</a>!  This is the first 9.x release on Linux and has a number of new features.  My personal favorite is the inclusion of Flash Player so that <a href="http://www.jamesward.com/blog/portable-rias-tutorial/">Portable RIAs</a> will work on Linux!  Portable RIAs are beginning to catch on more and so it&#8217;s great to have true cross-platform support for them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2009/03/25/adobe-reader-91-for-linux-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Video: Desktop RIAs on Linux with Adobe AIR 1.5</title>
		<link>http://www.jamesward.com/2009/01/14/video-desktop-rias-on-linux-with-adobe-air-15/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=video-desktop-rias-on-linux-with-adobe-air-15</link>
		<comments>http://www.jamesward.com/2009/01/14/video-desktop-rias-on-linux-with-adobe-air-15/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 18:01:34 +0000</pubDate>
		<dc:creator>James Ward</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jamesward.com/blog/?p=639</guid>
		<description><![CDATA[Adobe recently announced the release of Adobe AIR 1.5 for Linux! For us Linux users this is huge! Now desktop RIAs with Adobe AIR work the same on Windows, Mac, and Linux! I recorded a short instructional video that shows how to get it working. (Original video size is 1024 x 768 so you might [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe recently <a href="http://blogs.adobe.com/air/2008/12/adobe_air_15_now_available_for.html">announced</a> the release of Adobe AIR 1.5 for Linux!  For us Linux users this is huge!  Now desktop RIAs with Adobe AIR work the same on Windows, Mac, and Linux!  I recorded a short instructional video that shows how to get it working.</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="450"><param name="movie" value="http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/flvplayer.swf"></param><param name="quality" value="high"></param><param name="bgcolor" value="#FFFFFF"></param><param name="flashVars" value="thumb=http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/FirstFrame.jpg&#038;width=600&#038;height=450&#038;content=http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/air_linux.flv"></param><param name="allowFullScreen" value="true"></param><param name="scale" value="showall"></param><param name="allowScriptAccess" value="always"></param><param name="base" value="http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/"></param>  <embed src="http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/flvplayer.swf" quality="high" bgcolor="#FFFFFF" width="600" height="450" type="application/x-shockwave-flash" allowScriptAccess="always" flashVars="thumb=http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/FirstFrame.jpg&#038;width=600&#038;height=450&#038;content=http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/air_linux.flv" allowFullScreen="true" base="http://content.screencast.com/users/jlward4th/folders/Default/media/5b8d2e2a-d8c0-42fd-9a0f-388e4e93aced/" scale="showall"></embed></object><br />
(Original video size is 1024 x 768 so you might want to <a href="http://www.jamesward.com/air_on_linux"target=”_blank” >open it in a new window or tab</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamesward.com/2009/01/14/video-desktop-rias-on-linux-with-adobe-air-15/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

