<?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>Imaging and a little bit of OSS &#187; jaunty</title>
	<atom:link href="http://nuclear-imaging.info/site_content/tag/jaunty/feed/" rel="self" type="application/rss+xml" />
	<link>http://nuclear-imaging.info/site_content</link>
	<description>Yet another techno blog</description>
	<lastBuildDate>Wed, 09 May 2012 13:02:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Creating gif files from jpg, png, bmp, etc.</title>
		<link>http://nuclear-imaging.info/site_content/2009/03/03/creating-gif-files-from-jpg-png-bmp-etc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=creating-gif-files-from-jpg-png-bmp-etc</link>
		<comments>http://nuclear-imaging.info/site_content/2009/03/03/creating-gif-files-from-jpg-png-bmp-etc/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 01:41:58 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[jaunty]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=180</guid>
		<description><![CDATA[I had to create a movie/animation out of a series of images that I had in my folder. There were several methods described on several forums which suggested using GIMP for creating GIF files from JPG or PNG files when one is using Linux. Now the problem was that I had 70 files in total <a href='http://nuclear-imaging.info/site_content/2009/03/03/creating-gif-files-from-jpg-png-bmp-etc/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I had to create a movie/animation out of a series of images that I had in my folder. There were several methods described on several forums which suggested using GIMP for creating GIF files from JPG or PNG files when one is using Linux. Now the problem was that I had 70 files in total and it would have taken me a long to time to add all those images to GIMP in order to create my animation file.</p>
<p>Then I read somewhere that we can actually create GIF images in command line mode using Imagemagick. But to do so you need to have Imagemagick installed on your system. To install it in Ubuntu, run:</p>
<pre>sudo apt-get install imagemagick</pre>
<p>This program has several features that would let you do all sorts of things with images. I was interested in converting a bunch of PNG files into an animated GIF file. To do so, we need to  rename the files in a way that they would lie in a sequence when arranged alphabetically (if you plan on doing it the easy way). Suppose you have files named <em>slide_01.png, slide_02.png, slide_02.png&#8230;.slide_xx.png</em>, and you want to convert them to <em>movie.gif</em>, we run:</p>
<pre>convert -delay 10 -loop 0 slide*.png movie.gif</pre>
<p>The parameter <em>delay</em> inserts a desired delay between two consecutive slides. The number <em>x</em> used for delay inserts <em>10x</em> milliseconds of delay between two frames. Loop parameter <em>0</em> makes it repeat infinitely.</p>
<p>If you had files with non-uniform names, then you need to input each of them in a sequence after the delay and loop parameters. Suppose you have file <em>summer.jpg, fall, winter.jpg, fall.jpg and spring.jpg</em> and you want to order them as fall, winter, spring and summer in the gif image <em>seasons.gif </em> with a 1 second delay between each of them, use:</p>
<pre>convert -delay 100 -loop 0 fall.jpg winter.jpg spring.jpg summer.jpg seasons.gif</pre>
<p>Here are some animations of numbers from 0 to 9 with varying delays.</p>
<p>The delay values specified the above cases were: 1, 5, 15, 25, 50 and 100.</p>
<div id="attachment_182" class="wp-caption alignleft" style="width: 170px"><img class="size-full wp-image-182" title="gif animation 10 millisecond delay" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/03/anim_02.gif" alt="gif animation with 10 millisecond delay" width="160" height="120" /><p class="wp-caption-text">GIF animation with 10 millisecond frame delay</p></div>
<div id="attachment_181" class="wp-caption alignleft" style="width: 170px"><img class="size-full wp-image-181" title="gif animation 50 millisecond delay" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/03/anim_01.gif" alt="gif animation with 50 millisecond delay" width="160" height="120" /><p class="wp-caption-text">GIF animation with 50 millisecond frame delay</p></div>
<div id="attachment_183" class="wp-caption alignleft" style="width: 170px"><img class="size-full wp-image-183" title="gif animation 150 millisecond delay" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/03/anim_03.gif" alt="gif animation with 150 millisecond delay" width="160" height="120" /><p class="wp-caption-text">GIF animation with 150 millisecond  frame delay</p></div>
<div id="attachment_184" class="wp-caption alignleft" style="width: 170px"><img class="size-full wp-image-184" title="gif animation 250 millisecond delay" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/03/anim_04.gif" alt="gif animation with 250 millisecond delay" width="160" height="120" /><p class="wp-caption-text">GIF animation with 250 millisecond frame delay</p></div>
<div id="attachment_185" class="wp-caption alignleft" style="width: 170px"><img class="size-full wp-image-185" title="gif animation 500 millisecond delay" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/03/anim_05.gif" alt="gif animation with 500 millisecond delay" width="160" height="120" /><p class="wp-caption-text">GIF animation with 500 millisecond frame delay</p></div>
<div id="attachment_186" class="wp-caption alignleft" style="width: 170px"><img class="size-full wp-image-186" title="gif animation 1000 millisecond delay" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/03/anim_06.gif" alt="gif animation 1 second delay" width="160" height="120" /><p class="wp-caption-text">GIF animation 1 second frame delay</p></div>
<p>=================</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/03/03/creating-gif-files-from-jpg-png-bmp-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mplayer and VLC workaround for Jaunty (Alpha 4)</title>
		<link>http://nuclear-imaging.info/site_content/2009/02/11/mplayer-and-vlc-workaround-for-jaunty-alpha-4/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mplayer-and-vlc-workaround-for-jaunty-alpha-4</link>
		<comments>http://nuclear-imaging.info/site_content/2009/02/11/mplayer-and-vlc-workaround-for-jaunty-alpha-4/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 14:23:27 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=115</guid>
		<description><![CDATA[There were unmet dependencies (libx264-59) for vlc and mplayer in the latest release of Jaunty Alpha. A bug report was filed by several users on launchpad.net One of the users posted this workaround to get both mplayer and VLC working in Ubuntu (9.04) Alpha 4. To solve the problem, just get libx264 here: http://packages.ubuntu.com/us/intrepid/i386/libx264-59/download Just <a href='http://nuclear-imaging.info/site_content/2009/02/11/mplayer-and-vlc-workaround-for-jaunty-alpha-4/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>There were unmet dependencies (libx264-59) for vlc and mplayer in the latest release of Jaunty Alpha. A bug report was filed by several users on <a title="libx264-59 fix for Ubuntu (Jaunty Alpha 4)" href="https://bugs.launchpad.net/ubuntu/+source/mplayer/+bug/325720" target="_blank">launchpad.net</a></p>
<p>One of the users posted this workaround to get both mplayer and VLC working in Ubuntu (9.04) Alpha 4.</p>
<blockquote><p>To solve the problem, just get libx264 here:<br />
<a title="Mirror for the libx264-59 package" href="http://packages.ubuntu.com/us/intrepid/i386/libx264-59/download" target="_blank"> http://packages.ubuntu.com/us/intrepid/i386/libx264-59/download</a><br />
Just installed it manually (sudo dpkg -i libx264-59_0.svn20080408-0.0ubuntu1_i386.deb)<br />
I then installed mplayer and vlc using medibuntu repos.</p></blockquote>
<p>Running:</p>
<pre>sudo apt-get install mplayer vlc</pre>
<p>Gets these packages working!</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/02/11/mplayer-and-vlc-workaround-for-jaunty-alpha-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off system beep in Linux</title>
		<link>http://nuclear-imaging.info/site_content/2009/02/10/turn-off-system-beep-in-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=turn-off-system-beep-in-linux</link>
		<comments>http://nuclear-imaging.info/site_content/2009/02/10/turn-off-system-beep-in-linux/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 22:52:18 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[beep]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=108</guid>
		<description><![CDATA[The system beep is one of the most distracting and annoying occurrences when you are doing some constructive work. Be it working in a text editor, or a terminal, or a program window &#8211; wherever a sound notification is programmed into any module, it emits a fairly audible beep. To disable the beep, we have <a href='http://nuclear-imaging.info/site_content/2009/02/10/turn-off-system-beep-in-linux/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The system beep is one of the most distracting and annoying occurrences when you are doing some constructive work. Be it working in a text editor, or a terminal, or a program window &#8211; wherever a sound notification is programmed into any module, it emits a fairly audible beep. To disable the beep, we have to disable the PC speaker by adding it to the blacklist.</p>
<blockquote><p>sudo gedit /etc/modprobe.d/blacklist</p></blockquote>
<p>Add the following line to the end of that file:</p>
<blockquote><p>blacklist pcspkr</p></blockquote>
<p>Save and exit. Then in terminal,</p>
<blockquote><p>sudo modprobe -r pcspkr</p></blockquote>
<p>This completely turns off the speaker. You won&#8217;t hear your system beep, even if there is something truly wrong. If you are doing something critical and need to rely on the beeps, comment out the line from the blacklist and run the modprobe command. Beeping will restart.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/02/10/turn-off-system-beep-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Matlab 2008b on 64-bit Linux</title>
		<link>http://nuclear-imaging.info/site_content/2009/02/10/installing-matlab2008b-on-64-bit-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-matlab2008b-on-64-bit-linux</link>
		<comments>http://nuclear-imaging.info/site_content/2009/02/10/installing-matlab2008b-on-64-bit-linux/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 19:08:11 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Imaging]]></category>
		<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[matlab 7.7]]></category>
		<category><![CDATA[matlab2008b]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=97</guid>
		<description><![CDATA[Recently I bought a student version of Matlab2008b. It was for Linux platform. Here&#8217;s my experience with installing the program on 64-bit Linux (Debian) architecture, what problems arose along the way and how they were addressed &#8211; with help from Mathworks tech support. Installing Matlab 7.7 (i.e. Matlab2008b) the old fashioned way was a breeze, <a href='http://nuclear-imaging.info/site_content/2009/02/10/installing-matlab2008b-on-64-bit-linux/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Recently I bought a student version of Matlab2008b. It was for Linux platform. Here&#8217;s my experience with installing the program on 64-bit Linux (Debian) architecture, what problems arose along the way and how they were addressed &#8211; with help from Mathworks tech support.</p>
<div id="attachment_106" class="wp-caption aligncenter" style="width: 585px"><a href="http://www.gfdl.noaa.gov/products/vis/images/matlab.png" target="_blank"><img class="size-full wp-image-106" title="Matlab Screenshot" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/02/matlab_screenshot_demo.png" alt="Matlab at work" width="575" height="403" /></a><p class="wp-caption-text">Matlab at work</p></div>
<p>Installing Matlab 7.7 (i.e. Matlab2008b) the old fashioned way was a breeze, but getting it to actually run on 64-bit architecture involved a few steps, which I didn&#8217;t know. I sent a query to Mathworks tech support saying:</p>
<blockquote><p>The installation files were able to successfully install Matlab2008b on Ubuntu 9.04 (Jaunty), however, the program failed to load since it cannot find the jre files for 64-bit architecture. Is there a workaround for running the 32-bit program on 64-bit platform?</p></blockquote>
<p>And they replied with a procedure to be followed to make that happen:</p>
<blockquote><p>Yes &#8211; here is a full walkthrough:</p>
<p>1) When running the MATLAB installer (install_unix.sh) use the -glnx86 flag.  This will allow it to install properly on a 64-bit Linux machine:</p>
<pre>./install_unix.sh -glnx86 -t</pre>
<p>2) Once the installer is finished, you will need to activate through <a href="http://mathworks.com/" target="_blank">mathworks.com</a>, as the activation client will not work properly on 64-bit computers.  To do so, follow the instructions below:</p>
<p><a href="http://www.mathworks.com/support/solutions/data/1-3YZBZ6.html?solution=1-3YZBZ6" target="_blank">http://www.mathworks.com/support/solutions/data/1-3YZBZ6.html?solution=1-3YZBZ6</a></p>
<p>3) Once MATLAB is installed and activated, you will need to run MATLAB using the same -glnx86 flag that you used to install:</p>
<pre>$MATLAB/bin/matlab -glnx86</pre>
<p>(where $MATLAB is the MATLAB installation folder)</p>
<p>NOTE: Some users have problems loading the JRE when running in this configuration.  Creating a symlink in $MATLAB/sys/java/jre named glnxa64 pointing to glnx86 should resolve this issue.  You can do this with the following command:</p>
<pre>ln -s $MATLAB/sys/java/jre/glnx86 $MATLAB/sys/java/jre/glnxa64</pre>
</blockquote>
<p>And now it works. Haven&#8217;t had any GUI crash on me yet, but it been less than an hour since I&#8217;ve been using it. One way to avoid typing <span style="color: #0000ff;"><em>matlab -glnx86</em></span> before each launch is to create a local alias.</p>
<pre>gedit ~/.bashrc</pre>
<p>Under one of the listing for aliases, you can type in:</p>
<blockquote>
<pre>alias mat='matlab -glnx86 &amp;'</pre>
</blockquote>
<p>Save and exit. Then onward, you can launch the program by simply typing in mat in the terminal.</p>
<p>In case your compiz is enabled, you might not see the menus correctly. To fix that problem, you have to run the following command at the terminal.</p>
<blockquote>
<pre>export MATLAB_JAVA=/usr/lib/jvm/java-6-sun/jre/</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/02/10/installing-matlab2008b-on-64-bit-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mplayer has unmet dependencies in Ubuntu 9.04 (Alpha 4)</title>
		<link>http://nuclear-imaging.info/site_content/2009/02/09/mplayer-has-unmet-dependencies-in-ubuntu-904-alpha-4/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mplayer-has-unmet-dependencies-in-ubuntu-904-alpha-4</link>
		<comments>http://nuclear-imaging.info/site_content/2009/02/09/mplayer-has-unmet-dependencies-in-ubuntu-904-alpha-4/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 00:47:58 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[mplayer]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=94</guid>
		<description><![CDATA[Some of the repositories which hold the libraries for mplayer seem to be broken in the Alpha 4 release of Ubuntu 9.04 (Jaunty Jackalope). What&#8217;s surprising is that the mplayer installation in Alpha 3 meets all the dependencies and fetches the files correctly, however that for Alpha 4 don&#8217;t. One workaround for vlc is to <a href='http://nuclear-imaging.info/site_content/2009/02/09/mplayer-has-unmet-dependencies-in-ubuntu-904-alpha-4/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Some of the repositories which hold the libraries for mplayer seem to be broken in the Alpha 4 release of Ubuntu 9.04 (Jaunty Jackalope). What&#8217;s surprising is that the mplayer installation in Alpha 3 meets all the dependencies and fetches the files correctly, however that for Alpha 4 don&#8217;t.</p>
<p>One workaround for vlc is to install libx264-dev, and then install VLC:</p>
<blockquote><p>$sudo apt-get install libx264-dev vlc</p></blockquote>
<p>This still leaves unmet dependencies for mplayer.</p>
<blockquote><p>rick@lithium:~$ sudo apt-get install mplayer<br />
Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
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 />
mplayer: Depends: libx264-59 (&gt;= 1:0.svn20080408) but it is not installable<br />
E: Broken packages<br />
rick@lithium:~$</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/02/09/mplayer-has-unmet-dependencies-in-ubuntu-904-alpha-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nvidia updates in Jaunty (Ubuntu 9.04) &#8211; modaliases</title>
		<link>http://nuclear-imaging.info/site_content/2009/02/03/nvidia-updates-in-jaunty-ubuntu-904-modaliases/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nvidia-updates-in-jaunty-ubuntu-904-modaliases</link>
		<comments>http://nuclear-imaging.info/site_content/2009/02/03/nvidia-updates-in-jaunty-ubuntu-904-modaliases/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 16:55:32 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[nvidia]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=85</guid>
		<description><![CDATA[After running the update commands yesterday: sudo apt-get update &#38;&#38; sudo apt-get upgrade There were a few nvidia video card drivers that got installed. There were several of them; fglrx-modaliases nvidia-173-modaliases nvidia-177-modaliases nvidia-180-modaliases nvidia-71-modaliases nvidia-96-modaliases Once these modaliases were installed, I performed a search for hardware drivers. This time the search showed that there were <a href='http://nuclear-imaging.info/site_content/2009/02/03/nvidia-updates-in-jaunty-ubuntu-904-modaliases/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>After running the update commands yesterday:</p>
<blockquote><p>sudo apt-get update &amp;&amp; sudo apt-get upgrade</p></blockquote>
<p>There were a few nvidia video card drivers that got installed. There were several of them;</p>
<blockquote><p>fglrx-modaliases<br />
nvidia-173-modaliases<br />
nvidia-177-modaliases<br />
nvidia-180-modaliases<br />
nvidia-71-modaliases<br />
nvidia-96-modaliases</p></blockquote>
<p>Once these modaliases were installed, I performed a search for hardware drivers. This time the search showed that there were several drivers that could work with my <em>Nvidia GeForce 7300 </em>graphics card.</p>
<div id="attachment_86" class="wp-caption aligncenter" style="width: 503px"><img class="size-full wp-image-86" title="Nvidia graphics drivers for Ubuntu 9.04 (Jaunty)" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/02/nvidia_modaliases_jaunty_update.png" alt="Nvidia graphics drivers after Jaunty update (Feb 2, 2009)" width="493" height="575" /><p class="wp-caption-text">Nvidia graphics drivers after Jaunty update (Feb 2, 2009)</p></div>
<p>The recommended driver was version 180. After installing the driver, the computer needs to be restarted for the driver to take effect.  Accordingly, I restarted the computer and now the Nvidia graphics are fully enabled.</p>
<p>One of programs that I use frequently is still quite buggy. The <em>gnome-do</em> program, that performs the same functions as Quicksilver (Mac) was working really well under Intrepid. It keeps crashing all the time under Jaunty. By the time Jaunty is in Alpha 4, I think the problem would be sorted out.</p>
<p>While the nividia graphics card drivers have been release for Jaunty, the ones for ATI still aren&#8217;t. The graphics on my Toshiba Satellite that has an ATI graphics accelerator card are still using the system memory. We&#8217;ll have to wait for the ATI drivers in order for the card to start working in Ubuntu 9.04.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/02/03/nvidia-updates-in-jaunty-ubuntu-904-modaliases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atheros 5007EG now works in Jaunty Jackalope</title>
		<link>http://nuclear-imaging.info/site_content/2009/01/30/atheros-5007eg-now-works-in-jaunty-jackalope/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=atheros-5007eg-now-works-in-jaunty-jackalope</link>
		<comments>http://nuclear-imaging.info/site_content/2009/01/30/atheros-5007eg-now-works-in-jaunty-jackalope/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 17:08:32 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[5007eg]]></category>
		<category><![CDATA[ath5k]]></category>
		<category><![CDATA[atheros]]></category>
		<category><![CDATA[backports]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=42</guid>
		<description><![CDATA[Until today&#8217;s kernel update to 2.6.28.6, the Atheros wifi card was not functioning correctly. Since the update to new kernel, the wifi card can now be used with the ath5k module which can be found in linux-backports-modules. In order to get the Atheros 5007EG card to work, you first need to disable the built-in hardware <a href='http://nuclear-imaging.info/site_content/2009/01/30/atheros-5007eg-now-works-in-jaunty-jackalope/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Until today&#8217;s kernel update to 2.6.28.6, the Atheros wifi card was not functioning correctly. Since the update to new kernel, the wifi card can now be used with the ath5k module which can be found in linux-backports-modules.</p>
<p>In order to get the Atheros 5007EG card to work, you first need to disable the built-in hardware driver.</p>
<blockquote><p>System &gt;&gt; Administration  &gt;&gt; Hardware Drivers &gt; Deactivate &#8220;Support for Atheros 802.11 cards&#8221;</p></blockquote>
<p style="text-align: center;">
<div id="attachment_45" class="wp-caption aligncenter" style="width: 593px"><img class="size-full wp-image-45" title="Hardware Drivers in Januty" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/01/jaunty_hw_menu.png" alt="Selection of Hardware Drivers in Januty" width="583" height="480" /><p class="wp-caption-text">Selection of Hardware Drivers in Januty</p></div>
<div id="attachment_43" class="wp-caption aligncenter" style="width: 466px"><img class="size-full wp-image-43" title="Disable Athros Module" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/01/jaunty_atheros_disable.png" alt="Disable the Support for Atheros 802.11 cards" width="456" height="578" /><p class="wp-caption-text">Disable the Support for Atheros 802.11 cards</p></div>
<p>After the card has been deactivated, open the terminal and install the backports modules for Jaunty.</p>
<blockquote><p>sudo apt-get update &amp;&amp; sudo apt-get install linux-backports-modules-jaunty</p></blockquote>
<div id="attachment_44" class="wp-caption aligncenter" style="width: 459px"><img class="size-full wp-image-44" title="Jaunty backports" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/01/jaunty_backport_modterm.png" alt="Install Jaunty backports modules" width="449" height="174" /><p class="wp-caption-text">Install Jaunty backports modules</p></div>
<p>This adds the ath5k module which supports the Atheros 5007EG card.</p>
<p>The computer needs to be Shutdown and powered back on. Somehow Restarting doesn&#8217;t work at times. The card has to be completely powered down for a few seconds and then started during power up.</p>
<p>You should be able to see the available wireless network list by clicking on the network manager icon. Thereon, you all know what to do <img src='http://nuclear-imaging.info/site_content/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/01/30/atheros-5007eg-now-works-in-jaunty-jackalope/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Notes on Ubuntu 9.04 (Jaunty Alpha 3)</title>
		<link>http://nuclear-imaging.info/site_content/2009/01/20/notes-on-ubuntu-904-jaunty-alpha-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=notes-on-ubuntu-904-jaunty-alpha-3</link>
		<comments>http://nuclear-imaging.info/site_content/2009/01/20/notes-on-ubuntu-904-jaunty-alpha-3/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 00:08:38 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[ath5k]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=6</guid>
		<description><![CDATA[The Alpha-3 version of Jaunty became available two days past the scheduled release date. It included the kernel 2.6.28.4. It&#8217;s the first (alpha) release to include a kernel that supports EXT4 filesystem. The EXT4 became officially available in Dec 2008, and in less than a month it was incorporated into the 2.6.28 kernel. There are <a href='http://nuclear-imaging.info/site_content/2009/01/20/notes-on-ubuntu-904-jaunty-alpha-3/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The Alpha-3 version of Jaunty became available two days past the scheduled release date. It included the kernel 2.6.28.4. It&#8217;s the first (alpha) release to include a kernel that supports EXT4 filesystem. The EXT4 became officially available in Dec 2008, and in less than a month it was incorporated into the 2.6.28 kernel.</p>
<p>There are several sites which post the performance benchmarks for EXT4 compared with other filesystems.</p>
<p><a title="First benchmarks of the ext4 file system" href="http://www.linuxinsight.com/first_benchmarks_of_the_ext4_file_system.html" target="_blank">1</a> <a title="Ubuntu 9.04 Receives EXT4 Support" href="http://www.phoronix.com/scan.php?page=article&amp;item=ubuntu_ext4&amp;num=3" target="_blank">2</a></p>
<p>EXt4 is supposed to be much faster than existing filesystems. Several people have reported a booting time between 21 and 25 seconds, which is the time taken from <em>bootloader selection</em> till the <em>login screen</em> appears.</p>
<p>But beyond fast loading the alpha leaves a lot of room for improvement. Its integration with the /home/<em>user</em> partition is pretty buggy. One of the least stable module appears to be the <em>alsamixer</em>. The interface of volume applet has been changed significantly and is actually a lot less intuitive and quite inefficient.</p>
<div id="attachment_3" class="wp-caption aligncenter" style="width: 296px"><img class="size-full wp-image-3" title="Volume control applet under Ubuntu 9.04 (alpha 3)" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/01/alsa_jaunty_alpha3.png" alt="Screenshot of volume control applet" width="286" height="115" /><p class="wp-caption-text">Screenshot of volume control applet</p></div>
<p>As you see, the controller has a horizontal slider instead of the conventional vertical slider. More interestingly, double clicking on the volume control icon doesn&#8217;t open up the mixer like it used to. I&#8217;ve yet to figure out the workings of this applet.</p>
<p>Perhaps I might have figured out its usage, but I can&#8217;t vouch for the accuracy. One way to do it is:</p>
<blockquote><p>Volume control applet (right click) &gt;&gt; Preferences &gt;&gt; HDA xxxx (Alsa Mixer) &gt;&gt; Select the device you want to control &gt;&gt; Close</p></blockquote>
<div id="attachment_4" class="wp-caption aligncenter" style="width: 400px"><img class="size-full wp-image-4" title="ALSA preferences (Jaunty, alpha 3)" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/01/alsapanel_jaunty_alpha3.png" alt="Screenshot of volume control prefernces" width="390" height="531" /><p class="wp-caption-text">Screenshot of volume control prefernces</p></div>
<p>I was able to change the line-in volume for use with a TV tuner card by the procedure I described above.</p>
<p>However the alsa module is very unstable in its present state. It causes one or more applications to crash at random. Most crashes were encountered when playing some form of flash media. <a title="Download Skype for Ubuntu" href="http://www.skype.com/go/getskype-linux-ubuntu" target="_blank">Skype</a> fails to load altogether. As soon as the login information is entered, the program coredumps with the following errors:</p>
<blockquote><p><span style="color: #008000;">user@user-computer:~$ skype<br />
ALSA lib ../../src/conf.c:2700:(snd_config_hooks_call) Cannot open shared library libasound_module_conf_pulse.so<br />
ALSA lib ../../../src/control/control.c:909:(snd_ctl_open_noupdate) Invalid CTL hw:0<br />
Aborted (core dumped)<br />
user@user-computerf:~$</span></p></blockquote>
<p>The video drivers for nvidia cards have yet to be released. Searching for Hardware Drivers yields a blank window. The drivers nvidia-glx-17x and nvidia-glx-96 are present in the repositories but the installation messes up the X and gdm loading. The only way to get back to X, is to remove the nvidia drivers and install ubuntu-desktop along with xorg. Once its done, typing</p>
<pre style="padding-left: 30px;"><span style="color: #339966;">startx</span></pre>
<p>gets you back into GDM.</p>
<p>On wireless side, ath5k is not included in the default distribution and it is still quite a bit of hassle to obtain it from backports and blacklisting the ath_pci modules *.</p>
<p>All in all, there is a lot that needs to be done w.r.t. Ubuntu 9.04 before it is released as a beta and then finally as an official release in April. It would be nice to try out a fresh install including a brand new /home directory.</p>
<p>ETA: * The Alpha 4 release of Ubuntu and Kubuntu contained ath5k, even in the LiveCD, thus the part about Ubuntu (jaunty) not having support for Atheros cards out of the box is no longer valid. I haven&#8217;t heard other testers say anything since Alpha 4 came out, so I guess it must be working for quite a number of folks. Still no support for the ATI graphics card though.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/01/20/notes-on-ubuntu-904-jaunty-alpha-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

