<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
>

<channel>
	<title>CeTly L!ve - College of Engineering Thalassery Live &#187; Open Source</title>
	<atom:link href="http://www.cetlylive.com/category/news/open-source-news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cetlylive.com</link>
	<description>College of Engineering Thalassery Official Campus Blog</description>
	<lastBuildDate>Tue, 07 Sep 2010 16:56:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<!-- podcast_generator="Blubrry PowerPress/1.0.9" mode="advanced" entry="normal" -->
	<itunes:summary>College of Engineering Thalassery Official Campus Blog</itunes:summary>
	<itunes:author>CeTly L!ve - College of Engineering Thalassery Live</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.cetlylive.com/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>College of Engineering Thalassery Official Campus Blog</itunes:subtitle>
	<image>
		<title>CeTly L!ve - College of Engineering Thalassery Live &#187; Open Source</title>
		<url>http://www.cetlylive.com/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://www.cetlylive.com/category/news/open-source-news/</link>
	</image>
		<item>
		<title>Changing 98 styles in VB 6.0 to XP style</title>
		<link>http://www.cetlylive.com/changing-98-styles-in-vb-6-0-to-xp-style/</link>
		<comments>http://www.cetlylive.com/changing-98-styles-in-vb-6-0-to-xp-style/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 18:31:09 +0000</pubDate>
		<dc:creator>shahul hameed</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[VB]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=2427</guid>
		<description><![CDATA[
			
				
			
		
<p>It is for VB porgrammers, especially for VB 6.0 programmers.Have you ever tried to change the style of VB 6.0 into XP style or other version of windows?
This is the simple way to change the style of .exe file that you created using VB 6.0.
Follow the instructions.
If your application name is &#8216;sample.exe&#8217; then create a <a href="http://www.cetlylive.com/changing-98-styles-in-vb-6-0-to-xp-style/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/changing-98-styles-in-vb-6-0-to-xp-style/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Fchanging-98-styles-in-vb-6-0-to-xp-style%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Fchanging-98-styles-in-vb-6-0-to-xp-style%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly&amp;hashtags=VB,XP" height="61" width="50" /><br />
			</a>
		</div>
<p>It is for VB porgrammers, especially for VB 6.0 programmers.Have you ever tried to change the style of VB 6.0 into XP style or other version of windows?<br />
This is the simple way to change the style of .exe file that you created using VB 6.0.<br />
Follow the instructions.<br />
If your application name is &#8216;sample.exe&#8217; then create a file sample.exe.manifest in<br />
your project directory.<br />
In that file , place the following code.</p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243; standalone=&#8221;yes&#8221; ?&gt;<br />
&lt;assembly xmlns=&#8221;urn:schemas-microsoft-com:asm.v1&#8243; manifestVersion=&#8221;1.0&#8243;&gt;<br />
&lt;assemblyIdentity<br />
version=&#8221;1.0.0.0&#8243;<br />
processorArchitecture=&#8221;X86&#8243;<br />
name=&#8221;CompanyName.ProductName.YourAppName&#8221;<br />
type=&#8221;win32&#8243; /&gt;<br />
&lt;description&gt;Your application description here&lt;/description&gt;<br />
&lt;dependency&gt;<br />
&lt;dependentAssembly&gt;<br />
&lt;assemblyIdentity<br />
type=&#8221;win32&#8243;<br />
name=&#8221;Microsoft.Windows.Common-Controls&#8221;<br />
version=&#8221;6.0.0.0&#8243;<br />
processorArchitecture=&#8221;X86&#8243;<br />
publicKeyToken=&#8221;6595b64144ccf1df&#8221;<br />
language=&#8221;*&#8221; /&gt;<br />
&lt;/dependentAssembly&gt;<br />
&lt;/dependency&gt;<br />
&lt;/assembly&gt;</p></blockquote>
<p>Your application description here</p>
<p>either add a &#8216;microsoft windows common controls 6.0&#8242; control ( for eg: slider) in the form<br />
( or)<br />
include the following code in the project:</p>
<blockquote><p>Private Type tagInitCommonControlsEx<br />
lngSize As Long<br />
lngICC As Long<br />
End Type<br />
Private Declare Function InitCommonControlsEx Lib &#8220;comctl32.dll&#8221; _<br />
(iccex As tagInitCommonControlsEx) As Boolean<br />
Private Const ICC_USEREX_CLASSES = &amp;H200</p>
<p>Public Function InitCommonControlsVB() As Boolean<br />
On Error Resume Next<br />
Dim iccex As tagInitCommonControlsEx<br />
&#8216; Ensure CC available:<br />
With iccex<br />
.lngSize = LenB(iccex)<br />
.lngICC = ICC_USEREX_CLASSES<br />
End With<br />
InitCommonControlsEx iccex<br />
InitCommonControlsVB = (Err.Number = 0)<br />
On Error Goto 0<br />
End Function</p>
<p>Public Sub Main()<br />
InitCommonControlsVB</p>
<p>&#8216;<br />
&#8216; Start your application here:<br />
&#8216;</p>
<p>End Sub</p></blockquote>
<p>now compile it and store the exe and manifest files in the same directory&#8230;<br />
It works..!</p>
<p>Thank you<br />
Shahul Hameed<br />
email:sinuxcreation@gmail.com</p>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=2427&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/changing-98-styles-in-vb-6-0-to-xp-style/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 (Lucid Lynx) PDF Guide</title>
		<link>http://www.cetlylive.com/ubuntu-10-04-lucid-lynx-pdf-guide/</link>
		<comments>http://www.cetlylive.com/ubuntu-10-04-lucid-lynx-pdf-guide/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 00:15:39 +0000</pubDate>
		<dc:creator>Mithun Madhusoodanan</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu 10.04]]></category>
		<category><![CDATA[ubuntu manual project]]></category>
		<category><![CDATA[ubuntu maual]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=2259</guid>
		<description><![CDATA[
			
				
			
		
<p>This guide is designed to be as user-friendly and easy to follow as  possible, it should provide the first point of reference to any Ubuntu  newcomer with lots of information. The manual has step by step instructions and includes lots of screenshots to show you how to do  tasks. It also includes <a href="http://www.cetlylive.com/ubuntu-10-04-lucid-lynx-pdf-guide/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/ubuntu-10-04-lucid-lynx-pdf-guide/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Fubuntu-10-04-lucid-lynx-pdf-guide%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Fubuntu-10-04-lucid-lynx-pdf-guide%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly&amp;hashtags=book,Open+Source,Ubuntu,ubuntu+10.04,ubuntu+manual+project,ubuntu+maual" height="61" width="50" /><br />
			</a>
		</div>
<p>This guide is designed to be as user-friendly and easy to follow as  possible, it should provide the first point of reference to any Ubuntu  newcomer with lots of information. The manual has step by step instructions and includes lots of screenshots to show you how to do  tasks. It also includes a Troubleshooting section to help you solve  common Ubuntu problems quickly. Download this 160+ page Lucid Lynx manual today.</p>
<h2>A Complete Beginner’s Manual for Ubuntu 10.04 (Lucid  Lynx)</h2>
<div>
<h2><a onclick="javascript:pageTracker._trackPageview('/outbound/article/ubuntugeek.tradepub.com');" href="http://ubuntugeek.tradepub.com/c/pubRD.mpl/?pc=w_ubun01" target="_blank"><br />
</a></h2>
<p><a onclick="javascript:pageTracker._trackPageview('/outbound/article/ubuntugeek.tradepub.com');" href="http://ubuntugeek.tradepub.com/c/pubRD.mpl/?pc=w_ubun01" target="_blank"><img src="http://img.nl00.net/tradepub/Images/w_ubun01_160.gif" border="0" alt="" width="160" height="198" /></a></p>
<p><a title="Ubuntu Manual" href="http://ubuntu-manual.org/" target="_blank">Get your Copy from Ubuntu-manual.org</a></p>
</div>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=2259&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/ubuntu-10-04-lucid-lynx-pdf-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GoogleCL</title>
		<link>http://www.cetlylive.com/googlecl/</link>
		<comments>http://www.cetlylive.com/googlecl/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 00:32:56 +0000</pubDate>
		<dc:creator>Mithun Madhusoodanan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[TechNews]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[goglecl]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=2218</guid>
		<description><![CDATA[
			
				
			
		
<p>GoogleCL is a project hosted under google codes to bring Google services to command line.</p>
<p>Currently support the following Google services:</p>
<p>* Blogger</p>
<p>
$ google blogger post &#8211;title &#8220;cetly&#8221; &#8220;testing googlecl&#8221; </p>
<p></p>
<p>* Calendar</p>
<p>
$ google calendar add &#8220;cetlylive&#8217;s birthday&#8221; </p>
<p></p>
<p>* Contacts</p>
<p>
$ google contacts list name,email &#62; contacts.csv </p>
<p></p>
<p>* Docs</p>
<p>
$ google docs edit &#8211;title &#8220;task for round1&#8243; </p>
<p></p>
<p>* Picasa*</p>
<p>
$ google <a href="http://www.cetlylive.com/googlecl/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/googlecl/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Fgooglecl%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Fgooglecl%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly&amp;hashtags=command+line,goglecl,Google,Ubuntu" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="code.google.com/p/googlecl/" href="http://" target="_blank">GoogleCL</a> is a project hosted under google codes to bring Google services to command line.</p>
<p>Currently support the following Google services:</p>
<p><strong>* Blogger</strong></p>
<p><em><br />
<blockquote>$ google blogger post &#8211;title &#8220;cetly&#8221; &#8220;testing googlecl&#8221; </p></blockquote>
<p></em></p>
<p><strong>* Calendar</strong></p>
<p><em><br />
<blockquote>$ google calendar add &#8220;cetlylive&#8217;s birthday&#8221; </p></blockquote>
<p></em></p>
<p><strong>* Contacts</strong></p>
<p><em><br />
<blockquote>$ google contacts list name,email &gt; contacts.csv </p></blockquote>
<p></em></p>
<p><strong>* Docs</strong></p>
<p><em><br />
<blockquote>$ google docs edit &#8211;title &#8220;task for round1&#8243; </p></blockquote>
<p></em></p>
<p><strong>* Picasa</strong>*</p>
<p><em><br />
<blockquote>$ google picasa create &#8211;title &#8220;Worldcup Photos&#8221; ~/photos/wc/*.jpg</p></blockquote>
<p> </em></p>
<p><strong>* Youtube</strong>*</p>
<p>
<blockquote>$ google youtube post &#8211;category wavin_flag.avi</p></blockquote>
<p><span style="text-decoration: underline;"><strong>Installing GoogleCL in ubuntu</strong></span></p>
<p>Open the terminal and run the following commands</p>
<blockquote><p>sudo apt-get install python-gdata</p>
<p>sudo dpkg -i  http://googlecl.googlecode.com/files/googlecl_0.9.5-1_all.deb</p>
</blockquote>
<p>Or you can get the tar/deb pakage from <a title="http://code.google.com/p/googlecl/downloads/list" href="http://" target="_blank">here</a></p>
<p>*(picassa and youtube requires your web browser to grand access forthe first time. After that, GoogleCL will cache an oauth token in a config directory so  that you don&#8217;t have to do this again)</p>
<p><span style="text-decoration: underline;">My test</span></p>
<p>In my test every service required web browser to grand access forthe first time. And there are number of bugs yet to be corrected</p>
<p><span style="text-decoration: underline;">Screenshot of Blogger post using googlecl is given below </span></p>
<p><a href="http://www.cetlylive.com/wp-content/uploads/2010/06/Screenshot1.png"><img class="size-full wp-image-2221 alignnone" title="Screenshot" src="http://www.cetlylive.com/wp-content/uploads/2010/06/Screenshot1.png" alt="" width="614" height="461" /></a></p>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=2218&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/googlecl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Online Operating System</title>
		<link>http://www.cetlylive.com/online-operating-system/</link>
		<comments>http://www.cetlylive.com/online-operating-system/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 14:35:14 +0000</pubDate>
		<dc:creator>Pratheek</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[TechNews]]></category>
		<category><![CDATA[IBS]]></category>
		<category><![CDATA[Virtual Computer]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=2144</guid>
		<description><![CDATA[
			
				
			
		
<p>I am really excited to see  the enthusiasm  of all guys to make the cetlylive a great success, Hats off to the team behind this.Seeing this i would like to share some intresting thing that i had gone through recently&#8230;&#8230;.</p>
<p>The site which is mentioned in this para is not available currently.They had to shut down it due to <a href="http://www.cetlylive.com/online-operating-system/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/online-operating-system/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Fonline-operating-system%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Fonline-operating-system%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly&amp;hashtags=IBS,Virtual+Computer" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>I am really excited to see  the enthusiasm  of all guys to make the cetlylive a great success, Hats off to the team behind this.Seeing this i would like to share some intresting thing that i had gone through recently&#8230;&#8230;.</strong></p>
<p><strong>The site which is mentioned in this para is not available currently.They had to shut down it due to some financial matters. </strong></p>
<p><strong>A GREAT WORK  OF TWO GUYS FROM VADAKARA ENGGINEERING COLLEGE WHICH MADE NEWS  WORLDWIDE &#8230;&#8230;&#8230;&#8230;</strong></p>
<p>You have heard of desktops and laptops, but now two engineering students in Kerala have come up with a virtual computer that can be accessed from anywhere in the world. All it needs is an internet connection.</p>
<p>K. Ansar and P.P. Ismail, final year computer science students at an engineering college in Vatakara, about 45 km from here, have set up <a href="http://www.bloxtr.com" target="_blank">www.bloxtr.com</a>, the prototype of a virtual computer in which you can store all your important documents, favourite music, colourful pictures and even videos.</p>
<p>&#8220;The idea is that no one needs to carry a laptop or pen drive around. You can upload any files to the website and access it from any corner of the world. What you need is just an interface to access the internet,&#8221; says Ansar .</p>
<p>Ansar and Ismail are fans of Richard Stallman, the free software guru, and they are also keen on popularising the prowess of open source software.</p>
<p>Ismail said bloxtr is just a project and doesn&#8217;t yet have the speed and features of professional applications. They are hoping for investment by corporate firms for the further development of their prototype.</p>
<p>According to the students, people are largely ignorant about the opportunities that open source software provides. They stumbled upon the idea of a virtual computer while mining the internet.</p>
<p>&#8220;The open source platform for creating a virtual computer is available on the internet. Open source platforms are available free for any kind of project,&#8221; said Ansar.</p>
<p>&#8220;We&#8217;d like to popularise the concept of the virtual computer. As far as we know such a facility does not exist. Google has Google Docs to store and edit documents or spreadsheets, while websites like<a href="http://ibackup.com" target="_blank"> ibackup.com</a> provide the facility of creating backup data.</p>
<p>&#8220;We want to make bloxtr more elaborate so that one can install software of one&#8217;s choice on the virtual computer,&#8221; he said.</p>
<p>Ansar and Ismail feel the concept will become more attractive if it can be used via mobile phones.</p>
<p>&#8220;We are trying to convert this into a mobile application. When 3G services become operational in the country we think the virtual computer will really be an attractive proposition,&#8221; Ismail said.</p>
<p>Ismail and Ansar, along with three other classmates, have already won a project from a local software company on behalf of a Gulf-based airline to develop a system to make flight schedule information available on mobile phones.</p>
<p>They are also planning a project to network educational institutions. &#8220;This is a long-term project, under which we plan to provide a website from where information on students from the networked institutions can be retrieved,&#8221; said Ismail.</p>
<p>&#8220;If a parent wants to ascertain the score of his child he can access it directly from his home. For employers who are on the lookout for talent, this database could be a good source. We are also planning a virtual classroom. Eighty percent of the work on this is complete,&#8221; he added.</p>
<p>THIS NEWS WAS PUBLISHED IN DIFFERENT SITES AND ALSO IN NES PAPERS LIKE  NEW YORK TIMES,THE HINDU etc&#8230;&#8230;..</p>
<p>YOU CAN MORE DETAILS IF  YOU SEARCH FOR  &#8220;ANSAR VIRTUAL COMPUTER&#8221;  IN GOOGLE.</p>
<p>NB: THIS GUY ANSAR IS CORRENTLY WORKING WITH ME IN <strong>IBS.</strong></p>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=2144&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/online-operating-system/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>BOSS 3.0</title>
		<link>http://www.cetlylive.com/boss-3-0/</link>
		<comments>http://www.cetlylive.com/boss-3-0/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 08:53:41 +0000</pubDate>
		<dc:creator>SaJ!N</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[TechNews]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=1615</guid>
		<description><![CDATA[
			
				
			
		
<p>BOSS (Bharat Operating System Solutions) GNU/Linux is a Linux distribution developed by C-DAC.</p>
<p>BOSS (Bharat Operating System Solutions) GNU/Linux is a Linux distribution developed by C-DAC for enhancing the use of free and open source software in India. BOSS Linux was made specifically for the Indian environment, it consists of a pleasing desktop environment coupled with <a href="http://www.cetlylive.com/boss-3-0/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/boss-3-0/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Fboss-3-0%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Fboss-3-0%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>BOSS (Bharat Operating System Solutions) GNU/Linux is a Linux distribution developed by C-DAC.</strong></p>
<p><em>BOSS (Bharat Operating System Solutions) GNU/Linux is a Linux distribution developed by C-DAC for enhancing the use of free and open source software in India. BOSS Linux was made specifically for the Indian environment, it consists of a pleasing desktop environment coupled with Indian language support and other packages that are most relevant for use in the government domain.</em></p>
<p>Here are some key features of &#8220;BOSS&#8221;:<br />
· The Graphical mode installer<br />
· Faster system startup and login<br />
· User friendly GNOME Desktop<br />
· Simplified menu organization<br />
· Easy access to power management settings with GNOME Power Manager<br />
· Improved support for video playback<br />
· 3D Desktop<br />
· BharatheeyaaOO (Localised OpenOffice.org 2.0.1 ? currently in Tamil and Hindi)<br />
· Enhanced Removable Media Support<br />
· Liferea ? RSS/RDF Reader<br />
· Plug &amp; Play of the devices with Graphical Front-End<br />
· Multimedia support &#8211; Totem, Xmms<br />
· TV Tuner Support<br />
· Bluetooth Support<br />
· Optional Network Manager for convenient roaming between different wireless and wired networks<br />
· Migration Tool &#8211; Bulk Document converter<br />
· Presentation Tool-keyjnote<br />
· Menu Editor &#8211; Alacarte<br />
· Evolution Mail Client<br />
· Best of available internet tools ? Firefox, Gaim, Xchat<br />
· Input Method &#8211; SCIM with Remington Keyboard Layout for Tamil, Hindi, Punjabi,and Marati<br />
· CD/DVD Burning tool &#8211; bonfire<br />
· Dual Boot Facility<br />
· Automount of existing Hard Disk partitions<br />
· LiveCD<br />
· Utility CD</p>
<p><strong>What&#8217;s new in BOSS 3.0:</strong><br />
· Centre for Development of Advanced Computing (C-DAC) has launched its Bharat Operating Systems Solutions (BOSS) GNU/Linux software version 3.0, developed by NRCFOSS (National Resource Centre for Free/Open Source Software). BOSS version 3.0 is coupled with GNOME and KDE desktop environments with a wide Indian language support and packages that are relevant for use in the government domain. The software is also endowed with Bluetooth for short range of communications along with salient features like RSS feed reader and PDF viewer. The objective of creating BOSS Linux is to enable the non-English speaking people of India to be exposed to the benefits of free and open source software and GNU/Linux.<br />
<a href="http://bosslinux.in/downloads/downloads/iso-images/tejas"><br />

<a href='http://www.cetlylive.com/boss-3-0/boss_1/' title='BOSS_1'><img width="150" height="150" src="http://www.cetlylive.com/wp-content/uploads/2010/04/BOSS_1-150x150.png" class="attachment-thumbnail" alt="BOSS_1" title="BOSS_1" /></a>
<a href='http://www.cetlylive.com/boss-3-0/boss_2/' title='BOSS_2'><img width="150" height="150" src="http://www.cetlylive.com/wp-content/uploads/2010/04/BOSS_2-150x150.png" class="attachment-thumbnail" alt="BOSS_2" title="BOSS_2" /></a>
<a href='http://www.cetlylive.com/boss-3-0/boss_3/' title='BOSS_3'><img width="150" height="150" src="http://www.cetlylive.com/wp-content/uploads/2010/04/BOSS_3-150x150.jpg" class="attachment-thumbnail" alt="BOSS_3" title="BOSS_3" /></a>
<br />
</a></p>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=1615&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/boss-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Way To Create Bootable Ubuntu USB Pendrive</title>
		<link>http://www.cetlylive.com/easy-way-to-create-bootable-ubuntu-usb-pendrive/</link>
		<comments>http://www.cetlylive.com/easy-way-to-create-bootable-ubuntu-usb-pendrive/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 11:09:26 +0000</pubDate>
		<dc:creator>Mithun Madhusoodanan</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ubuntu pendrive]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=1385</guid>
		<description><![CDATA[
			
				
			
		
<p>.</p>
<p>.</p>
<p>.</p>
<p>.</p>
<p>This short guide explains how you can create a bootable Ubuntu USB pendrive.</p>
Requirements
<p>In order to make a Bootable Ubuntu pen-drive you will need:</p>
<p>1 &#8211; The USB Startup Disk creator tool. which is available in Ubuntu (System &#62; Administration &#62; USB Startup Disk Creator).
2 &#8211; A USB drive or memory card with minimum 1GB
3 &#8211; Ubuntu <a href="http://www.cetlylive.com/easy-way-to-create-bootable-ubuntu-usb-pendrive/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/easy-way-to-create-bootable-ubuntu-usb-pendrive/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Feasy-way-to-create-bootable-ubuntu-usb-pendrive%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Feasy-way-to-create-bootable-ubuntu-usb-pendrive%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly&amp;hashtags=ubuntu+pendrive" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="color: #ffffff;">.</span></p>
<p><span style="color: #ffffff;">.</span></p>
<p><span style="color: #ffffff;">.</span></p>
<p><span style="color: #ffffff;">.</span></p>
<p>This short guide explains how you can create a bootable Ubuntu USB pendrive.</p>
<h3>Requirements</h3>
<p>In order to make a Bootable Ubuntu pen-drive you will need:</p>
<p>1 &#8211; The USB Startup Disk creator tool. which is available in Ubuntu (System &gt; Administration &gt; USB Startup Disk Creator).<br />
2 &#8211; A USB drive or memory card with minimum 1GB<br />
3 &#8211; Ubuntu CD or ISO image (downloadable from Ubuntu website).</p>
<h3>Procedures</h3>
<p>Launch the USB Startup Disk creator tool from System &gt; Administration &gt; Create a USB startup disk.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.cetlylive.com/wp-content/uploads/2010/03/1.png" alt="" width="324" height="400" /></p>
<p><strong>In first step (step no 1 in pic):</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<div id="defer-adrectangleb">
<div><ins></ins><ins></ins></div>
</div>
<div id="defer-adrectangleb">
<div><ins></ins><ins></ins></div>
</div>
<p><span style="font-weight: normal;">Either insert your Ubuntu CD, or click Other and browse to your ISO file. (If the application doesn’t recognize your CD, try clicking Other and then Cancel. This caused the CD to show up.)</span></p>
<p>In second step (step no 2 in pic):</p>
<p><span style="font-weight: normal;">Plug in your USB drive or card. The application should recognize the drive immediately and check that there is enough free space. If you have multiple USB drives, select the one you want to use from the list.</span></p>
<p>In third step step (step no 3 in pic):</p>
<p><span style="font-weight: normal;">If your USB flash was not free, do format it.</span></p>
<p>In last step (step no 4 in pic):</p>
<p><span style="font-weight: normal;">Finally, you can choose whether you want your USB system to be persistent between boots, or static like a live CD (changes will stay or discarded). Adjust the slider to choose how much space Ubuntu will have on the disk to expand to, or select the Discarded on shut-down option (this will remove all changes you&#8217;ve done on the Ubuntu on your flash).</span></p>
<p><span style="font-weight: normal;">Click Make Startup Disk, and wait while the USB system is created. Now you can boot from this drive on any system which supports USB boots.</span></p>
<p><span style="font-weight: normal;">Booting from the USB drive is just like a CD; you’ll have to select Try Ubuntu from the boot menu to load the desktop. If you allocated space for a persistent system, anything you install or change on the system will persist the next time you boot.</span></p>
<p></strong></p>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=1385&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/easy-way-to-create-bootable-ubuntu-usb-pendrive/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Look For UBUNTU</title>
		<link>http://www.cetlylive.com/new-look-for-ubuntu/</link>
		<comments>http://www.cetlylive.com/new-look-for-ubuntu/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 13:32:50 +0000</pubDate>
		<dc:creator>Mithun Madhusoodanan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=1326</guid>
		<description><![CDATA[
			
				
			
		
<p>.</p>
<p>.</p>
<p>.</p>
<p>.</p>
<p>Ubuntu has posted a page on its new branding, representing a significant change of look for the distribution. No more brown.</p>
<p>&#8220;The new style of Ubuntu is driven by the theme &#8220;Light&#8221;. They have developed a comprehensive set of visual guidelines and treatments that reflect that style, and are updating key assets like the logo accordingly. <a href="http://www.cetlylive.com/new-look-for-ubuntu/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/new-look-for-ubuntu/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Fnew-look-for-ubuntu%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Fnew-look-for-ubuntu%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly&amp;hashtags=linux,Open+Source,Ubuntu" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="color: #ffffff;">.</span></p>
<p><span style="color: #ffffff;">.</span></p>
<p><span style="color: #ffffff;">.</span></p>
<p><span style="color: #ffffff;">.</span></p>
<p>Ubuntu has posted a page on its new branding, representing a significant change of look for the distribution. No more brown.</p>
<p>&#8220;The new style of Ubuntu is driven by the theme &#8220;Light&#8221;. They have developed a comprehensive set of visual guidelines and treatments that reflect that style, and are updating key assets like the logo accordingly. The new theme takes effect in 10.04 LTS and will define our look and feel for several years.&#8221;</p>
<p>&#8216; The new style in Ubuntu is inspired by the idea of &#8220;Light&#8221;.</p>
<p><span style="color: #c0c0c0;">Here some of screen shots :</span></p>
<p style="text-align: center;"><span style="color: #c0c0c0;"><a href="http://www.cetlylive.com/wp-content/uploads/2010/03/blackeubuntulogo-1.png"><img class="aligncenter size-medium wp-image-1327" title="blackeubuntulogo (1)" src="http://www.cetlylive.com/wp-content/uploads/2010/03/blackeubuntulogo-1-300x79.png" alt="" width="300" height="79" /></a><em> </em></span></p>
<p style="text-align: center;"><a href="http://www.cetlylive.com/wp-content/uploads/2010/03/orangeubuntulogo.png"><img class="aligncenter size-medium wp-image-1333" title="orangeubuntulogo" src="http://www.cetlylive.com/wp-content/uploads/2010/03/orangeubuntulogo-300x101.png" alt="" width="300" height="101" /></a></p>
<p style="text-align: center;"><span style="color: #c0c0c0;"><em>The new Ubuntu font and revamped logo</em></span></p>
<p style="text-align: center;">
<p style="text-align: center;"><span style="color: #c0c0c0;"><em><a href="http://www.cetlylive.com/wp-content/uploads/2010/03/darktheme-1.png"><img class="aligncenter size-medium wp-image-1329" title="darktheme (1)" src="http://www.cetlylive.com/wp-content/uploads/2010/03/darktheme-1-300x225.png" alt="" width="300" height="225" /></a></em></span></p>
<p style="text-align: center;"><span style="color: #c0c0c0;">Darktheme</span></p>
<p style="text-align: center;"><span style="color: #c0c0c0;"><a href="http://www.cetlylive.com/wp-content/uploads/2010/03/lighttheme.png"><img class="aligncenter size-medium wp-image-1330" title="lighttheme" src="http://www.cetlylive.com/wp-content/uploads/2010/03/lighttheme-300x225.png" alt="" width="300" height="225" /></a>Light theme</span></p>
<p style="text-align: center;"><span style="color: #c0c0c0;"><a href="http://www.cetlylive.com/wp-content/uploads/2010/03/boot.png"><img class="aligncenter size-medium wp-image-1331" title="boot" src="http://www.cetlylive.com/wp-content/uploads/2010/03/boot-300x175.png" alt="" width="300" height="175" /></a>Boot Screen</span></p>
<p style="text-align: center;">
<p style="text-align: center;"><span style="color: #c0c0c0;"><em><a title="Ubuntu" href="https://wiki.ubuntu.com/Brand" target="_blank">Click here for more info</a></em></span></p>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=1326&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/new-look-for-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kubuntu Lucid Lynx:KDE Fans Will Love It</title>
		<link>http://www.cetlylive.com/kubuntu-lucid-lynxkde-fans-will-love-it/</link>
		<comments>http://www.cetlylive.com/kubuntu-lucid-lynxkde-fans-will-love-it/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 12:30:08 +0000</pubDate>
		<dc:creator>Mithun Madhusoodanan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[TechNews]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.cetlylive.com/?p=1251</guid>
		<description><![CDATA[
			
				
			
		
<p>Canonical is still fixing the parts of the next major version of Kubuntu: Lucid Lynx. This one is LTS version, which means Long Term Support. I am Gnome fan, but this Kubuntu makes me think for a while and may even force me to leave behind the simplicity that Gnome offers and take a dive <a href="http://www.cetlylive.com/kubuntu-lucid-lynxkde-fans-will-love-it/"><br />[Read more...]</a>]]></description>
			<content:encoded><![CDATA[<div align="left" style="float:left;padding:0px 5px 5px 0px;"><a name="fb_share" type="button_count" share_url="http://www.cetlylive.com/kubuntu-lucid-lynxkde-fans-will-love-it/"></a></div><div class="tweetmeme_button" style="float: left; margin-left: 10px;margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.cetlylive.com%2Fkubuntu-lucid-lynxkde-fans-will-love-it%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.cetlylive.com%2Fkubuntu-lucid-lynxkde-fans-will-love-it%2F&amp;source=cetlylive&amp;style=normal&amp;service=bit.ly&amp;hashtags=kde,kubuntu,Open+Source,Ubuntu" height="61" width="50" /><br />
			</a>
		</div>
<p>Canonical is still fixing the parts of the next major version of Kubuntu: Lucid Lynx. This one is LTS version, which means Long Term Support. I am Gnome fan, but this Kubuntu makes me think for a while and may even force me to leave behind the simplicity that Gnome offers and take a dive into the world of Apple Mac killing KDE 4.</p>
<p>Have a look at the Kubuntu Lucid Lynx. The OS ran from a memory stick(see the screenshot). It&#8217;s said it will take only 30 seconds to boot the entire system on the machine. Quite fast for a Live KDE boot.</p>
<p>Looking at the performance review of Lucid Lynx, one can say with full confidence Windows is no more in competition. Now the fight is between Mac and Ubuntu.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="625" height="469" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.cetlylive.com/wp-content/uploads/2010/03/kubuntu2.swf" /><embed type="application/x-shockwave-flash" width="625" height="469" src="http://www.cetlylive.com/wp-content/uploads/2010/03/kubuntu2.swf"></embed></object></p>
<p style="text-align: center;"><strong><span style="color: #33cccc;">Screenshots of Kubuntu Lucid Lynx</span></strong></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"><strong><a href="http://www.cetlylive.com/wp-content/uploads/2010/03/Boot.jpg"><img class="aligncenter size-full wp-image-1257" title="Boot" src="http://www.cetlylive.com/wp-content/uploads/2010/03/Boot.jpg" alt="" width="575" height="431" /></a></strong></p>
<p style="text-align: center;"><strong>Kubuntu running from a  memory stick</strong></p>
<img src="http://www.cetlylive.com/?ak_action=api_record_view&id=1251&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cetlylive.com/kubuntu-lucid-lynxkde-fans-will-love-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
