<?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>Lijeesh Blog &#187; Linux</title>
	<atom:link href="http://lijeeshms.com/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://lijeeshms.com</link>
	<description>It is the matter of freedom</description>
	<lastBuildDate>Wed, 28 Apr 2010 10:07:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Setting up a development Sphinx search engine in Mac OS</title>
		<link>http://lijeeshms.com/2010/01/11/setting-up-a-development-sphinx-search-engine-in-mac-os.html</link>
		<comments>http://lijeeshms.com/2010/01/11/setting-up-a-development-sphinx-search-engine-in-mac-os.html#comments</comments>
		<pubDate>Mon, 11 Jan 2010 08:24:16 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=267</guid>
		<description><![CDATA[Sphinx is one of the high performance, free open-source full-text search engine with rich feature list. Recently I was experimenting, on this tool for developing a search platform, for big and complex databases. It is very interesting, and easy to setup a developing environment in Mac OS. Sometimes the compiling using the method specified in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sphinxsearch.com/" target="_blank">Sphinx</a> is one of the high performance, free open-source full-text search engine with rich feature list. Recently I was experimenting, on this tool for developing a search platform, for big and complex databases.  It is very interesting, and easy to setup a developing environment in Mac OS. Sometimes the compiling using the method specified in the <a href="http://www.sphinxsearch.com/docs/manual-0.9.9.html" target="_blank"> documents of sphinx</a> will not work that easily. I found it is super easy, installation using mac ports. Here is how I done it.</p>
<h3>Installing Sphinx using Mac Ports </h3>
<p>1. If you don&#8217;t have mac-ports installed, Install <a href="http://www.macports.org/" target="_blank">mac-ports downloading from their site</a>.<br />
2. If you not installed X code tools from Mac OS X, DVD install it &#8211; need this for compiling sources in a UNIX development way.<br />
3. Now install sphinx using following command.
<pre class="brush: plain;">sudo port install sphinx</pre>
<p> This will compile and install everything required for making the sphinx work.</p>
<p>Now sphinx is installed and we have &#8216;indexer&#8217;, &#8216;search&#8217; utilities and a &#8216;searchd&#8217; daemon. </p>
<h3>Basic way to use Sphinx</h3>
<p>Sphinx comes with a sample sql file to setup a sql-query based search (Simplest configuration). This SQL and a sample Sphinx sample configuration is located at
<pre class="brush: plain;">/opt/local/etc/sphinx</pre>
<p>. Try following steps to make it running with your configuration<br />
1. Create a directory some where in your system. In my case I created at desktop named &#8216;sphinx&#8217;.
<pre class="brush: plain;"> cd ~/Desktop/sphinx </pre>
<p>2. Create &#8216;test&#8217; database in your mysql server and import the Sample SQL.<br />
2. copy sphinx.conf from sample /opt/local/etc/sphinx to this folder.
<pre class="brush: plain;">cp /opt/local/etc/sphinx/sphinx.conf.dist sphinx.conf</pre>
<p>3. Now edit sphinx.conf and change the database Params and paths. In my case it looks like following. Edit the queries related to your custom databases to make it yours.</p>
<pre class="brush: plain;">
source src1
{
	type					= mysql

	sql_host				= localhost
	sql_user				= test
	sql_pass				=
	sql_db					= test
	sql_port				= 3306	# optional, default is 3306

	sql_query				= \
		SELECT id, group_id, UNIX_TIMESTAMP(date_added) AS date_added, title, content \
		FROM documents

	sql_attr_uint			= group_id
	sql_attr_timestamp		= date_added

	sql_query_info			= SELECT * FROM documents WHERE id=$id
}

index test1
{
	source					= src1
	path					= /Users/lijeeshms/Desktop/sphinx/data/test1
	docinfo					= extern
	charset_type			= sbcs
}

indexer
{
	mem_limit				= 32M
}

searchd
{
	port					= 3312
	log						= /Users/lijeeshms/Desktop/sphinx/log/searchd.log
	query_log				= /Users/lijeeshms/Desktop/sphinx/log/query.log
	read_timeout			= 5
	max_children			= 30
	pid_file				= /Users/lijeeshms/Desktop/sphinx/log/searchd.pid
	max_matches				= 1000
	seamless_rotate			= 1
	preopen_indexes			= 0
	unlink_old				= 1
}
</pre>
<p>4. Create 2 folders, &#8216;data&#8217; and &#8216;log&#8217; inside the &#8216;sphinx&#8217; directory.
<pre class="brush: plain;">mkdir data log</pre>
<p>5. Now run the indexer with the configuration we created from the test directory.
<pre class="brush: plain;">indexer --config /&lt;path-to&gt;/sphinx.conf --all</pre>
<p> This will create the indexes based the confutation.<br />
6. Now run the Sphinx search daemon using the same command.
<pre class="brush: plain;">searchd --config /&lt;path-to&gt;/sphinx.conf </pre>
<p> If everything is fine, sphinx search engine will start with the above index configurations. If any error happens you need to check the configuration for any errors.<br />
7. You can now test a search with &#8216;search&#8217; command from terminal.
<pre class="brush: plain;">search &lt;query&gt; </pre>
<p> The results will be shown.</p>
<p>Once all the above is working, it will be easy to use any of the client libraries for PHP (or <a href="http://php.net/sphinx" target="_blank">PECL</a>), Python, Ruby or Java to search from a web or desktop based environments. Sphinx provides options to run multiple indexes and search on selected indexes, thus allowing one daemon to use with multiple type of searches.<br />
Sphinx can index data from an XMLPipe, this is best for creating configurable search indexes from very dynamic datasources like a CMS or CRM.</p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2010/01/11/setting-up-a-development-sphinx-search-engine-in-mac-os.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy open source software for the Macs</title>
		<link>http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html</link>
		<comments>http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 08:23:16 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[My system]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=207</guid>
		<description><![CDATA[Mac ports is the way to use most of the opens source software from the community on Macs. Recently I found out new tool named Porticus, that makes the life so easy. Setting up Porticus for the first time &#8211; snow leapard 1) Install macports, downloading the dmg &#8211; checkout Macports website for updates 2) [...]]]></description>
			<content:encoded><![CDATA[<p>Mac ports is the way to use most of the opens source software from the community on Macs. Recently I found out new tool named Porticus, that makes the life so easy.</p>
<div id="attachment_208" class="wp-caption aligncenter" style="width: 721px"><a rel="attachment wp-att-208" href="http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html/screen-shot-2009-10-01-at-12-10-33-pm"><img class="size-full wp-image-208" title="Porticus for Macports" src="http://lijeeshms.com/wp-content/uploads/2009/10/Screen-shot-2009-10-01-at-12.10.33-PM.png" alt="Porticus for Macports" width="711" height="568" /></a><p class="wp-caption-text">Porticus for Macports</p></div>
<h3>Setting up Porticus for the first time &#8211; snow leapard</h3>
<p>1) Install macports, <a title="Mac ports 1.8.1 for snow leapard" href="http://distfiles.macports.org/MacPorts/MacPorts-1.8.1-10.6-SnowLeopard.dmg" target="_blank">downloading the dmg</a> &#8211; checkout <a title="Macports wesite" href="http://www.macports.org" target="_blank">Macports website</a> for updates</p>
<p>2) Install Porticus <a title="Porticus download" href="http://porticus.alittledrop.com/downloads/Porticus_1_6_3.dmg" target="_blank">downloading</a> from  <a title="Porticus website" href="http://porticus.alittledrop.com/index.html" target="_blank">Porticus website</a></p>
<p>That is it. It is realy usefull tool to try free software on mac. Feels like one of the software package management GUIs Linux users enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two must watch Linux documentary films</title>
		<link>http://lijeeshms.com/2009/06/03/two-must-watch-linux-documentary-films.html</link>
		<comments>http://lijeeshms.com/2009/06/03/two-must-watch-linux-documentary-films.html#comments</comments>
		<pubDate>Wed, 03 Jun 2009 17:19:27 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=155</guid>
		<description><![CDATA[Recent days I was encountered with some fundamental questions and criticism on concepts of open source, and energy behind Linux operating system. The answers are already explained by the experts in many ways through different mediums. I like to share these two good documentaries made about Linux on this occasion REVOLUTION OS To see more [...]]]></description>
			<content:encoded><![CDATA[<p>Recent days I was encountered with some fundamental questions and criticism on concepts of open source, and energy behind Linux operating system. The answers are already explained by the experts in many ways through different mediums. I like to share these two good documentaries made about Linux on this occasion </p>
<h3>REVOLUTION OS</h3>
<p><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=7707585592627775409&#038;hl=en&#038;fs=true" style="width:510px;height:380px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed></p>
<p>To see more on this video see <a href="http://www.revolution-os.com/" target="_blank">www.revolution-os.com/</a></p>
<h3>The Code</h3>
<p><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=-3498228245415745977&#038;hl=en&#038;fs=true" style="width:510px;height:380px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed></p>
<p>More information is on <a href="http://www.code.linux.fi/" target="_blank">www.code.linux.fi/</a></p>
<p>You can see a lot more videos of linux by doing a Google search &#8211; How Linux powers some of the hollywood films studios, high end mission critical servers and supper computers, almost any type of microprocessor based electronic devices etc.  Linux is nothing but the open knowledge of a &#8220;Computer system&#8221;, and how it works.</p>
<p><br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/06/03/two-must-watch-linux-documentary-films.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Updates from UAE Linux user meetup</title>
		<link>http://lijeeshms.com/2009/06/02/updates-from-uae-linux-user-meetup.html</link>
		<comments>http://lijeeshms.com/2009/06/02/updates-from-uae-linux-user-meetup.html#comments</comments>
		<pubDate>Tue, 02 Jun 2009 13:25:13 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Flip Media]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Dubai]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[uaelug]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=133</guid>
		<description><![CDATA[UAE Linux user meetup (@uaelug on twitter), was very interesting yesterday. About 20 Linux Enthusiasts were present on the meetup. It was an open discussion session after an Ubuntu linux installation workshop for newbies. Some interesting talks with new linux users and experts gave lot of amazing information about linux. Meetup started with number of [...]]]></description>
			<content:encoded><![CDATA[<p>UAE Linux user meetup (@uaelug on twitter), was very interesting yesterday. About 20 Linux Enthusiasts were present on the meetup. It was an open discussion session after an Ubuntu linux installation workshop for newbies. Some interesting talks with new linux users and experts gave lot of amazing information about linux. </p>
<p>Meetup started with number of new guys introducing themselves. It was fun and some &#8220;jokes are thrown on the table&#8221; .<a href="http://twitter.com/tarekkassar" target="_blank"> @tarekkassar</a> was live tweeting from the meetup.  &#8221; If you love open-source, join #uaelug, all people here will be your friends &#8221; &#8211; he said on twitter.</p>
<p>After the meetup it was very clear to everyone that why we use linux and what is the importance of this Operating system. Some topics we discussed was about how you use a computer in its maximum possible ways, that cannot be achieved using propitiatory systems.  It explained how to make computer to do more stuff than, just following some ready made &#8220;products&#8221;. Experts explained how we take challenges and do understand how software really works.</p>
<p>Here is some photos from the meetup taken by <a href="http://twitter.com/smshuja" target="_blank">@smshuja</a></p>
<div class="wp-caption aligncenter" style="width: 610px"><a rel="lightbox[uaelug2]" href="http://photos2.meetupstatic.com/photos/event/d/7/b/highres_8943451.jpeg"  title="UAE Linux meetup 2 at Flip Media" rel="lightbox[133]"><img alt="Guys at UAE Linux meetup" src="http://photos4.meetupstatic.com/photos/event/d/7/b/600_8943451.jpeg" title="UAE Linux meetup 2 at Flip Media" width="600" height="402" /></a><p class="wp-caption-text">Guys at UAE Linux meetup</p></div>
<div class="wp-caption alignleft" style="width: 90px"> <a rel="lightbox[uaelug2]" href="http://photos4.meetupstatic.com/photos/event/d/7/c/highres_8943452.jpeg" title="Guys at uaelug meetup" rel="lightbox[133]"><img alt="UAE Linux meetup " src="http://photos4.meetupstatic.com/photos/event/d/7/c/thumb_8943452.jpeg" title="Guys at uaelug meetup" width="80" height="54" /></a> <p class="wp-caption-text">UAE Linux meetup </p></div> <div class="wp-caption alignleft" style="width: 90px"> <a href="http://photos4.meetupstatic.com/photos/event/d/7/d/highres_8943453.jpeg" rel="lightbox[133]"><img alt="Guys at linux UAE linux meetup" src="http://photos2.meetupstatic.com/photos/event/d/7/d/thumb_8943453.jpeg" title="Guys at linux UAE linux meetup" width="80" height="54" /></a> <p class="wp-caption-text">Guys at linux UAE linux meetup</p></div> <div class="wp-caption alignleft" style="width: 90px"> <a rel="lightbox[uaelug2]" href="http://photos1.meetupstatic.com/photos/event/d/8/7/highres_8943463.jpeg" title="Guys at UAE Linux meetup" rel="lightbox[133]"><img alt="Hacking Wireless at UAE linux meetup" src="http://photos1.meetupstatic.com/photos/event/d/8/7/thumb_8943463.jpeg" title="Guys at UAE Linux meetup" width="80" height="54" /></a> <p class="wp-caption-text">Hacking Wireless at UAE linux meetup</p></div> <div class="wp-caption alignleft" style="width: 90px"> <a href="http://photos2.meetupstatic.com/photos/event/d/8/3/highres_8943459.jpeg" rel="lightbox[133]"><img alt="Tarek kassar live internet update from uaelug meetup" src="http://photos4.meetupstatic.com/photos/event/d/8/3/thumb_8943459.jpeg" title="Tarek at uaelug meetup" width="80" height="54" /></a> <p class="wp-caption-text">Tarek kassar live internet update from uaelug meetup</p></div> <div class="wp-caption alignleft" style="width: 90px"><a rel="lightbox[uaelug2]" href="http://photos3.meetupstatic.com/photos/event/d/8/4/highres_8943460.jpeg" title="Me in uaelug" rel="lightbox[133]"><img alt="I am in uaelug" src="http://photos3.meetupstatic.com/photos/event/d/8/4/thumb_8943460.jpeg" title="Me in uaelug" width="80" height="54" /></a> <p class="wp-caption-text">I am in uaelug</p></div>
<p><br clear="all" /><br />
You can see <a href="http://meetup.uaelug.org/photos/#8943460" target="_blank">more photos of uaelug</a> at meetup group.</p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/06/02/updates-from-uae-linux-user-meetup.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First edition of UAE Linux user meetup experiance</title>
		<link>http://lijeeshms.com/2009/05/19/first-edition-of-uae-linux-user-meetup-experiance.html</link>
		<comments>http://lijeeshms.com/2009/05/19/first-edition-of-uae-linux-user-meetup-experiance.html#comments</comments>
		<pubDate>Tue, 19 May 2009 07:32:18 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Flip Media]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[flipmedia]]></category>
		<category><![CDATA[meetup]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[uae]]></category>
		<category><![CDATA[uaelug]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=83</guid>
		<description><![CDATA[More than 20 Linux minded people met on venue at Flip Media meeting rooms, yesterday evening. The Meetup went for about 2 hours. It was an amazing experience that people with various level of experience in Linux and computer systems in common, talked about themselves and the importance of Linux everywhere. There was people with [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.meetup.com/r/inbound/0/0/shareimg/http://meetup.uaelug.org/?a=shareimg"><img style="float:left;padding:10px" src="http://img.meetup.com/img/logo/med/l/linux.png" border="0" alt="United Arab Emirates Linux Meetup Group" /></a></p>
<p>More than 20 Linux minded people met on venue at <a href="http://flipcorp.com" target="_blank">Flip Media</a> meeting rooms, yesterday evening. The Meetup went for about 2 hours. It was an amazing experience that people with various level of experience in Linux and computer systems in common, talked about themselves and the importance of Linux everywhere.</p>
<p>There was people with experience of more than 10 years, hackers, desktop users, programmers and people never used Linux in the group. We discussed mainly on how to proceed to make this group work for everyone And shared some of interesting experiances.Here is some pictures.</p>
<p><a title="UAE linux meetup" rel="lightbox[uaelug]" href="http://photos1.meetupstatic.com/photos/event/d/3/7/7/highres_8694135.jpeg" target="_blank" title="UAE linux meetup" rel="lightbox[83]"><img title="UAE linux meetup" src="http://photos4.meetupstatic.com/photos/event/d/3/7/7/global_8694135.jpeg" alt="UAE linux meetup" /></a><a title="UAE linux meetup" href="http://photos1.meetupstatic.com/photos/event/d/3/8/0/highres_8694144.jpeg" target="_blank" title="UAE linux meetup" rel="lightbox[83]"><img title="UAE linux meetup" src="http://photos4.meetupstatic.com/photos/event/d/3/8/0/global_8694144.jpeg" alt="UAE linux meetup" /></a><a title="UAE linux meetup" rel="lightbox[uaelug]" href="http://photos3.meetupstatic.com/photos/event/d/3/7/c/highres_8694140.jpeg" target="_blank" title="UAE linux meetup" rel="lightbox[83]"><img title="UAE linux meetup" src="http://photos4.meetupstatic.com/photos/event/d/3/7/c/global_8694140.jpeg" alt="UAE linux meetup" /></a></p>
<p>See more pictures at the meetup group <a href="http://meetup.uaelug.org/photos/616330/8694135/#8694140" target="_blank">here</a> . I recommend all Linux users in this region to join on this group </p>
<p>You can visit and register at <a href="http://uaelug.org" target="_blank">http://uaelug.org </a> to know more. Follow <a href="http://twitter.com/uaelug" target="_blank">@uaelug</a> on twitter for updates.</p>
<div style="text-align: center; width: 214px; font-family: tahoma,verdana,sans serif; font-size: 12px;"><object width="214" height="142" data="http://www.meetup.com/swf/membership_badge.swf?chapterid=1448244" type="application/x-shockwave-flash"><param name="src" value="http://www.meetup.com/swf/membership_badge.swf?chapterid=1448244" /></object><br />
<a href="http://linux.meetup.com/458/?track=i3/mu_rr3rx2o1ku">Click here to check out<br />
The United Arab Emirates Linux Meetup Group!</a></div>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/05/19/first-edition-of-uae-linux-user-meetup-experiance.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Ultimate Ubuntu Linux Editions</title>
		<link>http://lijeeshms.com/2007/04/30/coming-ultimate-ubuntu-linux-editions.html</link>
		<comments>http://lijeeshms.com/2007/04/30/coming-ultimate-ubuntu-linux-editions.html#comments</comments>
		<pubDate>Sun, 29 Apr 2007 21:37:27 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[3D desktop]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[Creativity]]></category>
		<category><![CDATA[User interface]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/2007/04/30/coming-ultimate-ubuntu-linux-editions.html</guid>
		<description><![CDATA[Ubuntu Linux 7.4 is already out there. And fans are waiting for Ubuntu studio, A Linux distribution that makes the Multimedia Authoring much easier for free. Watch this video, see what Linux can do. Ubuntu Ultimate Edition Source : Zinzi[Blog] More Cool videos comparing Linux Beryl desktop &#038; Vista http://www.youtube.com/watch?v=xC5uEe5OzNQ http://www.youtube.com/watch?v=gWeSwavYgww http://www.youtube.com/watch?v=kYgV2GlsufI http://www.youtube.com/watch?v=QOWeeVvhiAw It seems, [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu Linux 7.4 is already out there. And fans are waiting for <a href="http://ubuntustudio.org/" target="_blank">Ubuntu studio</a>, A Linux distribution that makes the Multimedia Authoring much easier for free.</p>
<p>Watch this video, see what Linux can do.</p>
<h3>Ubuntu Ultimate Edition</h3>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/_CPEfFdfEdg"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/_CPEfFdfEdg" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Source : <a href="http://zinzi.us/?q=node/340" target="_blank" title="Zinzi[Blog]">Zinzi[Blog]</a></p>
<p>More Cool videos comparing Linux Beryl desktop &#038; Vista<br />
<a href="http://www.youtube.com/watch?v=xC5uEe5OzNQ">http://www.youtube.com/watch?v=xC5uEe5OzNQ</a><br />
<a href="http://www.youtube.com/watch?v=gWeSwavYgww" target="_blank">http://www.youtube.com/watch?v=gWeSwavYgww</a><br />
<a href="http://www.youtube.com/watch?v=kYgV2GlsufI" target="_blank">http://www.youtube.com/watch?v=kYgV2GlsufI</a><br />
<a href="http://www.youtube.com/watch?v=QOWeeVvhiAw" target="_blank">http://www.youtube.com/watch?v=QOWeeVvhiAw</a></p>
<p>It seems, now is the right time for all interested users can switch to Linux or try out it. <img src='http://lijeeshms.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2007/04/30/coming-ultimate-ubuntu-linux-editions.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating Customized, Live and standalone Media Center Disks Using Linux</title>
		<link>http://lijeeshms.com/2007/03/25/creating-customized-live-and-standalone-media-center-disks-using-linux.html</link>
		<comments>http://lijeeshms.com/2007/03/25/creating-customized-live-and-standalone-media-center-disks-using-linux.html#comments</comments>
		<pubDate>Sun, 25 Mar 2007 12:10:00 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[customizing]]></category>
		<category><![CDATA[GeexBox]]></category>
		<category><![CDATA[Linux remote]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Media Center]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/2007/03/25/creating-customized-live-and-standalone-media-center-disks-using-linux.html</guid>
		<description><![CDATA[K3b is a popular and powerfull Optical Disk burning software GUI in Linux. It have a lot of options for writing different type of disks There we can see options to write eMovie disks.You need to have eMovix pakage installed on the system to use this options. You can find it from eMovix Project site.. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://k3b.plainblack.com/home" title="K3b Home" target="_blank">K3b</a> is a popular and powerfull Optical Disk burning software GUI in Linux.<a href="http://lijeeshms.com/wp-content/uploads/2007/03/k3b_startup.jpg" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/k3b_startup.jpg" alt="K3b Startup" title="K3b Startup" /></a></p>
<p>It have a lot of options for writing different type of disks<a href="http://lijeeshms.com/wp-content/uploads/2007/03/writing_options.jpg" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/writing_options.jpg" alt="K3b writing options" title="K3b writing options" /></a></p>
<p>There we can see options to write eMovie disks.You need to have eMovix pakage installed on the system to use this options. You can find it from <a href="http://sourceforge.net/projects/movix/" title="eMovix Project Home" target="_blank">eMovix Project site.</a>.</p>
<h3>What is eMovie Disk?</h3>
<p>It is a bootable Live CD, micro linux distribution (upto max 7 MB) with <a href="http://www.mplayerhq.hu/" title="Mplayer Home" target="_blank">Mplayer</a>  and <a href="http://www.lirc.org/" title="Linux Infrared Remote Control" target="_blank">LIRC</a> on it.   k3b will give option to fine tune your eMovix disk. We can include any type of Media files to the Disk with k3b. Mplayer supports almost all media types and is best for playing videos with full quality and hardware support. With k3b I can fully customize the eMovix interface with background videos and  more.</p>
<p><a href="http://lijeeshms.com/wp-content/uploads/2007/03/snapshot5.png" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/snapshot5.thumbnail.png" alt="Customise the disk" title="Customise the disk" /></a> <a href="http://lijeeshms.com/wp-content/uploads/2007/03/snapshot7.png" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/snapshot7.thumbnail.png" alt="Burn it" title="Burn it" /></a><a href="http://lijeeshms.com/wp-content/uploads/2007/03/snapshot10.png" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/snapshot10.thumbnail.png" alt="Cutomisable videos" title="Cutomisable videos" /></a><br clear="all" /><br />
Thus once an eMovie Disk is burned it will be your portable standalone Media Center. Just put the CD and boot the system you can enjoy the media. No need of any OS or Software. This will work on old systems with less memory and even without a Hard Disk. See the screen of eMovie disk in action. I can use my pinnacle TV cards Remoe control to control the media center on my system.</p>
<p><a href="http://lijeeshms.com/wp-content/uploads/2007/03/emovix_booting.jpg" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/emovix_booting.thumbnail.jpg" alt="Emovix Booting" title="Emovix Booting" /></a> <a href="http://lijeeshms.com/wp-content/uploads/2007/03/emovix_menu.jpg" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/emovix_menu.thumbnail.jpg" alt="Emovix Menu" title="Emovix Menu" /></a><a href="http://lijeeshms.com/wp-content/uploads/2007/03/pinnacle_remote.jpg" rel="lightbox[emovix]"><img src="http://lijeeshms.com/wp-content/uploads/2007/03/pinnacle_remote.thumbnail.jpg" alt="My remote" title="My remote" /></a><br clear="all" /></p>
<h3>GeexBox &#8211; Live Media Center in a Mini CD</h3>
<p><a href="http://www.geexbox.org/en/index.html" title="GeexBox" target="_blank">GeeXboX</a> is a full project that develops a Mplayer based, Linux Live Media center.  It will boot from the disk and play anything in the Hard disks, Optical disks, TV cards Network Locations etc.</p>
<p><a href="http://www.geexbox.org/releases/1.1-rc2/geexbox-generator-1.1-rc2.i386.tar.gz" title="GeexBox Generator" target="_blank">GeexBox Generator</a> will give complete options to customize this Distro in an easy user friendly GUI. We can change the interface theme, add our own LIRC remote control, install extra packges and kernel modules, and make  support for custom hardwares like bluetooth remotes etc.</p>
<p>See GeexBox screenshots <a href="http://www.geexbox.org/en/screenshot.html" title="GeexBox" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2007/03/25/creating-customized-live-and-standalone-media-center-disks-using-linux.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Going professional with linux desktop</title>
		<link>http://lijeeshms.com/2007/03/09/going-professional-with-linux-desktop.html</link>
		<comments>http://lijeeshms.com/2007/03/09/going-professional-with-linux-desktop.html#comments</comments>
		<pubDate>Fri, 09 Mar 2007 18:27:29 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/2007/03/09/going-professional-with-linux-desktop.html</guid>
		<description><![CDATA[Linux is powerful and much comfortable as a Professional Desktop, especially in areas of Web Development and Programming. It gives great tools to do work easier. Linux also proofs its efficiency in other areas as well. Developing Hollywood films to use as Gaming consoles are also possible with Linux. When I installed Suse 10.2 on [...]]]></description>
			<content:encoded><![CDATA[<p>Linux is powerful and much comfortable as a Professional Desktop, especially in areas of Web Development and Programming. It gives great tools to do work easier. Linux also proofs its efficiency in other areas as well. Developing Hollywood films to use as Gaming consoles are also possible with Linux.</p>
<p>When I installed Suse 10.2 on my office laptop with a duel head setup. <a href="/wp-content/uploads/2007/03/snapshot2.png" rel="lightbox"><img src="/wp-content/uploads/2007/03/snapshot.png" alt="My duel head suse 10.2 desktop" border="0" /></a></p>
<p>The useful tools<br />
Zend Studio &#8211; PHP IDE.<br />
Eclipse with PHP eclipse and <a href="http://www.aptana.com/" target="_blank">Aptana</a> plugin &#8211; A complete web2.0 IDE<br />
GIMP &#8211; a complete Image Editing and designing tool &#8211; It will do even opening PSD files and editing. an alternative to photoshop<br />
NVU, Quanta Plus, Kdevelop, Qt designer &#8211; good and powerful web authoring/Programming tools of its own class.<br />
Kbear and gFTP &#8211; FTP clients<br />
Kdesvn &#8211; Directly integrate SVN into KDE and konqueror &#8211; same as tortoise SVN does on windows.<br />
QSvn &#8211; Qt based SVN GUI.<br />
webdav:/ &#8211; client protocol to browse SVN repos.<br />
kopete or Gaim &#8211; The multi protocol messengers &#8211; The complete buddylists in one tool<br />
Skype &#8211; telephony<br />
Firefox &#8211; the killer application<br />
Use Internet explorer 6 with wine and winetools<br />
Mplayer and Xine based multimedia players &#8211; enjoy the media<br />
Amarok &#8211; the jukebox with lot of features<br />
Realplayer and Helix player &#8211; another media player and jukebox system<br />
Myth TV &#8211; the Media Center<br />
K3b &#8211; CD/DVD creation<br />
and a lot of command line tools that do great work.</p>
<p>Al tools within favorite KDE is an amazing environment for a professional developer to work on.<br />
On the other side we have all popular server tools Apache,PHP and MySQL to run everything in a local system<br />
thus we can make each Linux desktop to a powerful web development system.</p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2007/03/09/going-professional-with-linux-desktop.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 6.10 &#8211; Linux for human beings</title>
		<link>http://lijeeshms.com/2007/01/15/ubuntu-610-linux-for-human-beings.html</link>
		<comments>http://lijeeshms.com/2007/01/15/ubuntu-610-linux-for-human-beings.html#comments</comments>
		<pubDate>Sun, 14 Jan 2007 20:52:32 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[My system]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=3</guid>
		<description><![CDATA[I have installed Ubuntu 6.10 on my Home desktop, another Linux that best suits for non techie users. Ubuntu is made from the King OS Debian. Ubuntu Linux really gives the power of Linux in a highly user friendly interface. There are thousands of applications that are available from the real community Linux distribution, Debian. [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 10pt; line-height: 115%">I have installed Ubuntu 6.10 on my Home desktop, </span><span style="font-size: 10pt; line-height: 115%">another Linux that best suits for non techie users</span><span style="font-size: 10pt; line-height: 115%">. </span><span style="font-size: 10pt; line-height: 115%" /><span style="font-size: 10pt; line-height: 115%">Ubuntu is made from the King OS Debian. </span><span style="font-size: 10pt; line-height: 115%">Ubuntu Linux really gives the power of Linux in a highly user friendly interface. </span><span style="font-size: 10pt; line-height: 115%"> </span><span style="font-size: 10pt; line-height: 115%">There are thousands of applications that are available from the real community Linux distribution, Debian.  Ubuntu makes the software package installation from various repositories easier and easier. It will find out software for almost any purpose .</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt">Ubuntu have 4 versions</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt">Ubuntu â€“ GNOME based Desktop</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt">Kubuntu â€“ KDE based Desktop</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt">Edubuntu â€“ For Kids, education purpose â€“ Lot of tools and Games for edutainment</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt">Xubuntu â€“ Xfce based â€“ best for the â€œfeelingâ€ desktop for old systems </span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt"> </span></p>
<h2>Get your freely shipped Ubuntu CDs</h2>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt">it is for everyone who want try Linux â€“ You will get your ubuntu cds free of cost from Canonical Ltd, the Ubuntu company.  </span></p>
<p><span style="font-size: 10pt; line-height: 115%">Order your CDs freely here <a href="https://shipit.ubuntu.com/">https://shipit.ubuntu.com/</a></span></p>
<h2>My Installation</h2>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt">The installation of ubuntu on my system from Ubuntu 6.10 DVD was a simple task. I got the Full GNOME Desktop of Ubuntu while installing.</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt; line-height: 115%">Installation is just 6 mouse clicks. If you find difficulty you have the complete OS in front of the install screen with which we will get help from the internet/and help screens.</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><span style="font-size: 10pt; line-height: 115%">I have a Debian Linux already installaed on another hard drive of my system â€“ very stable and long lasting OS in my system. Other new trail OSes will go on a last partition of my first Disk. Ubuntu 6.10 gives a faster Linux for Multimedia desktop purpose for me now.The Game â€œHalf Life 2â€ works with better performance than windows even in Cedega. With Nvidia driver installed it works amazing. Still I cannot find an alternative to my previous Debain. It is configured and updated lot for working on my system <img src='http://lijeeshms.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</span></p>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal">
<h2>Screenshots</h2>
<p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal"><a title="Install OS with complete Desktop." target="_blank" class="imagelink" href="http://lijeeshms.com/wp-content/uploads/2007/01/install_desktop.jpg" title="GNOME partition manager" href="http://lijeeshms.com/wp-content/uploads/2007/01/qtparted.jpg" rel="lightbox[3]"><img border="><img border="0" alt="Install OS with complete Desktop." id="image6" src="http://lijeeshms.com/wp-content/uploads/2007/01/install_desktop.thumbnail.jpg" /></a> <a target="_blank" class="imagelink" title="GNOME partition manager" href="http://lijeeshms.com/wp-content/uploads/2007/01/qtparted.jpg" rel="lightbox[3]"><img border="0" id="image5" alt="GNOME partition manager" src="http://lijeeshms.com/wp-content/uploads/2007/01/qtparted.thumbnail.jpg" />     </a><a target="_blank" class="imagelink" title="Install OS with complete Desktop." href="http://lijeeshms.com/wp-content/uploads/2007/01/with_video.jpg"><img border="0" id="image4" alt="Install OS with complete Desktop." src="http://lijeeshms.com/wp-content/uploads/2007/01/with_video.thumbnail.jpg" /> </a></p>
<p><br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2007/01/15/ubuntu-610-linux-for-human-beings.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->