<?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; karmic koala</title>
	<atom:link href="http://nuclear-imaging.info/site_content/tag/karmic-koala/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>VNC server setup for Ubuntu 10.04 (Lucid Lynx)</title>
		<link>http://nuclear-imaging.info/site_content/2010/04/19/vnc-server-setup-for-ubuntu-10-04-lucid-lynx/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vnc-server-setup-for-ubuntu-10-04-lucid-lynx</link>
		<comments>http://nuclear-imaging.info/site_content/2010/04/19/vnc-server-setup-for-ubuntu-10-04-lucid-lynx/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 22:28:11 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[Lucid Lynx]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>
		<category><![CDATA[vnc]]></category>
		<category><![CDATA[vnc server]]></category>
		<category><![CDATA[vncviewer]]></category>
		<category><![CDATA[xstartup]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=338</guid>
		<description><![CDATA[For the first time I was able to get VNC to work with Ubuntu with Gnome session instead of a xterm on gray background. The steps involved were exactly the same as I was following earlier, with one exception:  the setup of xstartup in the ~/.vnc folder. For your xstartup file in ~/.vnc (the &#8220;.vnc&#8221; <a href='http://nuclear-imaging.info/site_content/2010/04/19/vnc-server-setup-for-ubuntu-10-04-lucid-lynx/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>For the first time I was able to get VNC to work with Ubuntu with  Gnome session instead of a xterm on gray background. The steps involved  were exactly the same as I was following earlier, with one exception:   the setup of xstartup in the ~/.vnc folder.</p>
<blockquote><p>For your xstartup file in ~/.vnc (the &#8220;.vnc&#8221; folder in<br />
your home directory), you need the following:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
#!/bin/sh</p>
<p># Uncomment the following two lines for normal desktop:<br />
# unset SESSION_MANAGER<br />
# exec /etc/X11/xinit/xinitrc</p>
<p>[ -x /etc/vnc/xstartup ] &amp;&amp; exec /etc/vnc/xstartup<br />
[ -r $HOME/.Xresources ] &amp;&amp; xrdb $HOME/.Xresources<br />
xsetroot -solid grey<br />
vncconfig -iconic &amp;<br />
xterm -geometry 80&#215;24+10+10 -ls -title &#8220;$VNCDESKTOP Desktop&#8221; &amp;<br />
gnome-session  &amp;<br />
# twm &amp;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>instead of uncommenting the lines as the script suggests, you change  the window manager to gnome-session</p>
<p>make sure restart vnc4server</p>
</blockquote>
<p>The line which got Gnome working was &#8220;gnome-session &amp;&#8221;</p>
<p>========================================</p>
<p>Now for all the steps involved (works in Karmic Koala Alpha 2, Ubuntu  9.10, kernel 2.6.30-10)</p>
<p>1. Install ssh server, ssh client, VNC viewer, VNC server, and xinetd</p>
<blockquote><p>sudo apt-get install openssh-server openssh-client  vnc4server xinetd  vncviewer</p>
</blockquote>
<p>2. Setup the ssh password for your login</p>
<blockquote><p>ssh-keygen</p>
</blockquote>
<p>3. Test out the ssh server by typing in</p>
<blockquote><p>ssh localhost  or ssh your_login@your_ip_address</p>
</blockquote>
<p>4. Then create a vnc password</p>
<blockquote><p>sudo vncpasswd ~/.vncpasswd</p>
</blockquote>
<p>5. Edit the xstartup file in ~/.vnc directory</p>
<blockquote><p>For your xstartup file in ~/.vnc (the &#8220;.vnc&#8221; folder in<br />
your home directory), you need the following:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
#!/bin/sh</p>
<p># Uncomment the following two lines for normal desktop:<br />
# unset SESSION_MANAGER<br />
# exec /etc/X11/xinit/xinitrc</p>
<p>[ -x /etc/vnc/xstartup ] &amp;&amp; exec /etc/vnc/xstartup<br />
[ -r $HOME/.Xresources ] &amp;&amp; xrdb $HOME/.Xresources<br />
xsetroot -solid grey<br />
vncconfig -iconic &amp;<br />
xterm -geometry 80&#215;24+10+10 -ls -title &#8220;$VNCDESKTOP Desktop&#8221; &amp;<br />
gnome-session &amp;<br />
# twm &amp;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>instead of uncommenting the lines as the script suggests, you change  the window manager to gnome-session</p>
</blockquote>
<p>6. Create a VNC desktop</p>
<blockquote><p>vnc4server :1 -geometry 1024&#215;768</p>
</blockquote>
<p>7. Then to tunnel into your VNC desktop, first create a SSH tunnel by  logging into SSH with the comand:</p>
<blockquote><p>ssh -L 5901:your_ip_address:5901  your_username@your_ipaddress</p>
</blockquote>
<p>8. Finally, load up your VNC desktop</p>
<blockquote><p>vncviewer localhost:1</p>
</blockquote>
<p>And now you are ready to use connect to your machine remotely and use administer the computer remotely.</p>
<p>P.S: If you are using a firewall (hardware or software, you need to get enable port forwarding and unblock ports 22 and 5900-5999 on the Ubuntu machine to allow SSH and VNC to be accessed.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2010/04/19/vnc-server-setup-for-ubuntu-10-04-lucid-lynx/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Remove Karmic (Ubuntu 9.10) login screen sound</title>
		<link>http://nuclear-imaging.info/site_content/2009/11/03/remove-karmic-ubuntu-910-login-screen-sound/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=remove-karmic-ubuntu-910-login-screen-sound</link>
		<comments>http://nuclear-imaging.info/site_content/2009/11/03/remove-karmic-ubuntu-910-login-screen-sound/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:00:54 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[login screen]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=307</guid>
		<description><![CDATA[The GDM in Ubuntu changed a bit since Karmic. Now you no longer need to type in both username and password. Instead there is a list of users that shows up, similar to what we have in Windows and Mac. That way you don&#8217;t accidentally type in the password when you are supposed to be <a href='http://nuclear-imaging.info/site_content/2009/11/03/remove-karmic-ubuntu-910-login-screen-sound/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The GDM in Ubuntu changed a bit since Karmic. Now you no longer need to type in both username and password. Instead there is a list of users that shows up, similar to what we have in Windows and Mac. That way you don&#8217;t accidentally type in the password when you are supposed to be typing your user name. While this is a really nice way to login, Ubuntu added a drum sound which plays each time you arrive at the login screen &#8211; this can be when a user logs out or starts the computer. There is no simple way to disable that sound using GUI. There is however a simple command line which disables this login screen sound as lets you login silently.</p>
<p>If you are a sudoer, open up the terminal and type in:</p>
<blockquote><p>sudo -u gdm gconftool-2 &#8211;set /desktop/gnome/sound/event_sounds &#8211;type bool false</p></blockquote>
<p>The next time you logout, or restart the computer, the sound won&#8217;t be played again.</p>
<p>****</p>
<p>Update: The above methods doesn&#8217;t work for everyone. There have been a couple of other methods that have been known to work.</p>
<p>To actually disable the &#8220;login ready&#8221; sound you need to edit your /etc/gdm/custom.conf file.</p>
<blockquote><p>sudo gedit /etc/gdm/custom.conf</p></blockquote>
<p>Under the [greeter] section add the line:</p>
<blockquote><p>SoundOnLogin=false</p></blockquote>
<p>Another method that has worked for some is the removal of ubuntu-sounds package. This will remove all the event sounds as well, but your media should work just fine.</p>
<blockquote><p>sudo apt-get remove ubuntu-sounds</p></blockquote>
<p>These are some of the methods that have worked for several people. YMMV &#8211; unfortunately.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/11/03/remove-karmic-ubuntu-910-login-screen-sound/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Karmic Koala (Ubuntu 9.10) released</title>
		<link>http://nuclear-imaging.info/site_content/2009/10/29/karmic-koala-ubuntu-910-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=karmic-koala-ubuntu-910-released</link>
		<comments>http://nuclear-imaging.info/site_content/2009/10/29/karmic-koala-ubuntu-910-released/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:40:17 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[karmic koala]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=299</guid>
		<description><![CDATA[The snapshot before the LTS version of Ubuntu is out now! Karmic Koala would be supported for about another year after which one will have to upgrade to  Lucid Lynx, which would be coming out in April 2010, this the name Ubuntu 10.04 LTS. Karmic has been functional on my machines since Alpha 3 &#8211; <a href='http://nuclear-imaging.info/site_content/2009/10/29/karmic-koala-ubuntu-910-released/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The snapshot before the LTS version of Ubuntu is out now! Karmic Koala would be supported for about another year after which one will have to upgrade to  Lucid Lynx, which would be coming out in April 2010, this the name Ubuntu 10.04 LTS.</p>
<p>Karmic has been functional on my machines since Alpha 3 &#8211; so no surprises await me as of today. But I would be posting some observations and neat tricks that one can use with Karmic Koala and Ubuntu Linux in general.</p>
<p>The first trick is to use a torrent for downloading the .iso image instead of downloading it directly from some mirror. The advantage of doing that is that you get much faster download rates when using P2P networks for downloading the .iso image, this is especially true for a week since the release, since the mirrors literally crawl to a halt from all the traffic following the release.</p>
<p style="text-align: center;">
<div id="attachment_300" class="wp-caption aligncenter" style="width: 516px"><a href="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/10/karmicreleaseheader.jpg"><img class="size-full wp-image-300   " title="Karmic Koala (Ubuntu 9.10): Header used during release" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/10/karmicreleaseheader.jpg" alt="Karmic Koala (Ubuntu 9.10): Header used during release" width="506" height="113" /></a><p class="wp-caption-text">Karmic Koala (Ubuntu 9.10): Header used during release</p></div>
<p>The listing of all the torrents for Ubuntu 9.10 codenamed Karmic Koala can be found at:</p>
<p><a title="Karmic Koala bit torrent release amd64 server x86" href="http://www.ubuntu.com/getubuntu/downloadmirrors#bt" target="_blank">Karmic Koala (Ubuntu 9.10) : List of releases on bit torrent</a></p>
<p>If you come across some performance issues, you can always take your questions to <a title="Ubuntu Forums" href="http://ubuntuforums.org/" target="_blank">Ubuntu Forums</a>, where you can search if someone has already resolved that issue, and if not, post a query.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/10/29/karmic-koala-ubuntu-910-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kernel 2.6.31-1 arrives; breaks X</title>
		<link>http://nuclear-imaging.info/site_content/2009/07/01/kernel-2631-1-arrives-breaks-x/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kernel-2631-1-arrives-breaks-x</link>
		<comments>http://nuclear-imaging.info/site_content/2009/07/01/kernel-2631-1-arrives-breaks-x/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 02:05:04 +0000</pubDate>
		<dc:creator>slash_boot</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2.6.31-1]]></category>
		<category><![CDATA[karmic koala]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=264</guid>
		<description><![CDATA[The kernel 2.6.31-1 was on the list of upgrades in Ubuntu&#8217;s upcoming Karmic Koala release. The Koala is still in its Alpha 2 stage and almost all the other things usually go pretty well. However a kernel upgrade is always brings with it some uncertainty, some unexpected behaviour. While 2.6.31-1 marks a bigger shift in <a href='http://nuclear-imaging.info/site_content/2009/07/01/kernel-2631-1-arrives-breaks-x/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The kernel 2.6.31-1 was on the list of upgrades in Ubuntu&#8217;s upcoming Karmic Koala release. The Koala is still in its Alpha 2 stage and almost all the other things usually go pretty well. However a kernel upgrade is always brings with it some uncertainty, some unexpected behaviour.</p>
<p>While 2.6.31-1 marks a bigger shift in kernel structure from 2.6.30-10, the older one seemed to have started working correctly after having brought about the first Green Screen of Death while booting with Ubuntu Linux. There were a few kernel upgrades to the older one which overcame the issues, I guess in grub.</p>
<div id="attachment_268" class="wp-caption aligncenter" style="width: 586px"><img class="size-full wp-image-268" title="Grub Options for 2.6.31-1" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/07/dsc00468.jpg" alt="dsc00468" width="576" height="432" /><p class="wp-caption-text">Grub Options for 2.6.31-1</p></div>
<p style="text-align: center;">
<div id="attachment_269" class="wp-caption aligncenter" style="width: 586px"><img class="size-full wp-image-269" title="Ubuntu boots up until the stage where X starts" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/07/dsc00469.jpg" alt="Ubuntu boots up until the stage where X starts" width="576" height="432" /><p class="wp-caption-text">Ubuntu boots up until the stage where X starts</p></div>
<div id="attachment_270" class="wp-caption aligncenter" style="width: 586px"><img class="size-full wp-image-270" title="And then it drops to terminal" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/07/dsc00470.jpg" alt="And then it drops to terminal" width="576" height="432" /><p class="wp-caption-text">And then it drops to terminal</p></div>
<p style="text-align: center;">
<div id="attachment_271" class="wp-caption aligncenter" style="width: 586px"><img class="size-full wp-image-271" title="...with a screen pop-up showing failed X loading notification" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/07/dsc00471.jpg" alt="...with a screen pop-up showing failed X loading notification" width="576" height="432" /><p class="wp-caption-text">...with a screen pop-up showing failed X loading notification</p></div>
<p>Today&#8217;s upgrade to 2.6.31-1 was able to go past the grub stage and when the loading was complete, the display failed to load X. There was also some nvidia drivier update which might have destabilized the X, but apparently the X seems to be working correctly when I choose the older kernel at grub. So there must be some sort of a compatibility issue with the new nvidia update and the latest kernel.</p>
<p>This being the Alpha release, many packages are updated daily. It&#8217;s quite likely that a kernel patch would soon be out to make it play well with the nvidia driver. But so far, the easiest way to get X loaded is to boot using the older kernel, 2.6.30-10.</p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/07/01/kernel-2631-1-arrives-breaks-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kernel 2.6.30-10: Green Screen Of Death</title>
		<link>http://nuclear-imaging.info/site_content/2009/06/24/kernel-263010-green-screen-of-death/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kernel-263010-green-screen-of-death</link>
		<comments>http://nuclear-imaging.info/site_content/2009/06/24/kernel-263010-green-screen-of-death/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 16:54:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux and OSS]]></category>
		<category><![CDATA[green screen of death]]></category>
		<category><![CDATA[gsod]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[kernel 2.6.30-10]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nuclear-imaging.info/site_content/?p=221</guid>
		<description><![CDATA[The upcoming release of Ubuntu 9.10 (Karmic Koala) is in its Alpha 2 stage at the moment. One outcome of having an alpha released installed on your machine is the massive amounts of daily updates &#8211; with a major kernel update every once in a while. Things were going pretty smooth with the Karmic Koala <a href='http://nuclear-imaging.info/site_content/2009/06/24/kernel-263010-green-screen-of-death/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>The upcoming release of Ubuntu 9.10 (Karmic Koala) is in its Alpha 2 stage at the moment. One outcome of having an alpha released installed on your machine is the massive amounts of daily updates &#8211; with a major kernel update every once in a while. Things were going pretty smooth with the Karmic Koala until it was on 2.6.30-9 kernel.</p>
<p>Just this morning, there were a bunch of updates listed in the update manager. Among the things that were in line for the upgrade was a brand new kernel, 2.6.30-10. The updating process itself went pretty well. Then when it was time to restart, I picked the newly updated kernel from the Grub expecting nothing unusual.</p>
<p style="text-align: center;">
<div id="attachment_222" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-222" title="Grub options for Karmic Koala: 2.6.30.10" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/06/karmic_grub-300x225.jpg" alt="Booting options after updating to kernel 2.6.30.10" width="300" height="225" /><p class="wp-caption-text">Booting options after updating to kernel 2.6.30-10</p></div>
<p>After selecting Kernel 2.6.30-10, all I got was a green screen and the computer refused to do anything past that point. The only alternative was to restart and boot with the 2.6.30-9 kernel which I am currently using to make this post.</p>
<p style="text-align: left;">
<div id="attachment_223" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-223" title="Karmic Koala: Green Screen of Death" src="http://nuclear-imaging.info/site_content/wp-content/uploads/2009/06/karmic_gsod-300x225.jpg" alt="Ubuntu Karmic Koala (Kernel 2.6.30.10): Green Screen Of Death" width="300" height="225" /><p class="wp-caption-text">Ubuntu Karmic Koala (Kernel 2.6.30-10): Green Screen Of Death</p></div>
<p>It not something one sees that often with Linux distros. I saw it today!</p>
<p><span style="color: #339966;">P.S.: The newer kernel 2.6.30-10 has been fixed. It boots and functions normally now.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://nuclear-imaging.info/site_content/2009/06/24/kernel-263010-green-screen-of-death/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

