<?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; non-OSS</title>
	<atom:link href="http://nuclear-imaging.info/site_content/category/non-oss/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>Saving images to postscript format in Matlab</title>
		<link>http://nuclear-imaging.info/site_content/2011/11/16/saving-images-to-postscript-format-in-matlab/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=saving-images-to-postscript-format-in-matlab</link>
		<comments>http://nuclear-imaging.info/site_content/2011/11/16/saving-images-to-postscript-format-in-matlab/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 00:17:13 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Imaging]]></category>
		<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[-dpsc2]]></category>
		<category><![CDATA[.pdf]]></category>
		<category><![CDATA[.ps]]></category>
		<category><![CDATA[append]]></category>
		<category><![CDATA[figure]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[pdf conversion]]></category>
		<category><![CDATA[postscript]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[ps2pdf]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=403</guid>
		<description><![CDATA[On most Linux/Unix based systems, you can save your Matlab figure as a postscript instead of saving it as a png or jpg. One advantage of saving figures in this manner is that you can save multiple images as separate pages on that .ps document, whereas with png/jpg you have to save each image as <a href='http://nuclear-imaging.info/site_content/2011/11/16/saving-images-to-postscript-format-in-matlab/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>On most Linux/Unix based systems, you can save your Matlab figure as a postscript instead of saving it as a png or jpg. One advantage of saving figures in this manner is that you can save multiple images as separate pages on that .ps document, whereas with png/jpg you have to save each image as a separate file.</p>
<p>To print the current image to postscript, all you need to run is:</p>
<blockquote><p>print(&#8216;-dpsc2&#8242;,&#8217;filename&#8217;);</p></blockquote>
<p>To have multiple images appended within the postscript document, you need to use the <em>-append</em> switch.</p>
<blockquote><p>print(&#8216;-dpsc2&#8242;, &#8216;-append&#8217;, &#8216;filename&#8217;);</p></blockquote>
<p>Your output postscript will have the name <em>filename.ps</em></p>
<p>To convert the postscripts to pdf format, just run the ps2pdf command in the terminal window:</p>
<blockquote><p>ps2fpdf filename.ps</p></blockquote>
<p>The output of this would be <em>filename.pdf</em></p>
<p>And you&#8217;re done.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2011/11/16/saving-images-to-postscript-format-in-matlab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/usr/bin/ld: cannot find -lbz2</title>
		<link>http://nuclear-imaging.info/site_content/2011/11/10/usrbinld-cannot-find-lbz2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=usrbinld-cannot-find-lbz2</link>
		<comments>http://nuclear-imaging.info/site_content/2011/11/10/usrbinld-cannot-find-lbz2/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 17:05:35 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[-lbz2]]></category>
		<category><![CDATA[/usr/bin/ld]]></category>
		<category><![CDATA[libbz2-dev]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=399</guid>
		<description><![CDATA[In order to install l1-SPIRiT Compressed Sensing Parallel MRI, we need to have a couple of programs installed &#8211; fftw3, lbz2.  Usually you encounter the following error while running build routine in Matlab. /usr/bin/ld: cannot find -lbz2 collect2: ld returned 1 exit status sudo apt-get install libbz2-dev After installing libbz2-dev this error is corrected.]]></description>
			<content:encoded><![CDATA[<p>In order to install l1-SPIRiT Compressed Sensing Parallel MRI, we need to have a couple of programs installed &#8211; fftw3, lbz2.  Usually you encounter the following error while running build routine in Matlab.</p>
<blockquote>
<pre dir="ltr">/usr/bin/ld: cannot find -lbz2
collect2: ld returned 1 exit status
</pre>
<p>sudo apt-get install libbz2-dev</p></blockquote>
<p>After installing libbz2-dev this error is corrected.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2011/11/10/usrbinld-cannot-find-lbz2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an index for .avi files</title>
		<link>http://nuclear-imaging.info/site_content/2011/11/09/creating-in-index-file-for-avi-files/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=creating-in-index-file-for-avi-files</link>
		<comments>http://nuclear-imaging.info/site_content/2011/11/09/creating-in-index-file-for-avi-files/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 13:18:07 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[-idx]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[fast forward]]></category>
		<category><![CDATA[index files]]></category>
		<category><![CDATA[mencoder]]></category>
		<category><![CDATA[recreate]]></category>
		<category><![CDATA[reverse]]></category>
		<category><![CDATA[scroll]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=395</guid>
		<description><![CDATA[Some .avi files tend to have an out of sync audio track, some can&#8217;t be scrolled through (forward/reverse), while others might show an message that says the index file needs to be recreated. Solution is to create a copy of that file that has an index recreated and remove the original and save the copy <a href='http://nuclear-imaging.info/site_content/2011/11/09/creating-in-index-file-for-avi-files/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Some .avi files tend to have an out of sync audio track, some can&#8217;t be scrolled through (forward/reverse), while others might show an message that says the index file needs to be recreated.</p>
<p>Solution is to create a copy of that file that has an index recreated and remove the original and save the copy and all the usual replacement methods.</p>
<blockquote><p>mencoder -idx files1.avi -ovc copy -oac copy -o file2.avi</p></blockquote>
<p>Here file1.avi is the input file, and file2 is the output file with corrected index.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2011/11/09/creating-in-index-file-for-avi-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exit Ubuntu &#8211; Enter Linux Mint</title>
		<link>http://nuclear-imaging.info/site_content/2011/09/19/exit-ubuntu-enter-linux-mint/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exit-ubuntu-enter-linux-mint</link>
		<comments>http://nuclear-imaging.info/site_content/2011/09/19/exit-ubuntu-enter-linux-mint/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 19:12:44 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[linux mint]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unity]]></category>
		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=381</guid>
		<description><![CDATA[The latest version of Ubuntu is heavily based upon Unity environment. Unfortunately Unity has no track record of playing nice with existing gnome programs. For network applications such as VNC, Unity crashes the program with whole bunch of errors. These crashes are observed occasionally in the Ubuntu 11.04 (Natty Narwhal) release, and most certainly in <a href='http://nuclear-imaging.info/site_content/2011/09/19/exit-ubuntu-enter-linux-mint/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The latest version of Ubuntu is heavily based upon Unity environment. Unfortunately Unity has no track record of playing nice with existing gnome programs. For network applications such as VNC, Unity crashes the program with whole bunch of errors. These crashes are observed occasionally in the Ubuntu 11.04 (Natty Narwhal) release, and most certainly in the latest beta 1 release of Ubuntu 11.10 (Oneiric Ocelot).</p>
<p>If you have gotten comfortable with Ubuntu and want to continue using Gnome as the main environment, you can do so by using Linux Mint 11 (Katya). It has the same repositories as Ubuntu and you can even use the ubuntu-restricted-extras and build-essential packages which lets you obtain some of the fonts, codecs and libraries that Ubuntu fetches for you.</p>
<p style="text-align: center;"><a href="http://nuclear-imaging.info/site_content/2011/09/19/exit-ubuntu-enter-linux-mint/linux-mint/" rel="attachment wp-att-385"><img class="aligncenter size-full wp-image-385" style="border: 1px solid black; margin: 1px;" title="linux-mint" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2011/09/linux-mint.png" alt="" width="200" height="200" /></a></p>
<p>Ubuntu is starting to put more emphasis on making their release into an eye-candy, at the cost of reduced functionality. Having used Ubuntu since Dapper Drake days, its sad to ditch it for another distro. IMO Ubuntu 10.04 was the cleanest distro they put out &#8211; things have been going downhill after that. Linux Mint on the other hand picked up at the point when Ubuntu started to go dysfunctional. It has everything that Ubuntu should have been. There isn&#8217;t much to write about Mint 11. Its very similar to Ubuntu 10.04, has a newer kernel 2.6.38.xx, clean graphics, and the same repositories as Ubuntu. The transition is very easy, and things look a lot more neater in Mint.</p>
<p>To recap: If you are currently using Ubuntu and are afraid to upgrade to the 11.10 release, your fear is quite justified. Make a backup of your /home folder and go for a clean install of Linux Mint instead. I moved to Mint about a month ago and have had a rather smooth sailing so far.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2011/09/19/exit-ubuntu-enter-linux-mint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet access speed rankings &#8211; Local and Global</title>
		<link>http://nuclear-imaging.info/site_content/2010/04/20/internet-access-speed-rankings-local-and-global/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=internet-access-speed-rankings-local-and-global</link>
		<comments>http://nuclear-imaging.info/site_content/2010/04/20/internet-access-speed-rankings-local-and-global/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:46:15 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[access speed]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[network speed]]></category>
		<category><![CDATA[transfer rate]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=341</guid>
		<description><![CDATA[Some of the countries that had remarkably high data transfer rates were reporting a drop in network speeds as a result of smart phones gaining popularity over the past year or so. Following that train of links, one ends up article after article about which nation ranks first in network speeds, and where US lies <a href='http://nuclear-imaging.info/site_content/2010/04/20/internet-access-speed-rankings-local-and-global/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Some of the countries that had remarkably high data transfer rates were reporting a drop in network speeds as a result of smart phones gaining popularity over the past year or so. Following that train of links, one ends up article after article about which nation ranks first in network speeds, and where US lies on that list and so on. There was one website which gave a really comprehensive set of results and analysis, right till the ISP level for pretty much every nation on the planet.</p>
<p><a href="http://www.speedtest.net/">speedtest.net</a></p>
<div id="attachment_342" class="wp-caption aligncenter" style="width: 479px"><a href="http://nuclear-imaging.info/site_content/wp-content/uploads/2010/04/speedtest.png"><img class="size-full wp-image-342" title="Speedtest" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2010/04/speedtest.png" alt="" width="469" height="289" /></a><p class="wp-caption-text">Speedtest - Analyze network speeds and compare results</p></div>
<p>Seems like the site is pretty up to date too.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2010/04/20/internet-access-speed-rankings-local-and-global/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HDTV for under $30 (TV Tuner card)</title>
		<link>http://nuclear-imaging.info/site_content/2009/06/26/hdtv-for-under-30-tv-tuner-card/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hdtv-for-under-30-tv-tuner-card</link>
		<comments>http://nuclear-imaging.info/site_content/2009/06/26/hdtv-for-under-30-tv-tuner-card/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 19:16:38 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[artec]]></category>
		<category><![CDATA[atsc usb tuner]]></category>
		<category><![CDATA[digital TV signals]]></category>
		<category><![CDATA[live TV]]></category>
		<category><![CDATA[tv tuner]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=235</guid>
		<description><![CDATA[Since the analog TV signals have been discontinued in most cases throughout the country, the only way to catch TV signals is to have TV which can capture and process digital transmission, or if you subscribe to cable. Since I&#8217;m not too terribly interested in watching TV, there was no point in investing in a <a href='http://nuclear-imaging.info/site_content/2009/06/26/hdtv-for-under-30-tv-tuner-card/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Since the analog TV signals have been discontinued in most cases throughout the country, the only way to catch TV signals is to have TV which can capture and process digital transmission, or if you subscribe to cable. Since I&#8217;m not too terribly interested in watching TV, there was no point in investing in a new TV and subscribing to cable was totally out of the question. The option then was to get the reception on my desktop computer.</p>
<p>The solution was to get a cheap ATSC tuner which plugged into the USB port and which had a loop antenna for reception.</p>
<p style="text-align: left;">
<div id="attachment_236" class="wp-caption aligncenter" style="width: 586px"><img class="size-full wp-image-236" title="atsc_antenna_tunerusb" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/06/atsc_antenna_tunerusb.jpg" alt="ATSC digital Tuner Antenna" width="576" height="432" /><p class="wp-caption-text">ATSC digital Tuner Antenna</p></div>
<p style="text-align: left;">The antenna plugs into the USB port through a TV tuner card. The one I own is an Artec tuner card. I learned after I purchased it that it didn&#8217;t have support in Linux yet. Schade!</p>
<p style="text-align: left;">
<div id="attachment_237" class="wp-caption aligncenter" style="width: 570px"><img class="size-full wp-image-237" title="atsc_card_tunerusb" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/06/atsc_card_tunerusb.jpg" alt="ATSC USB tuner for tuning digital TV reception" width="560" height="420" /><p class="wp-caption-text">ATSC USB tuner for tuning digital TV reception</p></div>
<p style="text-align: left;">Once the hardware is setup is complete, we can get the local TV station information through Windows Media Center. That program pleasantly surprised me. After asking you for your zip code, it connects to a database and gets the TV schedules for all broadcast stations in your city. Then it scans for available channels and sets up a list of stations with their programming schedule.</p>
<p style="text-align: center;">
<div id="attachment_239" class="wp-caption aligncenter" style="width: 572px"><img class="size-full wp-image-239" title="Windows Media Center options" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/06/livetv_usb.jpg" alt="Options seen under Windows Media Center, including one for Live TV." width="562" height="330" /><p class="wp-caption-text">Options seen under Windows Media Center, including one for Live TV.</p></div>
<p style="text-align: center;">
<div id="attachment_240" class="wp-caption aligncenter" style="width: 573px"><img class="size-full wp-image-240" title="Live TV Selection" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/06/livetv_usb_sel.jpg" alt="You can either watch recorded shows or watch Live TV." width="563" height="331" /><p class="wp-caption-text">You can either watch recorded shows or watch Live TV.</p></div>
<p style="text-align: left;">
<div id="attachment_238" class="wp-caption aligncenter" style="width: 573px"><img class="size-full wp-image-238" title="WMC Live TV in action" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/06/live_tv_contents.jpg" alt="Windows Media Center Live TV in action." width="563" height="331" /><p class="wp-caption-text">Windows Media Center Live TV in action.</p></div>
<p>Once Windows Media Center has scanned for the available channels, you can watch HDTV right on your own computer. In addition to being a TV tuner, Windows Media Center converts you computer into a DVR, where you can record programs or Pause and Rewind the shows that you are watching in real time. Pretty impressive stuff. Whats more impressive is that the equipment costed less than $30, that includes shipping.</p>
<p style="text-align: left;">Unfortunately the Artec card can&#8217;t be used within Linux since the kernel still hasn&#8217;t incorporated the hardware specs of Artec USB tuners  in video4linux (v4l). But I&#8217;m pretty sure it will be available pretty soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/06/26/hdtv-for-under-30-tv-tuner-card/feed/</wfw:commentRss>
		<slash:comments>0</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>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>Windows 7 &#8211; GUI improvements</title>
		<link>http://nuclear-imaging.info/site_content/2009/01/23/windows-7-gui-improvements/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-7-gui-improvements</link>
		<comments>http://nuclear-imaging.info/site_content/2009/01/23/windows-7-gui-improvements/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 15:08:08 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[non-OSS]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=35</guid>
		<description><![CDATA[The recently released Windows 7 Beta (Build 7000) has several improvements in its GUI. Many of these features have been discussed at length in several blogs. Among other things, there is a deafult option to stack all program tabs in the taskbar keeping it from running out of space.  There is a mouse-over feature that <a href='http://nuclear-imaging.info/site_content/2009/01/23/windows-7-gui-improvements/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The recently released Windows 7 Beta (Build 7000) has several improvements in its GUI. Many of these features have been discussed at length in several blogs. Among other things, there is a deafult option to stack all program tabs in the taskbar keeping it from running out of space.  There is a mouse-over feature that shows a preview of that program and brings that program to the foreground when the mouse is moved over that preview.</p>
<p>Then there is one tiny feature in the Windows Explorer that should have been implemented long time ago, but its good to finally see it in this release.</p>
<blockquote><p>Organize &gt;&gt; Folder and Search Options &gt;&gt; View &gt;&gt; Use Check boxes to select items</p></blockquote>
<div id="attachment_36" class="wp-caption aligncenter" style="width: 421px"><img class="size-full wp-image-36" title="Windows 7 Checkbox Option" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/01/win7checkboxoption.png" alt="Windows Explorer Checkbox Option" width="411" height="492" /><p class="wp-caption-text">Windows Explorer Checkbox Option</p></div>
<p>Once that option is selected, a checkbox is displayed in front of the file each time the mouse hovers over it. This options overcomes the need to select individual files by keeping the &#8216;Control&#8217; key press at all times.</p>
<div id="attachment_37" class="wp-caption aligncenter" style="width: 518px"><img class="size-full wp-image-37" title="Checkbox in front of file icon" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/01/win7explorercheckboxoption.png" alt="Checkbox is displayed in front of file icon" width="508" height="414" /><p class="wp-caption-text">Checkbox is displayed in front of file icon</p></div>
<p>This is one of the features I&#8217;d like to see ported over into Gnome for use in Linux distros.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/01/23/windows-7-gui-improvements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

