<?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>OpenPeta &#187; Installation</title>
	<atom:link href="http://openpeta.com/index.php/category/installation/feed/" rel="self" type="application/rss+xml" />
	<link>http://openpeta.com</link>
	<description>Open Mind ....  Open Source ...</description>
	<lastBuildDate>Wed, 21 Jul 2010 03:20:44 +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>University Timetabling System [ Unitime ] in Linux</title>
		<link>http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/</link>
		<comments>http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 07:39:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Softwares and EBooks]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://openpeta.com/?p=926</guid>
		<description><![CDATA[Steps for Installing and Configuring University Timetabling System [Unitime] Prerequisites 1. Java 1.5 or latest [ http://java.sun.com ] 2. Mysql 5.x [ http://www.mysql.com ] 3. Tomcat 5.5.x [ http://tomcat.apache.org/] Installation [Everything has to be done in root mode ] 1. Download the Unitime source file from http://www.unitime.org/ webiste 2. Extarct the tar file into /opt/unitime [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Steps for Installing and Configuring University Timetabling System [Unitime]</strong><br />
Prerequisites</p>
<blockquote><p>1. Java 1.5 or latest [ http://java.sun.com ]<br />
2. Mysql 5.x [ http://www.mysql.com ]<br />
3. Tomcat 5.5.x [ http://tomcat.apache.org/]</p></blockquote>
<p><strong>Installation</strong> [Everything has to be done in root mode ]<br />
1. Download the Unitime source file from http://www.unitime.org/ webiste</p>
<p>2. Extarct the tar file into /opt/unitime folder [ #mkdir /opt/unitime]</p>
<blockquote><p><strong>#tar -xzvf unitime-3.1_bld248.tar.gz  -C /opt/unitime</strong></p></blockquote>
<p>3. Start your mysql server</p>
<blockquote><p><strong>#/etc/init.d/mysqld start</strong></p></blockquote>
<p>4. Import sql file into mysql server [located in /opt/unitime/doc/mysql folder]</p>
<p>[ Note : MySQL is case sensitive on table names  by default. To change this, add the following line to the /etc/my.cnf  file. This forces MySQL to translate all table names to lowercase before  executing the statement.]</p>
<blockquote>
<pre><strong>lower_case_table_names=1</strong>
</pre>
<p><strong># mysql -u root -p -f &lt;/opt/unitime/doc/mysql/schema.sql<br />
# mysql -u root -p  &lt;/opt/unitime/doc/mysql/woebegon-data.sql </strong></p></blockquote>
<p>5. Connect  mysql client and create the user for timetable database [ the default username is timetable and password is unitime ] , run the following queries in mysql client window.</p>
<blockquote><p><strong>update mysql.user set host=&#8217;localhost&#8217; where user=&#8217;timetable&#8217;;<br />
update mysql.user set password=PASSWORD(&#8216;unitime&#8217;) where user=&#8217;timetable&#8217;;<br />
commit;<br />
grant all on timetable.* to timetable;<br />
flush privileges;</strong></p></blockquote>
<p>I have given sample mysql client window and queries</p>
<blockquote><p>[root@localhost ~]# mysql -u root -p<br />
Enter password:<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 12 to server version: 5.0.22</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt; update mysql.user set host=&#8217;localhost&#8217; where user=&#8217;timetable&#8217;;<br />
Query OK, 1 row affected (0.02 sec)<br />
Rows matched: 1  Changed: 1  Warnings: 0</p>
<p>mysql&gt; update mysql.user set password=PASSWORD(&#8216;unitime&#8217;) where user=&#8217;timetable&#8217;;<br />
Query OK, 0 rows affected (0.00 sec)<br />
Rows matched: 1  Changed: 0  Warnings: 0</p>
<p>mysql&gt; commit;<br />
Query OK, 0 rows affected (0.00 sec)</p>
<p>mysql&gt; grant all on timetable.* to timetable;<br />
Query OK, 0 rows affected (0.02 sec)</p>
<p>mysql&gt; flush privileges;<br />
Query OK, 0 rows affected (0.02 sec)</p>
<p>mysql&gt; exit<br />
Bye</p></blockquote>
<p>6. Copy the UniTime.war file into tomcat webapps folder</p>
<blockquote><p><strong># cp /opt/unitime/web/UniTime.war /opt/apache-tomcat-5.5.29/webapps/</strong></p></blockquote>
<p>7. Create  a file called my_login.conf and add the following line</p>
<blockquote><p><strong>#gedit my_login.conf<br />
Timetabling {<br />
org.unitime.timetable.authenticate.jaas.DbAuthenticateModule required;<br />
};</strong></p></blockquote>
<p>Save the file and exit.</p>
<p>8. Add the following paths at end of /etc/profile file</p>
<blockquote><p><strong>#gedit /etc/profile<br />
export JAVA_OPTS=&#8221;${JAVA_OPTS} -Djava.security.auth.login.config=/opt/unitime/my_login.conf&#8221;<br />
export JAVA_OPTS=&#8221;${JAVA_OPTS} -Djava.awt.headless=true&#8221;<br />
export JAVA_OPTS=&#8221;${JAVA_OPTS} -Xmx512m&#8221;</strong></p></blockquote>
<p>9. Run the following command to set the path</p>
<blockquote><p><strong>#source /etc/profile</strong></p></blockquote>
<p>10. Now , its time to start your tomcat server</p>
<blockquote><p><strong>#/opt/apache-tomcat-5.5.29/bin/startup.sh</strong></p></blockquote>
<p>11. Open your web browser , type the follwoing address</p>
<blockquote><p><strong>http://localhost:8080/UniTime</strong></p></blockquote>
<p>12. If you get the login window , then evrything is ok , otherwise some problem with your installation. the default usename and password of unitime is</p>
<blockquote><p><strong>username : admin<br />
password : admin</strong><br />

<a href='http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/screenshot-timetabling-mozilla-firefox/' title='Screenshot-Timetabling - Mozilla Firefox'><img width="150" height="150" src="http://openpeta.com/wp-content/uploads/2010/06/Screenshot-Timetabling-Mozilla-Firefox-150x150.png" class="attachment-thumbnail" alt="Screenshot-Timetabling - Mozilla Firefox" title="Screenshot-Timetabling - Mozilla Firefox" /></a>
<a href='http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/screenshot-timetabling-mozilla-firefox-1/' title='Screenshot-Timetabling - Mozilla Firefox-1'><img width="150" height="150" src="http://openpeta.com/wp-content/uploads/2010/06/Screenshot-Timetabling-Mozilla-Firefox-1-150x150.png" class="attachment-thumbnail" alt="Screenshot-Timetabling - Mozilla Firefox-1" title="Screenshot-Timetabling - Mozilla Firefox-1" /></a>
<a href='http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/screenshot-timetabling-mozilla-firefox-2/' title='Screenshot-Timetabling - Mozilla Firefox-2'><img width="150" height="150" src="http://openpeta.com/wp-content/uploads/2010/06/Screenshot-Timetabling-Mozilla-Firefox-2-150x150.png" class="attachment-thumbnail" alt="Screenshot-Timetabling - Mozilla Firefox-2" title="Screenshot-Timetabling - Mozilla Firefox-2" /></a>
</p></blockquote>
<p>13. Have a fun with your university scheduling system !!!</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/06/university-timetabling-system-unitime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Microsoft Core Fonts in Ubuntu</title>
		<link>http://openpeta.com/index.php/2010/03/installing-microsoft-core-fonts-in-ubuntu/</link>
		<comments>http://openpeta.com/index.php/2010/03/installing-microsoft-core-fonts-in-ubuntu/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 01:36:44 +0000</pubDate>
		<dc:creator>ANTHONIRAJ</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux on NoteBook PCs]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=681</guid>
		<description><![CDATA[I dont know why all people are always using Times New Roman in  publications and standard documents. Even though lot of alternate standard fonts are available [ Nimbus New Roman , Sans , Serif], only Times New Roman is in the first place. I think this is the domination or popularity of Microsoft windows. Ok [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I dont know why all people are always using Times New Roman in  publications and standard documents. Even though lot of alternate standard fonts are available [ Nimbus New Roman , Sans , Serif], only Times New Roman is in the first place. I think this is the domination or popularity of Microsoft windows. Ok you dont bother about how to use Microsoft core fonts in linux.  we have all options in linux , only thing is that we need to find it. For installing Mscorefonts simply search in Ubuntu  synaptic package manager with &#8220;microsoft core fonts&#8221; , you can find one package &#8220;ttf-mscorefonts-installer&#8221; , just mark this package and install it.</p>
<p style="text-align: justify;"><a href="http://openpeta.com/wp-content/uploads/2010/03/Screenshot-Synaptic-Package-Manager-2.png"><img class="aligncenter size-medium wp-image-682" title="Synaptic Package Manager" src="http://www.openpeta.com/wp-content/uploads/2010/03/Screenshot-Synaptic-Package-Manager--300x153.png" alt="" width="300" height="153" /></a></p>
<p>This package allows for easy installation of the Microsoft True Type Core Fonts for the Web including:</p>
<ul>
<li>Andale Mono</li>
<li> Arial Black</li>
<li> Arial (Bold, Italic, Bold Italic)</li>
<li> Comic Sans MS (Bold)</li>
<li> Courier New (Bold, Italic, Bold Italic)</li>
<li> Georgia (Bold, Italic, Bold Italic)</li>
<li> Impact</li>
<li> Times New Roman (Bold, Italic, Bold Italic)</li>
<li> Trebuchet (Bold, Italic, Bold Italic)</li>
<li> Verdana (Bold, Italic, Bold Italic)</li>
<li> Webdings</li>
</ul>
<p>You will need an Internet connection to download these fonts if you  don&#8217;t already have them.</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/03/installing-microsoft-core-fonts-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Auto Shutdown Software for Linux</title>
		<link>http://openpeta.com/index.php/2010/03/auto-shutdown-software-for-linux/</link>
		<comments>http://openpeta.com/index.php/2010/03/auto-shutdown-software-for-linux/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 12:22:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux on NoteBook PCs]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/index.php/auto-shutdown-software-for-linux/</guid>
		<description><![CDATA[You are downloading softwares or movies in your desktop Linux , Your Internet connection is limited to GB usage. or only night hours internet is free. In that situation, If  you want to turn off or shutdown your computer after the free usage time. GShutdown software is doing that task for you. GShutdown is an [...]]]></description>
			<content:encoded><![CDATA[<p>You are downloading softwares or movies in your desktop Linux , Your Internet connection is limited to GB usage. or only night hours internet is free. In that situation, If  you want to turn off or shutdown your computer after the free usage time. GShutdown software is doing that task for you.</p>
<p><a href="http://openpeta.com/wp-content/uploads/2010/03/ScreenshotGShutdown1.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="Screenshot-GShutdown" src="http://openpeta.com/wp-content/uploads/2010/03/ScreenshotGShutdown_thumb1.png" border="0" alt="Screenshot-GShutdown" width="149" height="244" /></a></p>
<p>GShutdown is an advanced shutdown utility which allows you to schedule the shutdown or the restart of your computer, or logout your actual session.</p>
<p><strong>Installing GShutdown In Ubuntu</strong></p>
<p>You can use Synaptic Package manager or Ubuntu Software center to install this software. or download the source code from <a title="http://gshutdown.tuxfamily.org" href="http://gshutdown.tuxfamily.org">http://gshutdown.tuxfamily.org</a> site and install manually in your system.</p>
<p><a href="http://www.openpeta.com/wp-content/uploads/2010/03/ScreenshotAppnrGetUbuntuApplicationsMozillaFirefox1.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="Screenshot-Appnr - Get Ubuntu Applications! - Mozilla Firefox" src="http://openpeta.com/wp-content/uploads/2010/03/ScreenshotAppnrGetUbuntuApplicationsMozillaFirefox_thumb11.png" border="0" alt="Screenshot-Appnr - Get Ubuntu Applications! - Mozilla Firefox" width="244" height="126" /></a></p>
<p>GShutdown is a free software under the GPL license. The graphical user interface uses GTK+2.</p>
<p><strong>Features :</strong></p>
<ul>
<li>Compatible with GNOME, KDE and XFCE.</li>
<li>Compatible with GDM and KDM to shutdown, reboot or close the current session, without being root.</li>
<li>The ability to choose a command to stop the computer (like &#8220;sudo poweroff&#8221;, for example)</li>
<li>Systray icon</li>
<li>Visual notifications (to warn the user that his computer is going to be stopped in a few seconds !)</li>
<li>Three different ways to schedule the turn off time : « at time and date », « after a delay », « now ».</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/03/auto-shutdown-software-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installation of OpenLink Virtuoso Server in Ubuntu</title>
		<link>http://openpeta.com/index.php/2010/02/virtuoso/</link>
		<comments>http://openpeta.com/index.php/2010/02/virtuoso/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:41:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=624</guid>
		<description><![CDATA[OpenLink Virtuoso is the first CROSS PLATFORM Universal Server to implement Web, File, and Database server functionality alongside Native XML Storage, and Universal Data Access Middleware, as a single server solution. OpenLink Virtuoso plays a vital role for semantic web programming, it can work as a solid SPARQL end point, which can be supported by [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">OpenLink Virtuoso is the first CROSS PLATFORM Universal Server to implement Web, File, and Database server functionality alongside Native XML Storage, and Universal Data Access Middleware, as a single server solution. OpenLink Virtuoso plays a vital role for semantic web programming, it can work as a solid SPARQL end point, which can be supported by almost all endpoint interfaces. There are following steps to install and start OpenLink Virtuoso universal server-</p>
<p><span style="text-decoration: underline">1. Install Dependencies</span></p>
<p>To install OpenLink Virtuoso first of all following dependencies are needed-</p>
<table border="0" cellspacing="0" cellpadding="2" width="501">
<tbody>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">Package </span></span></td>
<td width="107" valign="top">Version</td>
<td width="272" valign="top">From</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">autoconf </span></span></td>
<td width="107" valign="top">2.57</td>
<td width="272" valign="top">http://www.gnu.org/software/autoconf/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">automake </span></span></td>
<td width="107" valign="top">1.9</td>
<td width="272" valign="top">http://www.gnu.org/software/automake/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">libtool</span></span></td>
<td width="107" valign="top">1.5.16</td>
<td width="272" valign="top">http://www.gnu.org/software/libtool/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">flex </span></span></td>
<td width="107" valign="top">2.5.33</td>
<td width="272" valign="top">http://www.gnu.org/software/non-gnu/flex/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">bison</span></span></td>
<td width="107" valign="top">2.3</td>
<td width="272" valign="top">http://www.gnu.org/software/bison/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">gperf </span></span></td>
<td width="107" valign="top">2.7.2</td>
<td width="272" valign="top">http://www.gnu.org/software/gperf/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">gawk</span></span></td>
<td width="107" valign="top">3.1.1</td>
<td width="272" valign="top">http://www.gnu.org/software/gawk/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">m4 </span></span></td>
<td width="107" valign="top">1.4.1</td>
<td width="272" valign="top">http://www.gnu.org/software/m4/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">make </span></span></td>
<td width="107" valign="top">3.79.1</td>
<td width="272" valign="top">http://www.gnu.org/software/make/</td>
</tr>
<tr>
<td width="120" valign="top"><span style="color: #000000"><span style="line-height: normal;font-size: small">OpenSSL </span></span></td>
<td width="120" valign="top">0.9.7i</td>
<td width="273" valign="top">http://www.openssl.org/</td>
</tr>
</tbody>
</table>
<p><span style="color: #00ff00"> </span></p>
<p style="text-align: left">First of all check all the dependencies whether installed or not. (Version is important!)</p>
<p>To check the version use following sequence.</p>
<div><em> </em></p>
<p style="margin-bottom: 0cm"><span style="font-style: normal"><em> </em></span></p>
<blockquote>
<p style="margin-bottom: 0cm"><em>#autoconf &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em># automake &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#libtoolize &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#flex &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#bison &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#gperf &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#gawk &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#m4 &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#make &#8211;version</em></p>
<p style="margin-bottom: 0cm"><em>#openssl version</em></p>
</blockquote>
<div>
<p><em>During checking of the dependencies you will know whether they are installed or not and if not installed, for example,  you will get  something like-</em></p>
<p><em>The program &#8216;autoconf&#8217; is currently not installed.  You can install it by typing:</em></p>
<div>
<blockquote><p><em>apt-get install autoconf</em></p></blockquote>
</div>
<p><em>Then why should you wait!! install the packages using &#8220;apt-get&#8221; one by one in the sequence as checking the version.</em></p>
</div>
<div><span style="font-style: normal"><em>OR </em></span></div>
<div><span style="font-style: normal"><em>you can install these from synaptic package manager.</em></span></div>
<div><span style="font-style: normal"> </span></div>
<div><span style="font-style: normal"><em><br />
</em></span></div>
<blockquote>
<div><em>2. </em><em>run this command  apt-get install libssl-dev from your terminal</em></div>
<div><em>3. Download <span style="font-style: normal">OpenLink Virtuoso from source forge (<a href="http://sourceforge.net/projects/virtuoso/">Link</a>)</span></em></div>
<div><span style="font-style: normal"><em>4. Extract the package in any directory.</em></span></div>
<div><span style="font-style: normal"><em>5. Go to the directory where you have extracted the package.</em></span></div>
<div><em>6. It is better to run </em>autogen.sh by typing ./autogen.sh, which checks for the presence and right version of some of the required components, and if it reports any missing package then install that package.</div>
<div><em>7. Set following  environmental variable by typing (one by one)</em> -</div>
<div>CFLAGS=&#8221;-O2&#8243;<br />
export CFLAGS</div>
<div><span style="font-style: normal"><em>8. type  `./configure&#8217; to configure the package for your system.</em></span></div>
<div><span style="font-style: normal"><em>9. Type `make&#8217; to compile the package.</em></span></div>
<div><span style="font-style: normal"><em>10. Type `make install&#8217; to install the programs and any data files and documentation. </em></span></div>
<div><span style="font-style: normal"><em><br />
</em></span></div>
</blockquote>
<div><span style="font-style: normal"><em>To start the server you have two steps-</em></span></div>
<blockquote>
<div><span style="font-style: normal"><em>1. Go to &#8216;cd  /usr/local/virtuoso-opensource/var/lib/virtuoso/db&#8217;</em></span></div>
<div><span style="font-style: normal"><em>2. then type &#8216;/usr/local/virtuoso-opensource/bin/virtuoso-t -f &amp;&#8217;</em></span></div>
</blockquote>
<div><span style="font-style: normal"><em>Finally use the server from your browser by typing &#8216;http://localhost:8890/&#8217; in the address bar.</em></span></div>
<div><span style="font-style: normal"><em>Use the powerful multipurpose opensource server !!</em></span></div>
<div><span style="font-style: normal"><em>Note:- All documentations are available at <a href="http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main">Wiki Page</a> of  OpenLink Virtuoso.</em></span></div>
<blockquote>
<div><span style="font-style: normal"><em>To grant the SPARQL to update and insert data into a graph-</em></span></div>
<div><span style="font-style: normal"><em>1. Go to &#8220;http://localhost:8890/conductor&#8221; and login as &#8220;dba&#8221; (Uname and Pass =&#8221; dba&#8221;)</em></span></div>
<div><span style="font-style: normal"><em>2. Click on &#8220;Interactive SQL (ISQL)&#8221;.</em></span></div>
<div><span style="font-style: normal"><em>3. In ISQL window type the commad</p>
<pre>GRANT ALL PRIVILEGES TO "SPARQL";</pre>
<p></em></span></div>
</blockquote>
</div>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/02/virtuoso/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use Python and SPE in Windows ?</title>
		<link>http://openpeta.com/index.php/2010/02/use-python-and-spe-in-windows-2/</link>
		<comments>http://openpeta.com/index.php/2010/02/use-python-and-spe-in-windows-2/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 19:14:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Installation]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=610</guid>
		<description><![CDATA[If you are a python programmer and keen to use python in windows environment with the most popular Stani&#8217;s Python Editor IDE then follow the given below steps- Download and install Python 2.6 from Here (http://www.python.org/download/). for your appropriate windows (32 or 64 bit) Download &#38; Install wxPython (NOT wxWidgets) from Here. (http://www.wxpython.org/download.php) Download &#38; Install SPE from Here(http://developer.berlios.de/project/showfiles.php?group_id=4161). [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a python programmer and keen to use python in windows environment with the most popular Stani&#8217;s Python Editor IDE then follow the given below steps-</p>
<ol>
<li>Download and install Python 2.6 from <a href="http://www.python.org/download/">Here </a><em>(http://www.python.org/download/)</em>. for your appropriate windows (32 or 64 bit)</li>
<li>Download &amp; Install wxPython (NOT wxWidgets) from <a href="http://www.wxpython.org/download.php">Here</a>. <em>(http://www.wxpython.org/download.php)</em></li>
<li>Download &amp; Install SPE from <a href="http://developer.berlios.de/project/showfiles.php?group_id=4161">Here</a><em>(http://developer.berlios.de/project/showfiles.php?group_id=4161)</em>. Get this file: &#8220;SPE-0.8.4.c-wx2.6.1.0-no_setup.zip&#8221;.</li>
<li>Unzip it to somewhere you will remember, but <em>don&#8217;t</em> rename the folder anything other than &#8220;_spe&#8221;.</li>
<li>Go inside the _spe directory and double click SPE.py.</li>
<li>At this point your  new SPE Python IDE should start up. Enjoy Python&#8230;.</li>
</ol>
<p><span style="color: #ff0000;">Note:</span> you will have to set the environmental veritable in windows for python. For Xp user,</p>
<blockquote><p>Right click on MyComputer=&gt;Properties=&gt;Advanced=&gt;Environmental Variable</p>
<p>and then select &#8220;Path&#8221; and click edit, add the python directory (c:\Python26)</p>
<p>followed by a semi colon at the end of the variable Value.(eg- xxxxxx<span style="color: #ff0000;"><span style="text-decoration: underline;"><span style="color: #000000;"><em>;C:\Python26</em></span></span></span>)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/02/use-python-and-spe-in-windows-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[SOLVED] Ubuntu 9.10 Wireless [WIFI] Connection Problem</title>
		<link>http://openpeta.com/index.php/2010/01/solved-ubuntu-9-10-wireless-wifi-connection-problem/</link>
		<comments>http://openpeta.com/index.php/2010/01/solved-ubuntu-9-10-wireless-wifi-connection-problem/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 22:43:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux on NoteBook PCs]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Sourc]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=594</guid>
		<description><![CDATA[Ubuntu 9.10 [code name : karmic koala ] has lot of bugs comparing previous releases and some of features have been removed in 9.10 version such as Login Screen GDM Manager . Hope Ubuntu community will fix everything soon in coming releases. Wireless connection is also not working in latest broadcom wifi hardware . Due to license problem Ubuntu does not include the broadcom wifi driver [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Ubuntu 9.10 [code name : karmic koala ] has lot of bugs comparing previous releases and some of features have been removed in 9.10 version such as Login Screen GDM Manager . <span style="line-height: 22px; font-size: 16px;">Hope Ubuntu community will fix everything soon in coming releases. <span style="line-height: 19px; font-size: 13px;">Wireless connection is also not working in latest broadcom wifi hardware . Due to license problem Ubuntu does not include the broadcom wifi driver by default . User has to update manually using Ethernet internet connection after that they can activate driver in System -&gt; Administration -&gt; Hardware Drivers option. But the problem of this method is internet connection . What the user supposed to do if they do not have Ethernet internet connection. The solution is installing driver from source. Broadcom company providing wifi drivers for Linux . Steps are given here for how to do enable wifi driver using this method</span></span></p>
<ul>
<li>Download the latest driver from Broadcom website</li>
</ul>
<blockquote><p><a href="http://www.broadcom.com/support/802.11/linux_sta.php">http://www.broadcom.com/support/802.11/linux_sta.php</a></p></blockquote>
<p><a href="http://www.broadcom.com/support/802.11/linux_sta.php"></a> These packages contain Broadcom's IEEE 802.11a/b/g/n hybrid Linux® device driver for use with Broadcom's BCM4311-,                      BCM4312-, BCM4321-, and BCM4322-based hardware.<span style="line-height: 26px; font-size: 19px;"> </span></p>
<div id="_mcePaste">
<ul>
<li> Setup the directory by untarring the proper tarball:</li>
</ul>
</div>
<div id="_mcePaste" style="padding-left: 60px;">For 32 bit: 	hybrid-portsrc.tar.gz</div>
<div id="_mcePaste" style="padding-left: 60px;">For 64 bit: 	hybrid-portsrc-x86_64.tar.gz</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># mkdir hybrid_wl</div>
<div id="_mcePaste" style="padding-left: 30px;"># cd hybrid_wl</div>
<div id="_mcePaste" style="padding-left: 30px;"># tar xzf &lt;path&gt;/hybrid-portsrc.tar or &lt;path&gt;/hybrid-portsrc-x86_64.tar.gz</div>
</blockquote>
<div id="_mcePaste">
<ul>
<li> Build the driver as a Linux loadable kernel module (LKM):</li>
</ul>
</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># make clean   (optional)</div>
<div id="_mcePaste" style="padding-left: 30px;"># make</div>
</blockquote>
<div id="_mcePaste" style="padding-left: 30px;">When the build completes, it will produce a wl.ko file in the top level directory.</div>
<div id="_mcePaste">
<ul>
<li>Remove any other drivers for the Broadcom wireless.</li>
</ul>
</div>
<div id="_mcePaste" style="text-align: justify; padding-left: 30px;">There are several open source drivers that are used to drive Broadcom 802.11 chips such as b43 and ssb. If any of these are present they need to be removed before this driver can be installed.  Any previous revisions of the wl driver also need to be removed.</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># lsmod  | grep "b43\|ssb\|wl"</div>
</blockquote>
<div id="_mcePaste" style="padding-left: 30px;">If any of these are installed, remove them:</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># rmmod b43</div>
<div id="_mcePaste" style="padding-left: 30px;"># rmmod ssb</div>
<div id="_mcePaste" style="padding-left: 30px;"># rmmod wl</div>
</blockquote>
<div id="_mcePaste" style="padding-left: 30px;">To blacklist these drivers and prevent them from loading in the future:</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># echo "blacklist ssb" &gt;&gt; /etc/modprobe.d/blacklist.conf</div>
<div id="_mcePaste" style="padding-left: 30px;"># echo "blacklist b43" &gt;&gt; /etc/modprobe.d/blacklist.conf</div>
</blockquote>
<div id="_mcePaste">
<ul>
<li>Insmod the driver.</li>
</ul>
</div>
<div id="_mcePaste" style="text-align: justify; padding-left: 30px;">If you were already running a previous version of wl, you'll want to provide a clean transition from the older driver. (The path to previous driver is usually /lib/modules/&lt;kernel-  version&gt;/kernel/net/wireless)</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># rmmod wl</div>
<div id="_mcePaste" style="padding-left: 30px;"># mv &lt;path-to-prev-driver&gt;/wl.ko &lt;path-to-prev-driver&gt;/wl.ko.orig</div>
<div id="_mcePaste" style="padding-left: 30px;"># cp wl.ko &lt;path-to-prev-driver&gt;/wl.ko</div>
<div id="_mcePaste" style="padding-left: 30px;"># depmod</div>
<div id="_mcePaste" style="padding-left: 30px;"># modprobe wl</div>
</blockquote>
<div id="_mcePaste" style="padding-left: 30px;">Otherwise, if you have not previously installed a wl driver do this:</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># modprobe lib80211</div>
<div id="_mcePaste" style="padding-left: 30px;"># insmod wl.ko</div>
</blockquote>
<div id="_mcePaste" style="padding-left: 30px;">wl.ko is now operational.  It may take several seconds for the Network Manager to notice a new network driver has been installed and show the surrounding wireless networks.</div>
<div style="padding-left: 30px;">Finally add these lines into /etc/profile file</div>
<blockquote>
<div style="padding-left: 30px;">#vim /etc/profile</div>
<div style="padding-left: 30px;">rmmod ssb</div>
<div style="padding-left: 30px;">modprobe lib80211</div>
<div style="padding-left: 30px;">insmod &lt;path-to-wl.ko-file &gt;/wl.ko</div>
</blockquote>
<p>Reference : Broadcom Website</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/01/solved-ubuntu-9-10-wireless-wifi-connection-problem/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Checking your CD / DVD ISO images after downloading . . .</title>
		<link>http://openpeta.com/index.php/2010/01/checking-your-cd-dvd-iso-images-after-downloading/</link>
		<comments>http://openpeta.com/index.php/2010/01/checking-your-cd-dvd-iso-images-after-downloading/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 01:17:30 +0000</pubDate>
		<dc:creator>ANTHONIRAJ</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux on NoteBook PCs]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=590</guid>
		<description><![CDATA[Oops , My Fedora dvd is getting struck . What the hell is this ? why this DVD is not working  properly ? Oh my God after 9 hours of downloading , I got problem with DVD . Everyone could have murmured or shouted these words them self while they are facing some problem with [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Oops , My Fedora dvd is getting struck .</p>
<p>What the hell is this ? why this DVD is not working  properly ?</p>
<p>Oh my God after 9 hours of downloading , I got problem with DVD .</p></blockquote>
<p>Everyone could have murmured or shouted these words them self while they are facing some problem with installing ISO images. Last week  i downloaded Fedora 12 DVD -3.0 GB. but i got problem with installation due to corrupted media . I spent one day for downloading that iso image , i dont know why this iso image get corrupted . any way i tried to find the answer .  Finally i found some tips and tricks with downloading ISO images.</p>
<p><strong>Reason for corrupted ISO images</strong></p>
<ol>
<li>Download Interruption or incomplete download &#8211; Use proper download manager or accelerator for downloading ISO images.</li>
<li>The ISO image might be corrupted while burning with high speed . So use 2x /4x speed in your burning application to avoid this problem</li>
<li>Forget to check with hash code  &#8211; All ISO images comes with some hash code for checking its content . user need to check after download it.</li>
</ol>
<p><strong>Checking ISO images using SHA1SUM or MD5SUM</strong></p>
<p><strong> </strong>The first two problem could be easily solved using download manager and setting burning speed . here some information about checking ISO image has been given for Linux users</p>
<ul>
<li>Download ISO images , For example :  Fedora-12-i386-DVD.iso</li>
<li>Download the MD5SUM or SHA1SUM hash keys from fedora website &#8211; Save the second line into one text file [check.txt]</li>
</ul>
<blockquote>
<pre>Hash: SHA1
<strong>f0ad929cd259957e160ea442eb80986b5f01daaffdbcc7e5a1840a666c4447c7</strong> *Fedora-12-i386-DVD.iso
</pre>
</blockquote>
<ul>
<li>Now use sha1sum or md51sum command for checking your ISO image . In terminal type the following command</li>
</ul>
<blockquote><p># sha1sum    -c check.txt</p>
<p>or</p>
<p># md5sum    -c check.txt</p></blockquote>
<ul>
<li>If the file has no error then the output of above commands would be</li>
</ul>
<blockquote>
<p style="padding-left: 90px;">Fedora-12-i386-DVD.iso: OK</p>
</blockquote>
<ul>
<li>Else some error message would be displayed .</li>
</ul>
<p>Note : The format of the checksum file is so important , it has to be like</p>
<blockquote><p>&lt;checksum value&gt;&lt;TWO WHITESPACES&gt;&lt;name of file to be checked&gt;</p></blockquote>
<p>In our case , the check.txt sould have</p>
<blockquote><p>f0ad929cd259957e160ea442eb80986b5f01daaffdbcc7e5a1840a666c4447c7  Fedora-12-i386-DVD.iso</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/01/checking-your-cd-dvd-iso-images-after-downloading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six Easy Steps to Compiling and Installing Linux Kernel</title>
		<link>http://openpeta.com/index.php/2010/01/six-easy-steps-to-compiling-and-installing-linux-kernel/</link>
		<comments>http://openpeta.com/index.php/2010/01/six-easy-steps-to-compiling-and-installing-linux-kernel/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 03:59:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux on NoteBook PCs]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>
		<category><![CDATA[compilation]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=580</guid>
		<description><![CDATA[Compiling Linux Kernel is used for making your system as very customizable one . User can change kernel modules and device drivers based on their need . Suppose if i want to disable wireless support in my desktop PC [because wifi card is not available in my system] . i can recompile and disable that [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">
<p style="text-align: justify;">Compiling Linux Kernel is used for making your system as very customizable one . User can change kernel modules and device drivers based on their need . Suppose if i want to disable wireless support in my desktop PC  [because wifi card is not available in my system] . i can recompile and disable that option in my existing kernel. In this article , the kernel compilation has been described in Six Easy Steps</p>
<div style="padding-left: 120px;">
<div id="_mcePaste">1. Download the latest version of kernel from</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 60px;">http://kernel.org</div>
</blockquote>
<div id="_mcePaste">The Latest kernel at the time of writing this  documentation</div>
<div id="_mcePaste" style="padding-left: 60px;">linux-2.6.32.3.tar.gz</div>
<div id="_mcePaste" style="padding-left: 60px;">or</div>
<div id="_mcePaste" style="padding-left: 60px;">linux-2.6.32.3.tar.gz</div>
<div id="_mcePaste">2. Unzip or Extract the archive file [Need Root Privileges ]</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># su</div>
<div id="_mcePaste" style="padding-left: 30px;"># tar -xzvf linux-2.6.32.3.tar.gz -C /usr/src</div>
<div id="_mcePaste" style="padding-left: 30px;">or</div>
<div id="_mcePaste" style="padding-left: 30px;"># tar -xjvf linux-2.6.32.3.tar.bz2 -C /usr/src</div>
</blockquote>
<div id="_mcePaste">3. Configure Modules and Drivers [Enable or Disable Drivers Here]</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># make menuconfig   (for text mode)</div>
<div id="_mcePaste" style="padding-left: 30px;">or</div>
<div id="_mcePaste" style="padding-left: 30px;"># make xconfig      (for xwindow)</div>
<div id="_mcePaste" style="padding-left: 30px;">or</div>
<div id="_mcePaste" style="padding-left: 30px;"># make gconfig      (for GNOME &#8211; Recommended)</div>
</blockquote>
<div id="_mcePaste">5. Compile Kernel [make command will take min 15 minutes to compile the kernel ]</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># make</div>
<div id="_mcePaste" style="padding-left: 30px;"># make modules</div>
<div id="_mcePaste" style="padding-left: 30px;"># make modules_install</div>
</blockquote>
<div id="_mcePaste">6. Install Kernel</div>
<blockquote>
<div id="_mcePaste" style="padding-left: 30px;"># make install</div>
</blockquote>
<div>Thats it. Now You can use new kernel in your favorite Linux flavors .</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2010/01/six-easy-steps-to-compiling-and-installing-linux-kernel/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Recover UBUNTU GRUB LOADER After Windows Installation</title>
		<link>http://openpeta.com/index.php/2009/07/how-to-recover-ubuntu-grub-after-windows-installation/</link>
		<comments>http://openpeta.com/index.php/2009/07/how-to-recover-ubuntu-grub-after-windows-installation/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 15:04:56 +0000</pubDate>
		<dc:creator>RAJARAJAN</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux on NoteBook PCs]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/index.php/how-to-recover-ubuntu-grub-after-windows-installation/</guid>
		<description><![CDATA[Today i destroyed my Grub via installing windows on my Lenovo Thinkpad. After a long research i found the way to recover the ubuntu after the windows installation. Here is the step by step guide to recover it.You will need a LIVE cd if you are going to recover an Ubuntu Box.Download Ubuntu Jaunty, Karmic [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Today i destroyed my Grub via installing windows on my Lenovo Thinkpad. After a long research i found the way to recover the ubuntu after the windows installation. Here is the step by step guide to recover it.You will need a LIVE cd if you are going to recover an Ubuntu Box.Download Ubuntu Jaunty, Karmic whatever you want.Open the system with Live CD (I assume you are using Ubuntu Live CD).</p>
<p align="justify">Press Alt+F2 and enter gnome-terminal command.And continue by entering :</p>
<blockquote>
<p align="justify">$sudo fdisk -l<br />
This will show your partition table.Here is my table to understand it better :<br />
/dev/sda1 29 8369 66999082+ 83 Linux<br />
/dev/sda2 * 8370 13995 45190845 7 HPFS/NTFS<br />
/dev/sda3 13996 14593 4803435 5 Extended<br />
/dev/sda5 13996 14593 4803403+ 82 Linux swap / Solaris</p></blockquote>
<p align="justify">Now i will mount Linux (sda1 here), i have no external boot partition as you can see.(IF YOU HAVE external one, do not forget to mount it! )</p>
<blockquote>
<p align="justify">$sudo mount /dev/sda1 /mnt<br />
$sudo mount &#8211;bind /dev /mnt/dev<br />
$sudo mount &#8211;bind /proc /mnt/proc</p></blockquote>
<p align="justify">The following command is optional (it copies resolv.conf)</p>
<blockquote>
<p align="justify">$sudo cp /etc/resolv.conf /mnt/etc/resolv.conf</p>
</blockquote>
<p align="justify">Now chroot into the enviroment we made :</p>
<blockquote>
<p align="justify">$sudo chroot /mnt</p>
</blockquote>
<p>After chrooting, you do not need to add sudo before your commands because from now, you will run commands as root.<br />
You may want to edit /etc/default/grub file to fit your system (timeout options etc)</p>
<blockquote><p>#nano -w /etc/default/grub</p></blockquote>
<p>Play with the options if you want.(But do not forget to give grub-update command if you saved it <img src='http://openpeta.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<p align="justify">Now install/recover Grub2 via :</p>
<blockquote>
<p align="justify">#grub-install /dev/sda</p>
</blockquote>
<p align="justify">However you may get errors with that code like me.If so please use this command :</p>
<blockquote>
<p align="justify">#grub-install &#8211;recheck /dev/sda</p>
</blockquote>
<p align="justify">Now you can exit the chroot, umount the system and reboot your box :</p>
<blockquote>
<p align="justify">#exit<br />
$sudo umount /mnt/dev<br />
$sudo umount /mnt/proc<br />
$sudo umount /mnt<br />
$sudo reboot</p></blockquote>
<p><a href="http://www.rajarajan.in"><em><strong>Rajarajan</strong></em></a><strong> <em>is a software developer, writes about useful technical information on his</em> </strong><a href="http://www.rajarajan.in/"><em><strong>blog</strong></em></a><em><strong>.</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/07/how-to-recover-ubuntu-grub-after-windows-installation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Typing Local Languages [ Eg: Tamil ] in Firefox</title>
		<link>http://openpeta.com/index.php/2009/04/typing-local-languages-eg-tamil-in-firefox/</link>
		<comments>http://openpeta.com/index.php/2009/04/typing-local-languages-eg-tamil-in-firefox/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 08:07:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux on NoteBook PCs]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openpeta.com/?p=119</guid>
		<description><![CDATA[English is the common language for all operating system and programming languages. If end user wants to use the particular software or Operating System ,the product has to support Internationalisation [I18N] or localisation . Now a days all products are coming with those options. In this article , let us discuss about the how to [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-8096298918291230";
/* 234x60, OpenPeta,created 5/2/09 */
google_ad_slot = "6700285981";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
English is the common language for all operating system and programming languages. If end user wants to use the particular software or Operating System ,the product has to support Internationalisation [I18N] or localisation . Now a days all products are coming with those options. In this article , let us discuss about the how to type local languages in Linux like Ubuntu and firefox. First i am going to show  how to type in &#8220;Tamil&#8221; language with firefox. Based on your comments we can discuss about  typing in other languages.</p>
<p>Typing Tamil  in Firefox Browser</p>
<p>1. You need &#8220;TamilVisai&#8221; [ old name was Tamilkey] addon for typing Tamil in firefox, so click the link given below , in that page select &#8220;Add to Firefox&#8221; button.</p>
<p style="text-align: center;"><a title="Tamil Key Addon" href="https://addons.mozilla.org/en-US/firefox/addon/2994" target="_blank"> Click here to Install Tamil Visai Addon for Firefox</a></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-121" title="Opening Tamil Visai Page" src="http://www.openpeta.com/wp-content/uploads/2009/04/tamil1.png" alt="Opening Tamil Visai Page" width="589" height="427" /></p>
<p>2. Now Another pop-up window will open , There u select &#8220;install&#8221;  button . Installation will take one or two minutes [Based on your Internet Speed]</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-122" title="Installing Tamil Visai" src="http://www.openpeta.com/wp-content/uploads/2009/04/tamil2.png" alt="Installing Tamil Visai" width="584" height="432" /></p>
<p>3. After installing TamilVisai Restart Your firefox.</p>
<p>4. If you want to type in tamil in any text box or text area , simply right click on your mouse and select  Tamil vissai option  or press Alt+F8 . based on your type wring method .you can choose any one of the type options , If you know Tamil typewriting then choose Tamill99 option , otherwise choose Anjal [Based on phonetics].</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-123" title="Typing Tamil in Google Search Box" src="http://www.openpeta.com/wp-content/uploads/2009/04/tamil3.png" alt="Typing Tamil in Google Search Box" width="602" height="406" /></p>
<p>5. For Type in English Press F9</p>
]]></content:encoded>
			<wfw:commentRss>http://openpeta.com/index.php/2009/04/typing-local-languages-eg-tamil-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
