<?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>Chris JeanChris Jean &#187; Karmic Kaola</title>
	<atom:link href="http://chrisjean.com/tag/karmic-kaola/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisjean.com</link>
	<description>Linux, WordPress, programming, anime, and other stuff</description>
	<lastBuildDate>Mon, 16 Jan 2012 15:22:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Use PHP Pear with Ubuntu</title>
		<link>http://chrisjean.com/2009/11/02/use-php-pear-with-ubuntu/</link>
		<comments>http://chrisjean.com/2009/11/02/use-php-pear-with-ubuntu/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 21:16:48 +0000</pubDate>
		<dc:creator>Chris Jean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips 'n Tricks]]></category>
		<category><![CDATA[Karmic Kaola]]></category>
		<category><![CDATA[PEAR]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://gaarai.com/?p=1700</guid>
		<description><![CDATA[PEAR is PHP&#8217;s equivalent of Perl&#8217;s CPAN. It offers hundreds of ready-to-use code modules that can make projects go much more quickly than having to hand code everything. However, it never seems like PEAR is easy to get running. Installing the Needed Software In Ubuntu, installing the following packages will quickly get you started with [...]]]></description>
			<content:encoded><![CDATA[<!-- filtered -->
<p><a href="http://pear.php.net/" target="_blank">PEAR</a> is PHP&#8217;s equivalent of <a href="http://cpan.org/" target="_blank">Perl&#8217;s CPAN</a>. It offers hundreds of ready-to-use code modules that can make projects go much more quickly than having to hand code everything. However, it never seems like PEAR is easy to get running.</p>
<h3>Installing the Needed Software</h3>
<p>In Ubuntu, installing the following packages will quickly get you started with PEAR: php5-cli, php5-dev, and php-pear.</p>
<p>Make sure that you read the next section about problems with using PEAR to install PEAR packages if you are running 9.10, Karmic Kaola.</p>
<p>Here&#8217;s an example of how to quickly install those packages from the terminal.</p>
<pre class="terminal"><span style="color:#8FED99;">[<span style="color:#BBFF33;">chris@rommie</span> <span style="color:#729FCF;">~</span>]$</span> <span style="color:#FFF;">sudo apt-get install php5-cli php5-dev php-pear</span>
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
autoconf autoconf2.13 automake automake1.4 autotools-dev libltdl-dev libssl-dev libtool m4 php5-common shtool zlib1g-dev
Suggested packages:
autobook autoconf-archive gnu-standards autoconf-doc gettext libtool-doc automaken gfortran fortran95-compiler gcj php5-suhosin
The following NEW packages will be installed:
autoconf autoconf2.13 automake automake1.4 autotools-dev libltdl-dev libssl-dev libtool m4 php-pear php5-cli php5-common php5-dev shtool zlib1g-dev
0 upgraded, 15 newly installed, 0 to remove and 5 not upgraded.
Need to get 0B/8,690kB of archives.
After this operation, 27.7MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Selecting previously deselected package m4.
(Reading database ... 127272 files and directories currently installed.)
Unpacking m4 (from .../archives/m4_1.4.13-2_i386.deb) ...
...</pre>
<p>With these packages, you are ready to roll with PHP and PEAR in Ubuntu.</p>
<h3>Problem with Ubuntu 9.10 Karmic Kaola</h3>
<p>A great thing about PEAR is that you can quickly install packages with a simple command. For example, &#8220;sudo pear install PHP_Parser-0.2.1&#8243; will install the <a href="http://pear.php.net/package/PHP_Parser/" target="_blank">PHP_Parser</a> package. However, this doesn&#8217;t work properly in Ubuntu 9.10, Karmic Kaola.</p>
<p>Output of the standard PEAR install command can be seen below:</p>
<pre class="terminal"><span style="color:#8FED99;">[<span style="color:#BBFF33;">chris@rommie</span> <span style="color:#729FCF;">~</span>]$</span> <span style="color:#FFF;">sudo pear install PHP_Parser-0.2.1</span>
downloading PHP_Parser-0.2.1.tgz ...
Starting to download PHP_Parser-0.2.1.tgz (70,782 bytes)
.................done: 70,782 bytes</pre>
<p>While this doesn&#8217;t look wrong, it has actually failed. Rather than installing the package, it has simply downloaded the archive, encountered an unchecked error, and crashed. A successful installation has a message saying that the installation is successful.</p>
<p>This problem can be easily fixed by giving the install command the &#8220;-Z&#8221; option. For example:</p>
<pre class="terminal"><span style="color:#8FED99;">[<span style="color:#BBFF33;">chris@rommie</span> <span style="color:#729FCF;">~</span>]$</span> <span style="color:#FFF;">sudo pear install -Z PHP_Parser-0.2.1</span>
downloading PHP_Parser-0.2.1.tar ...
Starting to download PHP_Parser-0.2.1.tar (Unknown size)
.............................................................................done: 533,504 bytes
install ok: channel://pear.php.net/PHP_Parser-0.2.1</pre>
<p>Notice the &#8220;install ok: &#8230;&#8221; portion of the message. That&#8217;s what you should see at the end of a successful installation.</p>
<p>For more details on this bug, please check out <a href="https://bugs.launchpad.net/ubuntu/+source/php5/+bug/451314" target="_blank">Bug #451314</a> on the Ubuntu bug tracker.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisjean.com/2009/11/02/use-php-pear-with-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Volume not Working in Ubuntu 9.10 Karmic Kaola</title>
		<link>http://chrisjean.com/2009/11/02/fix-volume-not-working-in-ubuntu-9-10-karmic-kaola/</link>
		<comments>http://chrisjean.com/2009/11/02/fix-volume-not-working-in-ubuntu-9-10-karmic-kaola/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 15:17:37 +0000</pubDate>
		<dc:creator>Chris Jean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips 'n Tricks]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[Karmic Kaola]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://gaarai.com/?p=1691</guid>
		<description><![CDATA[I just encountered an odd issue with Ubuntu 9.10, Karmic Kaola. I had music playing in the background, I adjusted the volume, and I noticed that there wasn&#8217;t any change in the volume level. Even maxing out the volume and muting it had no effect. After wondering if the problem was that I went insane, [...]]]></description>
			<content:encoded><![CDATA[<!-- filtered -->
<p>I just encountered an odd issue with Ubuntu 9.10, Karmic Kaola. I had music playing in the background, I adjusted the volume, and I noticed that there wasn&#8217;t any change in the volume level. Even maxing out the volume and muting it had no effect.</p>
<p>After wondering if the problem was that I went insane, I looked in Sound Preferences (right-click the volume icon and select Sound Preferences) and found that &#8220;RV635 Audio device [Radeon HD 3600 Series] Digital Stereo (HDMI)&#8221;  was selected under the device output. This means that Ubuntu was trying to send audio over my HDMI connection rather than through my headphone jacks.</p>
<p>This wasn&#8217;t a problem last night, so it might be due to the fact that my external monitor at the office runs over the HDMI connection, so it automatically switched to the HDMI audio output. In one way, this is nice, in another way, it will frustrate me to no end if it does this every time I&#8217;m at the office. If I&#8217;m right that it automatically switched upon detecting an active HDMI connection, then wouldn&#8217;t it be better to make it easier to provide a notification on where to switch the audio output rather than just switching it and causing confusion?</p>
<p><img class="alignnone size-full wp-image-1693" title="HDMI selected in sound output in Ubuntu Karmic Kaola" src="http://chrisjean.com/wp-content/uploads/2009/11/screenshot_017.png" alt="HDMI selected in sound output in Ubuntu Karmic Kaola" width="544" height="525" /></p>
<p>Switching the option to &#8220;Internal Audio Analog Stereo&#8221; instantly fixed the problem.</p>
<p>Oddly enough, when I manually selected the HDMI output again, it muted the analog output. So, it seems that it may not be a complete switchover or possibly just a bug. I&#8217;ll continue to see how the situation plays out and make a Ubuntu bug report if necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisjean.com/2009/11/02/fix-volume-not-working-in-ubuntu-9-10-karmic-kaola/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Rough Launch for Ubuntu One on Ubuntu 9.10 &#8211; Karmic Kaola</title>
		<link>http://chrisjean.com/2009/10/31/a-rough-launch-for-ubuntu-one/</link>
		<comments>http://chrisjean.com/2009/10/31/a-rough-launch-for-ubuntu-one/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 15:33:55 +0000</pubDate>
		<dc:creator>Chris Jean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Random Ramblings]]></category>
		<category><![CDATA[Karmic Kaola]]></category>
		<category><![CDATA[Launch]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu One]]></category>

		<guid isPermaLink="false">http://gaarai.com/?p=1686</guid>
		<description><![CDATA[Ubuntu 9.10, Karmic Kaola, launched earlier this week. One of the key new features in this release is Ubuntu One. Unfortunately, from what I&#8217;ve seen, this new feature/product launch has been anything but smooth. Ubuntu One is one of the new ways that Canonical, the creators of Ubuntu, is trying to generate some revenue based [...]]]></description>
			<content:encoded><![CDATA[<!-- filtered -->
<p>Ubuntu 9.10, Karmic Kaola, launched earlier this week. One of the key new features in this  release is <a href="https://one.ubuntu.com/" target="_blank">Ubuntu One</a>. Unfortunately, from what I&#8217;ve seen, this new feature/product launch has been anything but smooth.</p>
<p>Ubuntu One is one of the new ways that <a href="http://www.canonical.com/" target="_blank">Canonical</a>, the creators of Ubuntu, is trying to generate some revenue based on their distro. Ubuntu One is a hosted file storage solution that allows users to keep a folder and all of its content synced between multiple computers. All users get 2GB of storage for free with the option of increasing the store to 50GB for $10/month.</p>
<p>Since this new offering has many Ubuntu users very excited, I thought I&#8217;d give it a try as soon as I installed the new release. However, I was instantly met with a very big message telling me that something was wrong.</p>
<p><span id="more-1686"></span></p>
<h3>Launch Day: Problem 1</h3>
<p>When I first started Ubuntu One, the following notification appeared:</p>
<blockquote><p><strong>Capabilities Mismatch</strong><br />
There was a capabilities mismatch while attempting to connect to the Ubuntu One server. You may have installed a newer version of the client, for which the server does not yet provide support. A new version of the server should be accessible soon. Please be patient while we update.</p></blockquote>
<p>Ubuntu is supposed to be a Linux distro designed for the average computer user. Since this large message appears for a short period of time and it isn&#8217;t easily understood, I think that this message could very easily give users a very bad first experience. I believe it would be much more simple to simply say the following:</p>
<blockquote><p><strong>Server Connection Failed</strong><br />
Please ensure that you have installed all software updates and try again at a later time.</p></blockquote>
<p>The reason why I believe the software update portion should be included is because the problem wasn&#8217;t the server, it was the client. This morning my system told me some updates were available, and a few of these updates got rid of the &#8220;Capabilities Mismatch&#8221; problem and allowed the software to connect properly.</p>
<p>The packages that fixed this are the following:</p>
<ul>
<li>python-ubuntuone-client</li>
<li>ubuntuone-client</li>
<li>ubuntuone-client-gnome</li>
</ul>
<p>Each of these were updated to version 1.0.2-0ubuntu2. After the update, I closed the Ubuntu One software, restarted it, and the folder sync worked as expected. However, this is when another problem became clear.</p>
<h3>Houston, We Have a Problem&#8230; Again</h3>
<p>There are two parts to the Ubuntu One system. The first is the server/client connection that actively syncs the Ubuntu One folder between the computer and the Ubuntu One server. The second is an online system you can access through the browser. This online system allows you to manage folders and files from inside your browser.</p>
<p>When I first started to play with Ubuntu One, even though the folder sync didn&#8217;t function, the web access system did. Using this method allowed me to get a feel for what Canonical was aiming to offer its users. As soon as the server/client issue was fixed, I decided to play around with syncing files and then looking at them on the online system. This is when I found Ubuntu One&#8217;s second problem.</p>
<p>Disappointingly, as soon as Ubuntu One&#8217;s client started to work properly, their online system failed. So, is this out of the kettle and into the fire?</p>
<p>Again, this failed in a manner that is difficult to understand. You set up a Ubuntu One account by using a <a href="https://launchpad.net/" target="_blank">Launchpad</a> account. I went to <a href="http://one.ubuntu.com/" target="_blank">one.ubuntu.com</a>, the Ubuntu One  site, clicked &#8220;Sign In&#8221;, input my login details, and was redirected to the home page again with no feedback message. So, I clicked &#8220;Sign In&#8221; again, and I was once again redirected back to the homepage. Seems like some authentication issues were going on between the Ubuntu One and Launchpad systems.</p>
<p>As with the previous issue, my problem isn&#8217;t how the system failed &#8212; I&#8217;m a programmer, I know how things can go wrong &#8212; it&#8217;s with the fact that no feedback was given to the user. It simply didn&#8217;t work.</p>
<h3>Conclusion</h3>
<p>As I finish up this post, I see that Ubuntu One&#8217;s online system is functional again. However, as I&#8217;ve tested this throughout the day, it seems like it was down for at least a few hours. Overall, this is not a bad downtime, but it does tarnish the launch.</p>
<p>To be frank, I feel a bit bad being so harsh to software and services that I am getting access to for free; however, as per <a href="http://www.ubuntu.com/news/ubuntu-910" target="_blank">Canonical&#8217;s own press release</a>, they are extremely-focused on the user experience. As a user, I have to say that my experience with the new Ubuntu One service was less than good.</p>
<p>I know that <a href="http://en.wikipedia.org/wiki/Mark_Shuttleworth" target="_blank">Mark Shuttleworth</a>, founder of Canonical, believes that Ubuntu can take on <a href="http://www.microsoft.com/windows/" target="_blank">Microsoft&#8217;s Windows</a> head on. I also believe that Ubuntu has this potential; however, launch experiences like this aren&#8217;t going to win any new fans. One of the biggest disappointments that many people have with Microsoft is that many of their products, Windows included, feel like they were rushed out of development just to get a release.</p>
<p>Considering that Ubuntu One and Ubuntu are both Canonical creations, it looks really bad when Canonical can&#8217;t even get their own products to work together properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisjean.com/2009/10/31/a-rough-launch-for-ubuntu-one/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

