<?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>Matthew Turland &#187; Kubuntu</title>
	<atom:link href="http://matthewturland.com/tag/kubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthewturland.com</link>
	<description></description>
	<lastBuildDate>Sun, 18 Jul 2010 14:29:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Oracle XE 10gR2 on Kubuntu 64-bit</title>
		<link>http://matthewturland.com/2008/05/25/oracle-xe-10gr2-on-kubuntu-64-bit/</link>
		<comments>http://matthewturland.com/2008/05/25/oracle-xe-10gr2-on-kubuntu-64-bit/#comments</comments>
		<pubDate>Sun, 25 May 2008 21:10:33 +0000</pubDate>
		<dc:creator>Matthew Turland</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[So I started poking around for instructions on installing Oracle XE 10gR2 on my Kubuntu Hardy 64-bit installation recently. I came across this article from Oracle, which seemed like exactly what I wanted. Unfortunately, it assumes that the intended host operating system is 32-bit, which causes issues if you try to install XE through apt [...]]]></description>
			<content:encoded><![CDATA[<p>So I started poking around for instructions on installing Oracle XE 10gR2 on my Kubuntu Hardy 64-bit installation recently. I came across <a title="Installing Oracle Database XE on Debian, Ubuntu, and Kubuntu" href="http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html">this article</a> from Oracle, which seemed like exactly what I wanted. Unfortunately, it assumes that the intended host operating system is 32-bit, which causes issues if you try to install XE through apt as the Oracle article suggests. After following these instructions, I immediately received this error:</p>
<pre>W: Failed to fetch http://oss.oracle.com/debian/dists/unstable/Release \    Unable to find expected entry  main/binary-amd64/Packages in \    Meta-index file (malformed Release file?)</pre>
<p>After that, any apt command issued (related or not) produced this error.</p>
<pre>E: The package oracle-xe needs to be reinstalled, but I can't find an \    archive for it.</pre>
<p>And finally, when I resorted to using <a title="How To Install Oracle XE in Ubuntu 64 Bit | little brain" href="http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/">this excellent guide</a> instead, I ran into this problem because of the earlier failed installation.</p>
<pre>dpkg: regarding oracle-xe-universal_10.2.0.1-1.1_i386.deb containing \    oracle-xe-universal: oracle-xe-universal conflicts with oracle-xe  oracle-xe (version 10.2.0.1-1.0) is present and broken due to failed \    removal or installation.dpkg: error processing oracle-xe-universal_10.2.0.1-1.1_i386.deb \    (--install): conflicting packages - not installing oracle-xe-universalErrors were encountered while processing: oracle-xe-universal_10.2.0.1-1.1_i386.deb</pre>
<p>Luckily, I was able to find <a title="Package Installation error and solution -- Ubuntu Geek" href="http://www.ubuntugeek.com/package-installation-error-and-solution.html">a solution</a> to purge the failed installation from the system. One thing that the Oracle article was useful for was creating a swap file large enough for Oracle to use, as the issue described in the article with not having enough swap space did arise when I initially tried the installation. Beyond that, the non-Oracle guide mentioned earlier worked like a charm and I now have a working XE installation on my system.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewturland.com/2008/05/25/oracle-xe-10gr2-on-kubuntu-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit Tests and Code Coverage with PHPT</title>
		<link>http://matthewturland.com/2008/05/23/unit-tests-and-code-coverage-with-phpt/</link>
		<comments>http://matthewturland.com/2008/05/23/unit-tests-and-code-coverage-with-phpt/#comments</comments>
		<pubDate>Fri, 23 May 2008 18:24:03 +0000</pubDate>
		<dc:creator>Matthew Turland</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[My initial experiences with unit testing and PHP were with PHPUnit. While it&#8217;s a great tool and I have to give kudos to Sebastian for contributing so much to its development, I&#8217;ve come to appreciate the simplicity of PHPT tests. Recently, I wrote some for a project and realized that I wasn&#8217;t aware of how [...]]]></description>
			<content:encoded><![CDATA[<p>My initial experiences with unit testing and PHP were with <a title="PHPUnit" href="http://phpunit.de">PHPUnit</a>. While it&#8217;s a great tool and I have to give kudos to <a title="Sebastian Bergmann" href="http://sebastian-bergmann.de">Sebastian</a> for contributing so much to its development, I&#8217;ve come to appreciate the simplicity of <a title="Writing Tests [PHP-QAT: Quality Assurance Team" href="http://qa.php.net/write-test.php">PHPT</a> tests. Recently, I wrote some for a project and realized that I wasn&#8217;t aware of how to generate code coverage reports. Many thanks to the very helpful patrons in the <a title="PEAR :: Support" href="http://pear.php.net/support">#pear</a> channel on EFNet for helping me to get this working.</p>
<p>First, the stock Kubuntu installation of PEAR is version 1.6.1. Their first recommendation was to upgrade to 1.7.2, which was easy enough:</p>
<pre>sudo apt-get install php-pearpear update-channelspear upgrade-all</pre>
<p>Next, <a title="PEAR :: Bug #13958 :: When a phpt tests exit() or die() xdebug coverage is not generated" href="http://pear.php.net/bugs/bug.php?id=13958">PEAR bug 13958</a> can prevent code coverage reports from being generated properly. This bug has an available patch, which you can apply by doing the following:</p>
<pre>cd /usr/local/share/PEARwget -c <a href="http://pear.php.net/bugs/patch-display.php?bug=13958&amp;patch=phpt_coverage_bug&amp;revision=1211459864&amp;download=1">http://pear.php.net/bugs/...</a>patch PEAR/RunTest.php phpt_coverage_bug.patch.txt</pre>
<p>Now to install PHPUnit. I ran into an odd issue here where following the <a title="Chapter 3. Installing PHPUnit" href="http://www.phpunit.de/pocket_guide/3.2/en/installation.html">installation documentation</a> resulted in PHPUnit 1.3.3 stable being installed, which is obviously a fairly old version. Even pear clear-cache didn&#8217;t seem to solve the issue. I checked to confirm that PEAR was using PHP 5. The only way I was able to get around this was to explicitly specify the latest version.</p>
<pre>sudo pear install phpunit/phpunit-3.2.19</pre>
<p>The current version of PHPUnit, 3.2.19, also has bugs <a title="#482 (phpt coverage broken) - PHPUnit - Trac" href="http://phpunit.de/ticket/482">482</a>, <a title="#483 (warnings when phpt generates no coverage file) - PHPUnit - Trac" href="http://phpunit.de/ticket/483">483</a>, and <a title="#484 (PhptTestCase does not implement SelfDescribing) - PHPUnit - Trac" href="http://phpunit.de/ticket/484">484</a> related to generating PHPT code coverage reports. I had to apply the patch for bug 482 to fix issues I was having, but the others may also be necessary depending on the code being tested. These issues should be fixed when PHPUnit 3.2.20 is released. In the meantime, if you want to avoid manually applying patches and you&#8217;re feeling adventurous, you can use an <a title="/phpunit/trunk - PHPUnit - Trac" href="http://phpunit.de/browser/phpunit/trunk">SVN checkout</a>.</p>
<p>As far as I can tell, PHPUnit itself does not contain a runner for its PHPT suite extension. However, there is <a title="[cvs] View of /pear/Console_CommandLine/tests/AllTests.php" href="http://cvs.php.net/viewvc.cgi/pear/Console_CommandLine/tests/AllTests.php?revision=1.1&amp;view=markup">a runner script</a> to do this in PEAR CVS. Download the script to the directory containing your PHPT test files and execute it with a command similar to this.</p>
<pre>phpunit --coverage-html ../Tests-Results \    Console_CommandLine_AllTests AllTests.php</pre>
<p>In the case of this particular command, the Tests-Results directory parallel to the directory containing your PHPT files should now contain an index.html file with your test results. There you have it. Happy testing folks!</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewturland.com/2008/05/23/unit-tests-and-code-coverage-with-phpt/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dual-Booting XP and Kubuntu on a Sony Vaio</title>
		<link>http://matthewturland.com/2008/03/28/dual-booting-xp-and-kubuntu-on-a-sony-vaio/</link>
		<comments>http://matthewturland.com/2008/03/28/dual-booting-xp-and-kubuntu-on-a-sony-vaio/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 22:12:00 +0000</pubDate>
		<dc:creator>Matthew Turland</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[So it turns out the Holy Grail, Promised Land, or whatever you want to call it, does exist after all. After a number of different approaches and attempts, I finally got my Sony Vaio VGN-NR298E dual-booting Kubuntu and Windows XP. The solution turned out to be a well-known one: nLite. With it, I was able [...]]]></description>
			<content:encoded><![CDATA[<p>So it turns out the Holy Grail, Promised Land, or whatever you want to call it, does exist after all. After a number of different approaches and attempts, I finally got my Sony Vaio VGN-NR298E dual-booting Kubuntu and Windows XP. The solution turned out to be a well-known one: nLite.</p>
<p>With it, I was able to not only roll the drivers for my SATA drive into a custom XP CD, but also SP2 as well. It also offers options to include other drivers as well as post-SP2 Windows hotfixes and custom configuration options. I have to give major kudos to the nLite folks, as I imagine I would have given up at attempting to do this had it not worked as splendidly as it did.</p>
<p>So, without further ado, here&#8217;s the final recipe for succes in this endeavor. Obligatory disclaimer: I take no responsibility should you not have the same success or suffer damages by following these instructions. Other obligatory disclaimer: The only reason I went to this much trouble to dual-boot to XP is because I can&#8217;t find another solution that allows me to play my games.</p>
<ol>
<li>Download <a title="http://nliteos.com" href="http://nliteos.com" target="_blank">nLite</a>. Use it to make a local copy your Windows XP CD.
</li>
<li>Download the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=049C9DBE-3B8E-4F30-8245-9E368D3CDB5A&amp;displaylang=en" target="_blank">standalone Service Pack 2 installer</a>. Point nLite to it as a service pack to include.
</li>
<li>Download the <a href="http://downloadcenter.intel.com/download.aspx?url=/14848/eng/iata78_enu.exe&amp;agr=N&amp;ProductID=2101&amp;DwnldId=14848&amp;strOSs=All&amp;OSFullName=All+Operating+Systems&amp;lang=eng" target="_blank">Intel 82801HEM/HBM SATA AHCI Controller drivers</a>.&nbsp;<a href="http://www.intel.com/support/chipsets/imst/sb/cs-020825.htm" target="_blank">Extract them for unattended installation</a> and point nLite to them.
</li>
<li>At this point, you can choose other drivers to include on the CD. Below is a list of those that are relevant to the Vaio. Be sure to have either Ethernet or Wifi drivers included in the CD or on a storage medium that Windows can recognize natively without external drivers.
<ul>
<li>Wifi &#8211; <a href="http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&#038;ProductFamily=Wireless+Networking&#038;ProductLine=Intel%C2%AE+WiFi+Products&#038;ProductProduct=Intel%C2%AE+Wireless+WiFi+Link+4965AGN" target="_blank">Intel PRO/Wireless 4965 AG/AGN<br /></a></li>
<li>Video &#8211; <a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;DwnldID=17354&#038;ProdId=2800&#038;lang=eng" target="_blank">Intel Graphics Media Accelerator
<p></a></li>
<li>Ethernet &#8211; <a href="http://www.marvell.com/drivers/driverDisplay.do?driverId=202" target="_blank">Marvel Yukon 88E803X PCI Express Fast Ethernet Controller
<p></a></li>
<li>SM Bus &#8211; <a href="http://downloadcenter.intel.com/download.aspx?url=/14529/a08/infinst_autol.zip&amp;agr=N&amp;ProductID=816&amp;DwnldId=14529&amp;strOSs=All&amp;OSFullName=All+Operating+Systems&amp;lang=eng" target="_blank">Intel INF Update Utility
<p></a></li>
<li>Audio &#8211; <a href="http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&amp;PFid=24&amp;Level=4&amp;Conn=3&amp;DownTypeID=3" target="_blank">Realtek High Definition Audio Card</a>
</li>
</ul>
</li>
<li>I ran into a small issue at this point that may or may not be pertinent to your case: the only machine on which I had a CD burner available was a Linux server machine. nLite was helpful in this regard, though, and offered an option to make the ISO file it created mkisofs-compatible. Using this, I was able to copy the ISO over the network to the Linux server, use mkisofs to test it and cdrecord (man page examples on this utility are helpful) to burn it.
</li>
<li>Boot the custom CD. Note that you no longer have to hit F6 at the point where you normally would to install custom drivers; the installer will simply detect that they&#8217;re available on the CD and load them from there. Installation should be pretty normal after this point. Partition your drive however you like, being sure to leave enough room for Kubuntu to load. You&#8217;ll probably notice the installer forces you to leave 8 MB free, presumably for the NT boot loader. Once you&#8217;re in Windows, you can reset your screen resolution and manually install any drivers you didn&#8217;t roll into the CD. Once you&#8217;re connected, install any further Windows updates that might be necessary.
</li>
<li>Once XP is set up to your liking, pop the Kubuntu CD in, boot from it, and access the installer on the desktop once KDE has loaded. In order to not have Kubuntu overwrite your XP installation, you&#8217;ll have to opt to partition manually. You&#8217;ll notice that the installer sees the 8 MB that XP made you reserve earlier. I&#8217;m not sure why, but the installer sees this as free space. At any rate, I just consolidated that space into the Kubuntu partition and let it set aside its 3 MB to load GRUB. I&#8217;m not sure how to keep the NT boot loader and not load GRUB, so if you prefer that route, you&#8217;ll have to dig around on your own to find out how. Set up your root and swap partitions and continue.
</li>
<li>Installation should again proceed fairly normally. Once you&#8217;ve loaded your installation for the first time, connect your machine to an ethernet cable and launch Adept, the package manager GUI for Kubuntu. Do a search for Windows and you should find a package called Windows Wireless Drivers. Install this for wireless if you need it. Beyond that, install updates and you should be good to go.</li>
</ol>
<p>And that&#8217;s all there is to it, folks. It was a wild ride to figuring out the process, so I hope my efforts help someone else looking to do the same thing. Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewturland.com/2008/03/28/dual-booting-xp-and-kubuntu-on-a-sony-vaio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Kubuntu Developments</title>
		<link>http://matthewturland.com/2008/03/22/more-kubuntu-developments/</link>
		<comments>http://matthewturland.com/2008/03/22/more-kubuntu-developments/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 13:10:52 +0000</pubDate>
		<dc:creator>Matthew Turland</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I finally figured out how to control the monitor brightness via this forum thread using the xbacklight command. I&#8217;m really happy for that, because it was a bit of a strain on my eyes and I couldn&#8217;t find a way to do it through the desktop manager. One other nice point about the forum thread [...]]]></description>
			<content:encoded><![CDATA[<p>I finally figured out how to control the monitor brightness via <a title="Sony VAIO NR Brightness - Ubuntu Forums" href="http://ubuntuforums.org/showthread.php?t=626406">this forum thread</a> using the xbacklight command. I&#8217;m really happy for that, because it was a bit of a strain on my eyes and I couldn&#8217;t find a way to do it through the desktop manager. One other nice point about the forum thread is that it also walks you through how to execute this command automatically when battery power kicks in.</p>
<p>Kubuntu doesn&#8217;t install it by default, but if you search Adept for ndiswrapper, you should get an option to install Windows WiFi Drivers. This includes drivers for the Intel PRO/Wireless 4965 AG/AGN card, and once installed, it worked without requiring me to track down and install drivers manually.</p>
<p>I wanted to see if some of my games would work under Kubuntu. I tried <a title="Wine HQ" href="http://winehq.org">Wine</a>, but wasn&#8217;t able to get it to run Warcraft III without crashing immediately after selecting the play option from the splash screen. Apparently the supporting libraries for my particular graphics card (Intel 965 chipset) are fairly buggy when it comes to hardware acceleration.</p>
<p>I also attempted to install VMware in order to run the game in a virtual machine, but that was a dead end as well: the game won&#8217;t run with the display drivers provided by VMware tools and that it&#8217;s not possible to install the host machine&#8217;s drivers and have them work correctly. Incidentally, <a title="Help uninstalling and reinstalling vmware-server - Ubuntu Forums" href="http://ubuntuforums.org/showthread.php?t=490938">this forum thread</a> provided some feedback about how to remove a partial installation so that aptitude will allow you to do a reinstallation.  sudo dpkg &#8211;purge &#8211;force-remove-reinstreq vmware-server ended up doing the job.</p>
<p>So, as much as I hated the idea of having to go back to Windows, I set out to configure my system to dual-boot. Small problem: I have a SATA drive, which requires special drivers that Hitachi <a title="Support - FAQs - Deskstar and Ultrastar FAQ" href="http://www.hitachigst.com/hdd/support/hddfaqs.htm#a1">claims</a> can only be installed via a floppy drive. My laptop doesn&#8217;t have one, and I&#8217;m not overly inclined to purchase an external one just toinstall XP.</p>
<p>My friend <a title="TetraBlog" href="http://tetraboy.com">Jeff Jones</a> pointed me to <a title="amilo-forum.com: View topic - Disabling AHCI Config to reinstall windows. Is this bad?" href="http://www.amilo-forum.com/topic,1545,-Disabling-AHCI-Config-to-reinstall-windows-Is-this-bad.html">a forum thread</a> detailing how to integrate the SATA drivers as well as Service Pack 2 into a custom XP CD. Since I didn&#8217;t have another existing XP installation, I had to use a VMware machine. It took some digging to find the <a title="RAID/AHCI Software - Intel Matrix Storage Manager" href="http://downloadcenter.intel.com/download.aspx?url=/14848/eng/iata78_enu.exe&amp;agr=N&amp;ProductID=2101&amp;DwnldId=14848&amp;strOSs=All&amp;OSFullName=All+Operating+Systems&lang;=eng">Intel 82801HEM/HBM SATA AHCI Controller drivers</a> and how to <a title="Intel Matrix Storage Manager - Unattented installation instructions under Windows XP" href="http://www.intel.com/support/chipsets/imst/sb/cs-020825.htm">extract them for unattended installation</a>. I used <a title="WinFuture.de - WinFuture xp-Iso-Builder 3 Download - Erweitern Sie Ihre Windows-CD" href="http://www.winfuture.de/xpIsoBuilder">XP-ISO-Builder</a> to create a custom ISO image and&nbsp; <a title="DeepBurner Pro vs. DeepBurner Free" href="http://www.deepburner.com/?r=products&amp;pr=deepburner&amp;prr=provsfree">DeepBurner Free</a> to burn it to CD.</p>
<p>In attempting to boot with the CD, though, I got as far as being prompted to install the drivers before being presented with the error &#8220;The file iaStor.sys is corrupted.&#8221; Setup wouldn&#8217;t proceed any further, so I gave up on it for now. If you have any experience with a working solution rolling SATA drivers into a custom XP CD, I&#8217;d be interested to know. Feel free to leave a comment on this blog entry.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewturland.com/2008/03/22/more-kubuntu-developments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kubuntu + Vaio = Nice</title>
		<link>http://matthewturland.com/2008/03/20/kubuntu-vaio-awesome/</link>
		<comments>http://matthewturland.com/2008/03/20/kubuntu-vaio-awesome/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 03:22:06 +0000</pubDate>
		<dc:creator>Matthew Turland</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[So the tax return ended up coming in around my birthday. Since it had been a long while since I&#8217;d gotten an upgrade, I decided to treat myself to a new Sony Vaio VGN-NR298E. The first order of business once I got it, of couse, was to wipe it clean of Windows Vista. Not having [...]]]></description>
			<content:encoded><![CDATA[<p>So the tax return ended up coming in around my birthday. Since it had been a long while since I&#8217;d gotten an upgrade, I decided to treat myself to a new <a title="Newegg.com - SONY VAIO NR Series VGN-NR298E/S NoteBook Intel Core 2 Duo T5550(1.83GHz) 15.4&quot; Wide XGA 2GB Memory DDR2 667 250GB HDD 5400rpm DVD Super Multi Intel GMA X3100" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16834117675">Sony Vaio VGN-NR298E</a>. The first order of business once I got it, of couse, was to wipe it clean of Windows Vista. Not having ever settled on a Linux distro of preference before, I decided to give <a title="Kubuntu - The KDE Desktop" href="http://kubuntu.org">Kubuntu 7.10</a> a try.</p>
<p>After installing and booting up for the first time, I found that the wireless didn&#8217;t work right out of the box. I was able to find <a title="Ubuntu 7.04 running on Acer TravelMate 6292 - Ubuntu Forums" href="http://ubuntuforums.org/showthread.php?t=497686&amp;highlight=Santa+Rosa">this forum thread</a>, which included a link to the <a title="Intel PRO/Wireless Drivers-Only for Windows XP" href="http://downloadcenter.intel.com/download.aspx?url=/13000/eng/V11.1.1.0_XP_DRIVERS.ZIP&amp;agr=N&amp;ProductID=2753&amp;DwnldId=13000&amp;strOSs=All&amp;OSFullName=All+Operating+Systems&amp;lang=eng">Intel PRO/Wireless 4965 AG/AGN network card drivers</a> in the section marked &#8220;Wlan.&#8221; I installed ndiswrapper-common and ndiswrapper-utils-1.9, the latter of which appeared to include a version of the netw4x32 driver. However, when I issued the command ndiswrapper -l, it indicated that the driver was invalid. I removed it with ndiswrapper -r netw4x32, then downloaded the latest version from the aforementioned link and installed it as per the forum thread&#8217;s directions.</p>
<p>I also needed a solution to allow me to manage the music and files on my Creative Zen Vision: W. I&#8217;d had great experiences with their MuVo line, but I have to say that the experience with the Zen hasn&#8217;t been nearly as good. Creative has extremely subpar Windows-only software for interacting with the hardware, the design of which was obviously intended to keep third parties from developing their own software.</p>
<p>Oddly enough, I&#8217;d never heard of this before, but <a title="Gnomad2 - Getting your Jukebox/Zen running under Linux" href="http://gnomad2.sf.net">Gnomad2</a> was quite the excellent solution for my situation. It&#8217;s a simple program with an FTP client-like interface for transferring music and files to and from the Zen. If you enable the universe and multiverse repositories, you should be able to find it by searching Adept.</p>
<p>I also ran into the reputable difficulties with the keyboard function keys. The volume function keys will only let me toggle the volume up and down a single level relative to its current level. The brightness keys don&#8217;t work at all, which is annoying as I end up missing the feature that worked fine on my old Dell Inspiron 1150. I&#8217;ve tried a few suggested solutions for getting these to work, but no luck so far. Any feedback on this is welcome.</p>
<p>I couldn&#8217;t adjust myself to Konqueror as it felt like an unfamiliar, slow, and crippled version of Firefox. I ended up installing that along with  the <a title="Flash in Kubuntu 7.10: how to fix it - Inkless Paper" href="http://scotttesterman.wordpress.com/2007/12/13/flash-in-kubuntu-710-how-to-fix-it/">Flash Player add-on</a> for it and my usual group of extensions. I also found the default installation lacking a program capable of playing some video formats, so I installed <a title="VLC media player - Overview" href="http://www.videolan.org/vlc/">VLC</a> (also available from Adept).</p>
<p>Overall, though, I think I&#8217;m liking Kubuntu. Hopefully <a title="LornaJane" href="http://www.lornajane.net">Lorna Jane</a> will be able to help me get further accustomed to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewturland.com/2008/03/20/kubuntu-vaio-awesome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
