<?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>Ketan&#039;s Musings &#187; Ubuntu</title>
	<atom:link href="http://ketan.padegaonkar.name/category/open-source/ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://ketan.padegaonkar.name</link>
	<description>Where he blogs about his eclipse musings</description>
	<lastBuildDate>Sat, 26 Feb 2011 18:24:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Run JRuby From Within A Jar And Package Your Own Gems Along</title>
		<link>http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html</link>
		<comments>http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html#comments</comments>
		<pubDate>Fri, 10 Apr 2009 03:50:35 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[experiences]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[eclipse-meets-jruby]]></category>
		<category><![CDATA[jruby]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/?p=323</guid>
		<description><![CDATA[Jruby-in a jar already bundles rspec and rake, so the goal was to find out where it gets packaged. Download the jruby source zip, extract it and open the build.xml file, search for &#8220;rspec&#8221; (there&#8217;s two occurences) and you&#8217;ll find that it&#8217;s passed in as an argument to the gem installer, add in another line [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dist.codehaus.org/jruby/1.2.0/jruby-complete-1.2.0.jar">Jruby-in a jar</a> already bundles <a href="http://rspec.info/">rspec</a> and <a href="http://rake.rubyforge.org/">rake</a>, so the goal was to find out where it gets packaged.</p>
<p>Download the <a href="http://dist.codehaus.org/jruby/1.2.0/jruby-src-1.2.0.zip">jruby source zip</a>, extract it and open the build.xml file, search for &#8220;rspec&#8221; (there&#8217;s two occurences) and you&#8217;ll find that it&#8217;s passed in as an argument to the gem installer, add in another line with &#8220;cucumber&#8221;:</p>
<pre>
&lt;target name="install-gems"&gt;
  &lt;property name="jruby.home" value="${basedir}"/&gt;
  &lt;java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true"&gt;
    &lt;classpath refid="build.classpath"/&gt;
    &lt;classpath path="${jruby.classes.dir}"/&gt;
    &lt;sysproperty key="jruby.home" value="${jruby.home}"/&gt;
    &lt;arg value="--command"/&gt;
    &lt;arg value="maybe_install_gems"/&gt;
    &lt;arg value="rspec"/&gt;
    &lt;arg value="rake"/&gt;
    <b>&lt;arg value="cucumber"/&gt; &lt;!-- add cucumber --&gt;</b>
    &lt;arg value="--env-shebang"/&gt;
  &lt;/java&gt;
&lt;/target&gt;
</pre>
<p>Then run ant:</p>
<pre><b>$ ant jar-complete</b></pre>
<p>To verify that everything is fine:</p>
<pre>$ <b>java -jar lib/jruby-complete.jar -S gem list</b>

*** LOCAL GEMS ***

builder (2.1.2)
cucumber (0.2.3)
diff-lcs (1.1.2)
polyglot (0.2.5)
rake (0.8.4)
rspec (1.2.2)
sources (0.0.1)
term-ansicolor (1.0.3)
treetop (1.2.5)</pre>
<p>Great we&#8217;ve now managed to package jruby-in-a-jar with some additional gems. Now to run <a href="http://ketan.padegaonkar.name/2009/04/10/cucumber-on-jruby-inside-eclipse.html">cucumber on jruby in eclipse</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash Player on 64-bit FireFox on Linux</title>
		<link>http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html</link>
		<comments>http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html#comments</comments>
		<pubDate>Wed, 01 Aug 2007 08:37:45 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[experiences]]></category>
		<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash-player]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nspluginwrapper]]></category>
		<category><![CDATA[sun-microsystems]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html</guid>
		<description><![CDATA[Here&#8217;s how to get your firefox running on a 64 bit Linux machine to work with 32 bit plugins. I&#8217;ve tried this with gentoo, it should work with ubuntu or kubuntu or any other distro of your choice. Download and install nspluginwrapper from http://gwenole.beauchesne.info/projects/nspluginwrapper/. For ubuntu, there are some instructions on how to do this [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to get your firefox running on a 64 bit Linux machine to work with 32 bit plugins. I&#8217;ve tried this with gentoo, it should work with ubuntu or kubuntu or any other distro of your choice.</p>
<p>Download and install nspluginwrapper from <a href="http://gwenole.beauchesne.info/projects/nspluginwrapper/">http://gwenole.beauchesne.info/projects/nspluginwrapper/</a>.</p>
<p>For ubuntu, there are some instructions on how to do this here (<a href="http://ubuntuforums.org/showthread.php?t=341727">http://ubuntuforums.org/showthread.php?t=341727</a>). On gentoo I had to
<pre> #emerge nspluginwrapper</pre>
<p>Download the flash installer from the website here: <a href="http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz">http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz</a>. Untar the installer:</p>
<pre>$ tar -zxvf install_flash_player_9_linux.tar.gz</pre>
<p>Step into the installer directory:</p>
<pre>cd install_flash_player_9_linux</pre>
<p>Edit the installer file:</p>
<pre>vi flashplayer-installer #use nano or gedit if you like</pre>
<p>Navigate to line 47 (this inside the function exit_cpu) and comment out the line that says exit 1.</p>
<pre># the architecture is not supported
exit_cpu () {
  echo ""
  echo "ERROR: Your architecture, \'$1\', is not supported by the"
  echo "       $PRODUCT installer."
  echo ""
  #exit 1   # this was line 47
}</pre>
<p>Install the flash plugin, I used the default paths, you can choose the paths according to what you have on your computer (I used /home/ketan/.mozilla)</p>
<pre>./flashplayer-installer</pre>
<p>Now verify that the plugin actually got installed in the directory that you specified</p>
<pre>$ ls /home/ketan/.mozilla/plugins</pre>
<p>Use nspluginwrapper to create a 64-bit wrapper around this 32 bit plugin. (thanks to <a href="#comment-1037">Lance</a> for a typo update)</p>
<pre>$ nspluginwrapper -i /home/ketan/.mozilla/plugins/libflashplayer.so</pre>
<p>Now restart firefox, that should get you to run firefox with flash player.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Flash+Player+on+64-bit+FireFox+on+Linux&amp;link=http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html&amp;notes=Here%27s%20how%20to%20get%20your%20firefox%20running%20on%20a%2064%20bit%20Linux%20machine%20to%20work%20with%2032%20bit%20plugins.%20I%27ve%20tried%20this%20with%20gentoo%2C%20it%20should%20work%20with%20ubuntu%20or%20kubuntu%20or%20any%20other%20distro%20of%20your%20choice.%0A%0ADownload%20and%20install%20nspluginwrapper%20from%20http%3A%2F%2Fgwenole.beauchesne.info%2Fprojects%2Fnspluginwrapper%2F.%0A%0AF&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Flash+Player+on+64-bit+FireFox+on+Linux&amp;link=http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html&amp;notes=Here%27s%20how%20to%20get%20your%20firefox%20running%20on%20a%2064%20bit%20Linux%20machine%20to%20work%20with%2032%20bit%20plugins.%20I%27ve%20tried%20this%20with%20gentoo%2C%20it%20should%20work%20with%20ubuntu%20or%20kubuntu%20or%20any%20other%20distro%20of%20your%20choice.%0A%0ADownload%20and%20install%20nspluginwrapper%20from%20http%3A%2F%2Fgwenole.beauchesne.info%2Fprojects%2Fnspluginwrapper%2F.%0A%0AF&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Flash+Player+on+64-bit+FireFox+on+Linux&amp;link=http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html&amp;notes=Here%27s%20how%20to%20get%20your%20firefox%20running%20on%20a%2064%20bit%20Linux%20machine%20to%20work%20with%2032%20bit%20plugins.%20I%27ve%20tried%20this%20with%20gentoo%2C%20it%20should%20work%20with%20ubuntu%20or%20kubuntu%20or%20any%20other%20distro%20of%20your%20choice.%0A%0ADownload%20and%20install%20nspluginwrapper%20from%20http%3A%2F%2Fgwenole.beauchesne.info%2Fprojects%2Fnspluginwrapper%2F.%0A%0AF&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Flash+Player+on+64-bit+FireFox+on+Linux&amp;link=http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html&amp;notes=Here%27s%20how%20to%20get%20your%20firefox%20running%20on%20a%2064%20bit%20Linux%20machine%20to%20work%20with%2032%20bit%20plugins.%20I%27ve%20tried%20this%20with%20gentoo%2C%20it%20should%20work%20with%20ubuntu%20or%20kubuntu%20or%20any%20other%20distro%20of%20your%20choice.%0A%0ADownload%20and%20install%20nspluginwrapper%20from%20http%3A%2F%2Fgwenole.beauchesne.info%2Fprojects%2Fnspluginwrapper%2F.%0A%0AF&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Flash+Player+on+64-bit+FireFox+on+Linux&amp;link=http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html&amp;notes=Here%27s%20how%20to%20get%20your%20firefox%20running%20on%20a%2064%20bit%20Linux%20machine%20to%20work%20with%2032%20bit%20plugins.%20I%27ve%20tried%20this%20with%20gentoo%2C%20it%20should%20work%20with%20ubuntu%20or%20kubuntu%20or%20any%20other%20distro%20of%20your%20choice.%0A%0ADownload%20and%20install%20nspluginwrapper%20from%20http%3A%2F%2Fgwenole.beauchesne.info%2Fprojects%2Fnspluginwrapper%2F.%0A%0AF&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/08/01/flash-player-on-64-bit-firefox-on-linux.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Lotus Notes beta 8, and Eclipse</title>
		<link>http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html</link>
		<comments>http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html#comments</comments>
		<pubDate>Fri, 23 Mar 2007 04:31:07 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[experiences]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[lotus_notes]]></category>
		<category><![CDATA[osgi]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html</guid>
		<description><![CDATA[I saw this post by ZX on Lotus Notes 8 based on the Eclipse platform. ZX says: &#8230; In the end, this is great news for Eclipse which now gets to interact with a whole new set of users and developers. Eclipse (OSGi) on clients&#8230; devices&#8230; servers&#8230; , what&#8217;s next? &#8230; OSGi is great on [...]]]></description>
			<content:encoded><![CDATA[<p>I saw <a href="http://mea-bloga.blogspot.com/2007/03/eclipse-and-lotus-notes.html">this post</a> by <a href="http://mea-bloga.blogspot.com">ZX</a> on <a href="http://lotus.com">Lotus Notes</a> 8 based on the <a href="http://eclipse.org">Eclipse</a> platform.</p>
<p>ZX says:</p>
<blockquote><p>
&#8230;<br />
In the end, this is great news for Eclipse which now gets to interact with a whole new set of users and developers.</p>
<p>Eclipse (OSGi) on clients&#8230; devices&#8230; servers&#8230; , what&#8217;s next?<br />
&#8230;
</p></blockquote>
<p>OSGi is great on my desktop, laptop, servers, even mobile phones. But lotus notes based on OSGi ? I&#8217;m a die hard Eclipse fan and developer. But when it comes to usability of the software that I have to use everyday I&#8217;m a tough guy to convince.</p>
<p>For another potshot at this installer (for now) it is about 673 MB, is packaged as a .tar (Anyone at IBM lotus notes packaging team heard about something called as gzip/bzip2?) The documentation (which is about a total of 3MB) comes as a separate download. While it is a good idea to package the documentation separately I wonder if the installer comes with some documentation.</p>
<p>I just hope that I do not have to go through all these <a href="http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html">pains</a> and <a href="http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html">musings</a> and <a href="http://ketan.padegaonkar.name/2007/03/22/some-more-rants-on-lotus-notes-70-on-ubuntu.html">some more pains</a> to install Lotus Notes 8. Especially after downloading something that is 673 MB.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Lotus+Notes+beta+8%2C+and+Eclipse&amp;link=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;notes=I%20saw%20this%20post%20by%20ZX%20on%20Lotus%20Notes%208%20based%20on%20the%20Eclipse%20platform.%0A%0AZX%20says%3A%0A%0A...%0AIn%20the%20end%2C%20this%20is%20great%20news%20for%20Eclipse%20which%20now%20gets%20to%20interact%20with%20a%20whole%20new%20set%20of%20users%20and%20developers.%0A%0AEclipse%20%28OSGi%29%20on%20clients...%20devices...%20servers...%20%2C%20what%27s%20next%3F%0A...%0A%0A%0AOSGi%20is%20great%20on%20my%20deskto&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Lotus+Notes+beta+8%2C+and+Eclipse&amp;link=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;notes=I%20saw%20this%20post%20by%20ZX%20on%20Lotus%20Notes%208%20based%20on%20the%20Eclipse%20platform.%0A%0AZX%20says%3A%0A%0A...%0AIn%20the%20end%2C%20this%20is%20great%20news%20for%20Eclipse%20which%20now%20gets%20to%20interact%20with%20a%20whole%20new%20set%20of%20users%20and%20developers.%0A%0AEclipse%20%28OSGi%29%20on%20clients...%20devices...%20servers...%20%2C%20what%27s%20next%3F%0A...%0A%0A%0AOSGi%20is%20great%20on%20my%20deskto&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Lotus+Notes+beta+8%2C+and+Eclipse&amp;link=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;notes=I%20saw%20this%20post%20by%20ZX%20on%20Lotus%20Notes%208%20based%20on%20the%20Eclipse%20platform.%0A%0AZX%20says%3A%0A%0A...%0AIn%20the%20end%2C%20this%20is%20great%20news%20for%20Eclipse%20which%20now%20gets%20to%20interact%20with%20a%20whole%20new%20set%20of%20users%20and%20developers.%0A%0AEclipse%20%28OSGi%29%20on%20clients...%20devices...%20servers...%20%2C%20what%27s%20next%3F%0A...%0A%0A%0AOSGi%20is%20great%20on%20my%20deskto&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Lotus+Notes+beta+8%2C+and+Eclipse&amp;link=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;notes=I%20saw%20this%20post%20by%20ZX%20on%20Lotus%20Notes%208%20based%20on%20the%20Eclipse%20platform.%0A%0AZX%20says%3A%0A%0A...%0AIn%20the%20end%2C%20this%20is%20great%20news%20for%20Eclipse%20which%20now%20gets%20to%20interact%20with%20a%20whole%20new%20set%20of%20users%20and%20developers.%0A%0AEclipse%20%28OSGi%29%20on%20clients...%20devices...%20servers...%20%2C%20what%27s%20next%3F%0A...%0A%0A%0AOSGi%20is%20great%20on%20my%20deskto&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Lotus+Notes+beta+8%2C+and+Eclipse&amp;link=http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html&amp;notes=I%20saw%20this%20post%20by%20ZX%20on%20Lotus%20Notes%208%20based%20on%20the%20Eclipse%20platform.%0A%0AZX%20says%3A%0A%0A...%0AIn%20the%20end%2C%20this%20is%20great%20news%20for%20Eclipse%20which%20now%20gets%20to%20interact%20with%20a%20whole%20new%20set%20of%20users%20and%20developers.%0A%0AEclipse%20%28OSGi%29%20on%20clients...%20devices...%20servers...%20%2C%20what%27s%20next%3F%0A...%0A%0A%0AOSGi%20is%20great%20on%20my%20deskto&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/03/23/lotus-notes-beta-8-and-eclipse.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Musings on installing Lotus Notes 7.0</title>
		<link>http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html</link>
		<comments>http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html#comments</comments>
		<pubDate>Thu, 08 Mar 2007 05:53:40 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lotus_notes]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html</guid>
		<description><![CDATA[The Important Disclaimer: ALL VIEWS POSTED IN THIS PARTICULAR ENTRY ARE THAT OF MY OWN AND DO NOT (NECESSARILY) REFLECT THE OPINIONS OF MY EMPLOYER. That said, this is in addition to a HOWTO on installing the Lotus Notes 7.0 Client on Ubuntu. I&#8217;d rather that a very popular lotus notes fan tell you more [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Important Disclaimer:</strong> ALL VIEWS POSTED IN THIS PARTICULAR ENTRY ARE THAT OF MY OWN AND DO NOT (NECESSARILY) REFLECT THE OPINIONS OF MY EMPLOYER.</p>
<p>That said, this is in addition to a <a href="http://ketan.padegaonkar.name/tag/howto">HOWTO</a> on <a href="http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html">installing the Lotus Notes 7.0 Client on Ubuntu</a>.</p>
<p>I&#8217;d rather that a <a href="http://lotusnotessucks.4t.com/">very popular lotus notes fan</a> tell you more on why lotus notes is a great tool! What I focus here is on some inside stuff that I figured while installing the lotus notes client on my laptop. Stuff that could have possibly been done in a far better way.</p>
<p>I did this merely as an &#8220;educational exercise&#8221; to understand if it would be possible to fool the installer into thinking that all is fine, so that it can go ahead installing lotus notes. To give you a brief about how the installer works:<br />
<span id="more-148"></span><br />
The installer is a statically linked binary that extracts a jvm and an installer jar with some parameters, and then deletes the jvm and the jar on finishing. When the installer was running, I copied the jar to another location, extracted it, decompiled the classes inside. A quick grep on the error message, and I got to the java class where the installer &#8220;detects&#8221; the mozilla version (and fails).</p>
<p>Here are some things that the installer was doing in more or less the same order:<br />
1. Check the existence of /etc/gre.conf or /etc/gre.d/gre.conf<br />
2. Read the file, and check that there&#8217;s a line of the form [majorVersion.minorVersion.patchNumber]<br />
3. Verify that majorVersion.minorVersion &gt; 1.4<br />
4. Find out where GRE_PATH for this particular version points (this is the directory where mozilla resides, in my case /usr/lib/mozilla)<br />
5. Generate the following script:<br />
<code><br />
#!/bin/sh<br />
ldd "/usr/lib/mozilla/libgtkembedmoz.so" | grep gtk&gt;&amp;/tmp/iwcttmp.out     #ldd prints shared library dependencies<br />
</code><br />
6. Execute the script.<br />
7. Read the file /tmp/iwcttmp.out.<br />
8. Verify that it contains the string &#8220;libgtk-x11-2.0.so.0&#8243; (WTH, one may say)<br />
9. In case any of the above steps fail show the famous error message <img src='http://ketan.padegaonkar.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now here&#8217;s the glitch.<br />
1. I&#8217;d got the right version of mozilla (1.7.13 which is &gt; 1.4).<br />
2. I had libmotif3 (as specified by a support page at IBM lotus notes).<br />
3. I had got libgtk1.2 installed (as required by the installer)<br />
4. I verified that libgtk-x11-2.0.so.0, really does exist (it did)</p>
<p>Having verified all the above, why did the script fail ?</p>
<p>I&#8217;ll tell you why <img src='http://ketan.padegaonkar.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<code><strong>/bin/sh</strong></code> is linked to a minimalist shell called <a href="https://launchpad.net/ubuntu/+spec/dash-as-bin-sh">dash</a> on Ubuntu. And the line <code><strong>ldd "/usr/lib/mozilla/libgtkembedmoz.so" | grep gtk&gt;&amp;/tmp/iwcttmp.out</strong></code> does not work with dash. Anyone heard about posix compliance ?</p>
<p>Now that is the reason why you need to uninstall dash, and install bash in order to get lotus notes 7.0 installed !</p>
<p>End of class.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Musings+on+installing+Lotus+Notes+7.0&amp;link=http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html&amp;notes=The%20Important%20Disclaimer%3A%20ALL%20VIEWS%20POSTED%20IN%20THIS%20PARTICULAR%20ENTRY%20ARE%20THAT%20OF%20MY%20OWN%20AND%20DO%20NOT%20%28NECESSARILY%29%20REFLECT%20THE%20OPINIONS%20OF%20MY%20EMPLOYER.%0A%0AThat%20said%2C%20this%20is%20in%20addition%20to%20a%20HOWTO%20on%20installing%20the%20Lotus%20Notes%207.0%20Client%20on%20Ubuntu.%0A%0AI%27d%20rather%20that%20a%20very%20popular%20lotus%20notes%20fan%20tell%20you&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Musings+on+installing+Lotus+Notes+7.0&amp;link=http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html&amp;notes=The%20Important%20Disclaimer%3A%20ALL%20VIEWS%20POSTED%20IN%20THIS%20PARTICULAR%20ENTRY%20ARE%20THAT%20OF%20MY%20OWN%20AND%20DO%20NOT%20%28NECESSARILY%29%20REFLECT%20THE%20OPINIONS%20OF%20MY%20EMPLOYER.%0A%0AThat%20said%2C%20this%20is%20in%20addition%20to%20a%20HOWTO%20on%20installing%20the%20Lotus%20Notes%207.0%20Client%20on%20Ubuntu.%0A%0AI%27d%20rather%20that%20a%20very%20popular%20lotus%20notes%20fan%20tell%20you&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Musings+on+installing+Lotus+Notes+7.0&amp;link=http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html&amp;notes=The%20Important%20Disclaimer%3A%20ALL%20VIEWS%20POSTED%20IN%20THIS%20PARTICULAR%20ENTRY%20ARE%20THAT%20OF%20MY%20OWN%20AND%20DO%20NOT%20%28NECESSARILY%29%20REFLECT%20THE%20OPINIONS%20OF%20MY%20EMPLOYER.%0A%0AThat%20said%2C%20this%20is%20in%20addition%20to%20a%20HOWTO%20on%20installing%20the%20Lotus%20Notes%207.0%20Client%20on%20Ubuntu.%0A%0AI%27d%20rather%20that%20a%20very%20popular%20lotus%20notes%20fan%20tell%20you&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Musings+on+installing+Lotus+Notes+7.0&amp;link=http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html&amp;notes=The%20Important%20Disclaimer%3A%20ALL%20VIEWS%20POSTED%20IN%20THIS%20PARTICULAR%20ENTRY%20ARE%20THAT%20OF%20MY%20OWN%20AND%20DO%20NOT%20%28NECESSARILY%29%20REFLECT%20THE%20OPINIONS%20OF%20MY%20EMPLOYER.%0A%0AThat%20said%2C%20this%20is%20in%20addition%20to%20a%20HOWTO%20on%20installing%20the%20Lotus%20Notes%207.0%20Client%20on%20Ubuntu.%0A%0AI%27d%20rather%20that%20a%20very%20popular%20lotus%20notes%20fan%20tell%20you&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Musings+on+installing+Lotus+Notes+7.0&amp;link=http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html&amp;notes=The%20Important%20Disclaimer%3A%20ALL%20VIEWS%20POSTED%20IN%20THIS%20PARTICULAR%20ENTRY%20ARE%20THAT%20OF%20MY%20OWN%20AND%20DO%20NOT%20%28NECESSARILY%29%20REFLECT%20THE%20OPINIONS%20OF%20MY%20EMPLOYER.%0A%0AThat%20said%2C%20this%20is%20in%20addition%20to%20a%20HOWTO%20on%20installing%20the%20Lotus%20Notes%207.0%20Client%20on%20Ubuntu.%0A%0AI%27d%20rather%20that%20a%20very%20popular%20lotus%20notes%20fan%20tell%20you&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/03/08/musings-on-installing-lotus-notes-70.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HOWTO: Installing Lotus Notes 7.0 on Ubuntu</title>
		<link>http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html</link>
		<comments>http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html#comments</comments>
		<pubDate>Wed, 07 Mar 2007 07:53:57 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lotus_notes]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html</guid>
		<description><![CDATA[This morning I tried installing Lotus Notes 7.0 on Ubuntu Edgy-Eft. I ran into the notoriously infamous &#8220;Could not validate mozilla version&#8221; message, that I&#8217;d seen a lot of times before. In case you also run into this problem. Here&#8217;s a howto to get you out: Note: These steps are to be run as root [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I tried installing Lotus Notes 7.0 on Ubuntu Edgy-Eft.</p>
<p>I ran into the notoriously infamous &#8220;Could not validate mozilla version&#8221; message, that I&#8217;d seen a lot of times before. In case you also run into this problem. Here&#8217;s a howto to get you out:</p>
<h5>Note: These steps are to be run as root</h5>
<p>1. Install libmotif3:<br />
<code><strong>sudo apt-get install libmotif3</strong></code></p>
<p>2. Install gtk1.2:<br />
<code><strong>sudo apt-get install libgtk1.2</strong></code></p>
<p>3. Remove dash:<br />
<code><strong>sudo apt-get remove dash</strong></code></p>
<p>4. Create a location where you want to install Lotus Notes:<br />
<code><strong>sudo mkdir -p "/opt/IBM/Workplace Managed Client/"</strong></code></p>
<p>5. Make this directory writable by you:<br />
<code><strong>sudo chown ketan.ketan "/opt/IBM/Workplace Managed Client/"</strong></code></p>
<h5>Note: None of these steps are to be performed as root</h5>
<p>1. Extract the Lotus Notes package:<br />
<code><strong>unzip /opt/downloads/C93D1NA.zip -d notes</strong></code></p>
<p>2. Change into the directory where you just extracted notes:<br />
<code><strong>cd notes</strong></code></p>
<p>3. Extract the Lotus Notes installer:<br />
<code><strong>unzip Personality.zip</strong></code></p>
<p>4. Change some file permissions:<br />
<code><strong>chmod 755 setuplinux.bin setup_wct_platform.bin</strong></code></p>
<p>5. Copy the setup file to the correct location:<br />
<code><strong>cp setuplinux.bin updateSite/features/com.ibm.workplace.notesinstall.linux.feature_7.0.1.0000-0900/bin/linux</strong></code></p>
<p>6. Now we are all set up to install:<br />
<code><strong>./setup_wct_platform.bin</strong></code></p>
<p>That should be able to get you through the installer. Add a comment on this entry in case you are unable to get things done.</p>
<p>Update on 23rd March, 2007: <a href="http://ketan.padegaonkar.name/2007/03/22/some-more-rants-on-lotus-notes-70-on-ubuntu.html">Does lotus notes not work even after these instructions</a> ?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=HOWTO%3A+Installing+Lotus+Notes+7.0+on+Ubuntu&amp;link=http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html&amp;notes=This%20morning%20I%20tried%20installing%20Lotus%20Notes%207.0%20on%20Ubuntu%20Edgy-Eft.%0A%0AI%20ran%20into%20the%20notoriously%20infamous%20%22Could%20not%20validate%20mozilla%20version%22%20message%2C%20that%20I%27d%20seen%20a%20lot%20of%20times%20before.%20In%20case%20you%20also%20run%20into%20this%20problem.%20Here%27s%20a%20howto%20to%20get%20you%20out%3A%0A%0A%0ANote%3A%20These%20steps%20are%20to%20be%20run%20as%20root&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=HOWTO%3A+Installing+Lotus+Notes+7.0+on+Ubuntu&amp;link=http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html&amp;notes=This%20morning%20I%20tried%20installing%20Lotus%20Notes%207.0%20on%20Ubuntu%20Edgy-Eft.%0A%0AI%20ran%20into%20the%20notoriously%20infamous%20%22Could%20not%20validate%20mozilla%20version%22%20message%2C%20that%20I%27d%20seen%20a%20lot%20of%20times%20before.%20In%20case%20you%20also%20run%20into%20this%20problem.%20Here%27s%20a%20howto%20to%20get%20you%20out%3A%0A%0A%0ANote%3A%20These%20steps%20are%20to%20be%20run%20as%20root&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=HOWTO%3A+Installing+Lotus+Notes+7.0+on+Ubuntu&amp;link=http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html&amp;notes=This%20morning%20I%20tried%20installing%20Lotus%20Notes%207.0%20on%20Ubuntu%20Edgy-Eft.%0A%0AI%20ran%20into%20the%20notoriously%20infamous%20%22Could%20not%20validate%20mozilla%20version%22%20message%2C%20that%20I%27d%20seen%20a%20lot%20of%20times%20before.%20In%20case%20you%20also%20run%20into%20this%20problem.%20Here%27s%20a%20howto%20to%20get%20you%20out%3A%0A%0A%0ANote%3A%20These%20steps%20are%20to%20be%20run%20as%20root&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=HOWTO%3A+Installing+Lotus+Notes+7.0+on+Ubuntu&amp;link=http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html&amp;notes=This%20morning%20I%20tried%20installing%20Lotus%20Notes%207.0%20on%20Ubuntu%20Edgy-Eft.%0A%0AI%20ran%20into%20the%20notoriously%20infamous%20%22Could%20not%20validate%20mozilla%20version%22%20message%2C%20that%20I%27d%20seen%20a%20lot%20of%20times%20before.%20In%20case%20you%20also%20run%20into%20this%20problem.%20Here%27s%20a%20howto%20to%20get%20you%20out%3A%0A%0A%0ANote%3A%20These%20steps%20are%20to%20be%20run%20as%20root&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=HOWTO%3A+Installing+Lotus+Notes+7.0+on+Ubuntu&amp;link=http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html&amp;notes=This%20morning%20I%20tried%20installing%20Lotus%20Notes%207.0%20on%20Ubuntu%20Edgy-Eft.%0A%0AI%20ran%20into%20the%20notoriously%20infamous%20%22Could%20not%20validate%20mozilla%20version%22%20message%2C%20that%20I%27d%20seen%20a%20lot%20of%20times%20before.%20In%20case%20you%20also%20run%20into%20this%20problem.%20Here%27s%20a%20howto%20to%20get%20you%20out%3A%0A%0A%0ANote%3A%20These%20steps%20are%20to%20be%20run%20as%20root&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/03/07/howto-installing-lotus-notes-70-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Redhat, SuSE, Ubuntu</title>
		<link>http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html</link>
		<comments>http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html#comments</comments>
		<pubDate>Tue, 22 Aug 2006 09:17:54 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[suse]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/blog/2006/08/22/redhat-suse-ubuntu.html</guid>
		<description><![CDATA[An interesting google trend here. A search for redhat, suse, ubuntu on google trends revealed the following: redhat&#160;&#160;&#160;suse&#160;&#160;&#160;ubuntu&#160;&#160;&#160; &#160; Top&#160;regions&#160;(normalized) &#160; &#160; 1. India &#160; 2. Indonesia &#160; 3. Hong Kong &#160; 4. Malaysia &#160; 5. Singapore &#160; 6. South Korea &#160; 7. Japan &#160; 8. Philippines &#160; 9. Taiwan &#160; 10. Thailand &#160; An [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting <a href="http://google.com/trends">google trend</a> here.</p>
<p>A search for <a href="http://google.com/trends?q=redhat%2C+suse%2C+ubuntu&amp;ctab=0&amp;geo=all&amp;date=all">redhat, suse, ubuntu</a> on google trends revealed the following:</p>
<p><strong><img src="http://ketan.padegaonkar.name/files/2006/08/dot1.gif" alt="blue dot" /><font color="#4684EE">redhat</font>&nbsp;&nbsp;&nbsp;<img src="http://ketan.padegaonkar.name/files/2006/08/dot2.gif" alt="red dot" /><font color="#DC3912">suse</font>&nbsp;&nbsp;&nbsp;<img src="http://ketan.padegaonkar.name/files/2006/08/dot3.gif" alt="orange dot" /><font color="#FF9900">ubuntu</font>&nbsp;&nbsp;&nbsp;</strong> <img src="http://ketan.padegaonkar.name/files/2006/08/rh-suse-ubuntu-trend.png" alt="rh-suse-ubuntu-trend" /></p>
<table width="500" class="list" cellpadding="2" cellspacing="0" style="vertical-align:middle">
<tr style="vertical-align:middle">
<td class="num">&nbsp;</td>
<td nowrap="nowrap"><font size="-1">Top&nbsp;regions&nbsp;</font><font color="#676767">(</font><a href='http://www.google.com/intl/en/trends/about.html#4'><font color="#7777CC">normalized</font></a><font color="#676767">)</font></td>
<td>&nbsp;</td>
<td width="100%">&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">1.</font>
      </td>
<td align="left"><font size="-1"><strong>India</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7" cellspacing="0" width="225">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="61">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="35">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">2.</font>
      </td>
<td align="left"><font size="-1"><strong>Indonesia</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="179">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="132">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="105">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">3.</font>
      </td>
<td align="left"><font size="-1"><strong>Hong Kong</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="170">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="54">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="44">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">4.</font>
      </td>
<td align="left"><font size="-1"><strong>Malaysia</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="156">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="104">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="75">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">5.</font>
      </td>
<td align="left"><font size="-1"><strong>Singapore</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="135">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="71">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="65">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">6.</font>
      </td>
<td align="left"><font size="-1"><strong>South Korea</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="126">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="35">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="61">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">7.</font>
      </td>
<td align="left"><font size="-1"><strong>Japan</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="106">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="27">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="8">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">8.</font>
      </td>
<td align="left"><font size="-1"><strong>Philippines</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="101">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="60">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="105">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">9.</font>
      </td>
<td align="left"><font size="-1"><strong>Taiwan</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="97">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="37">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="31">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
<tr style="vertical-align:middle">
<td align="right" class="num"><font size="-1">10.</font>
      </td>
<td align="left"><font size="-1"><strong>Thailand</strong></font>
      </td>
<td>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="62">
<tr>
<td style="background-color:#4684ee">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="16">
<tr>
<td style="background-color:#dc3912">
            </td>
</tr>
</table>
<table style="padding: 0;border-top: 1px solid #E8EEF7;height:6" cellspacing="0" width="19">
<tr>
<td style="background-color:#ff9900">
            </td>
</tr>
</table>
</td>
<td>&nbsp;</td>
</tr>
</table>
<p>An interesting observation here is that most of the hits for popular distros comes from developing countries, where the piracy level is very high.<br />
  <!-- http://www.freesoftwaremagazine.com/articles/editorial_13 --></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Redhat%2C+SuSE%2C+Ubuntu&amp;link=http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html&amp;notes=An%20interesting%20google%20trend%20here.%0A%0AA%20search%20for%20redhat%2C%20suse%2C%20ubuntu%20on%20google%20trends%20revealed%20the%20following%3A%0A%0Aredhat%26nbsp%3B%26nbsp%3B%26nbsp%3Bsuse%26nbsp%3B%26nbsp%3B%26nbsp%3Bubuntu%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%0A%0A%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20Top%26nbsp%3Bregions%26nbsp%3B%28normalized%29%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%20%20%20%20%0A%0A%0A%09%0A%20%20%20%20%20%201.%0A%20%20%20%20%20%20%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Redhat%2C+SuSE%2C+Ubuntu&amp;link=http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html&amp;notes=An%20interesting%20google%20trend%20here.%0A%0AA%20search%20for%20redhat%2C%20suse%2C%20ubuntu%20on%20google%20trends%20revealed%20the%20following%3A%0A%0Aredhat%26nbsp%3B%26nbsp%3B%26nbsp%3Bsuse%26nbsp%3B%26nbsp%3B%26nbsp%3Bubuntu%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%0A%0A%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20Top%26nbsp%3Bregions%26nbsp%3B%28normalized%29%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%20%20%20%20%0A%0A%0A%09%0A%20%20%20%20%20%201.%0A%20%20%20%20%20%20%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Redhat%2C+SuSE%2C+Ubuntu&amp;link=http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html&amp;notes=An%20interesting%20google%20trend%20here.%0A%0AA%20search%20for%20redhat%2C%20suse%2C%20ubuntu%20on%20google%20trends%20revealed%20the%20following%3A%0A%0Aredhat%26nbsp%3B%26nbsp%3B%26nbsp%3Bsuse%26nbsp%3B%26nbsp%3B%26nbsp%3Bubuntu%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%0A%0A%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20Top%26nbsp%3Bregions%26nbsp%3B%28normalized%29%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%20%20%20%20%0A%0A%0A%09%0A%20%20%20%20%20%201.%0A%20%20%20%20%20%20%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Redhat%2C+SuSE%2C+Ubuntu&amp;link=http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html&amp;notes=An%20interesting%20google%20trend%20here.%0A%0AA%20search%20for%20redhat%2C%20suse%2C%20ubuntu%20on%20google%20trends%20revealed%20the%20following%3A%0A%0Aredhat%26nbsp%3B%26nbsp%3B%26nbsp%3Bsuse%26nbsp%3B%26nbsp%3B%26nbsp%3Bubuntu%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%0A%0A%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20Top%26nbsp%3Bregions%26nbsp%3B%28normalized%29%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%20%20%20%20%0A%0A%0A%09%0A%20%20%20%20%20%201.%0A%20%20%20%20%20%20%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Redhat%2C+SuSE%2C+Ubuntu&amp;link=http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html&amp;notes=An%20interesting%20google%20trend%20here.%0A%0AA%20search%20for%20redhat%2C%20suse%2C%20ubuntu%20on%20google%20trends%20revealed%20the%20following%3A%0A%0Aredhat%26nbsp%3B%26nbsp%3B%26nbsp%3Bsuse%26nbsp%3B%26nbsp%3B%26nbsp%3Bubuntu%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%0A%0A%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20Top%26nbsp%3Bregions%26nbsp%3B%28normalized%29%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%0A%20%20%20%20%20%20%26nbsp%3B%0A%20%20%20%20%0A%0A%0A%09%0A%20%20%20%20%20%201.%0A%20%20%20%20%20%20%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2006/08/22/redhat-suse-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu gets installed on billboards</title>
		<link>http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html</link>
		<comments>http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html#comments</comments>
		<pubDate>Tue, 22 Aug 2006 08:01:47 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/blog/2006/08/22/ubuntu-gets-installed-on-billboards.html</guid>
		<description><![CDATA[This is an interesting piece of news: http://www.desktoplinux.com/news/NS6074124162.html Post on Google Buzz Share this on Reddit Tweet This! Share this on Facebook Add this to DZone Get Shareaholic]]></description>
			<content:encoded><![CDATA[<p>This is an interesting piece of news: <a href="http://www.desktoplinux.com/news/NS6074124162.html">http://www.desktoplinux.com/news/NS6074124162.html</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Ubuntu+gets+installed+on+billboards&amp;link=http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html&amp;notes=This%20is%20an%20interesting%20piece%20of%20news%3A%20http%3A%2F%2Fwww.desktoplinux.com%2Fnews%2FNS6074124162.html&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Ubuntu+gets+installed+on+billboards&amp;link=http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html&amp;notes=This%20is%20an%20interesting%20piece%20of%20news%3A%20http%3A%2F%2Fwww.desktoplinux.com%2Fnews%2FNS6074124162.html&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Ubuntu+gets+installed+on+billboards&amp;link=http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html&amp;notes=This%20is%20an%20interesting%20piece%20of%20news%3A%20http%3A%2F%2Fwww.desktoplinux.com%2Fnews%2FNS6074124162.html&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Ubuntu+gets+installed+on+billboards&amp;link=http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html&amp;notes=This%20is%20an%20interesting%20piece%20of%20news%3A%20http%3A%2F%2Fwww.desktoplinux.com%2Fnews%2FNS6074124162.html&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Ubuntu+gets+installed+on+billboards&amp;link=http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html&amp;notes=This%20is%20an%20interesting%20piece%20of%20news%3A%20http%3A%2F%2Fwww.desktoplinux.com%2Fnews%2FNS6074124162.html&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2006/08/22/ubuntu-gets-installed-on-billboards.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

