<?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>Animesh Kumar {itsAnimesh} &#187; Ubuntu</title>
	<atom:link href="http://itsanimesh.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://itsanimesh.com</link>
	<description>Tech Geek / FOSS Enthusiasts</description>
	<lastBuildDate>Sun, 10 Jul 2011 04:49:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Access MSSQL with Python!!!</title>
		<link>http://itsanimesh.com/2010/04/24/access-mssql-with-python/</link>
		<comments>http://itsanimesh.com/2010/04/24/access-mssql-with-python/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 08:25:46 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=1807</guid>
		<description><![CDATA[I started using Python a while ago and one of the things I need to do is to be able to connect to Microsoft SQL server from Linux servers&#8230; Its suprising that only a few projects are alive for it&#8230; One of them is the commercial MxODBC from eGenix, while the other is called pymssql&#8230; ...]]></description>
			<content:encoded><![CDATA[<p>I started using Python a while ago and one of the things I need to do is to be able to connect to Microsoft SQL server from Linux servers&#8230; Its suprising that only a few projects are alive for it&#8230; One of them is the commercial MxODBC from <a title="eGenix" href="http://www.egenix.com/products/python/mxODBC/" target="_blank">eGenix</a>, while the other is called pymssql&#8230; I gave pymssql a try and it worked almost at once on my Ubuntu machine&#8230;</p>
<p>First I installed the prerequisites: freetds and the python headers:</p>
<pre>aptitude install python2.5-dev freetds-dev</pre>
<p>There might be some other packages that are needed but that was the only ones I needed to install&#8230;. Then I decompressed the latest   release from <a title="pymssql" href="https://sourceforge.net/project/showfiles.php?group_id=40059" target="_blank">pymssql</a> at   sourceforge and installed:</p>
<p><strong>NOTE :</strong> for me the latest package did not work so I used <strong>pymssql-0.8.0</strong></p>
<pre>tar -xvzf pymssql-0.8.0.tar.gz
cd pymssql-0.8.0
python setup.py install</pre>
<p>Now you can test it out  by creating your own test script and it is as follows :</p>
<pre>import pymssql
conn = pymssql.connect(host='&lt;hostname&gt;', user='&lt;username&gt;', password='&lt;passwd&gt;', database='&lt;dbname&gt;')
cur = conn.cursor()
cur.execute('SELECT * FROM tbABCD')
row = cur.fetchone()
while row:
 print "ID=%s, Name=%s, Address=%s" % (row[0], row[1], row[2])
 row = cur.fetchone()
conn.close()</pre>
<p>The script ran perfectly&#8230;<br />
For more information on pymssql you can view its <a href="http://pymssql.sourceforge.net/documentation.php">documentation here</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2010/04/24/access-mssql-with-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate Hardware Information on Linux!!!</title>
		<link>http://itsanimesh.com/2010/02/08/generate-hardware-information-on-linux/</link>
		<comments>http://itsanimesh.com/2010/02/08/generate-hardware-information-on-linux/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 08:45:46 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=1633</guid>
		<description><![CDATA[You can generate a nice report (HTML or XML format) of your laptop/desktop hardware information by executing this command: lshw -html &#62; sysinfo.html You may need to install it first&#8230; For Debian and Ubuntu users installation is simple.. sudo aptitude install lshw You can find the detailed information about lshw from the following page: http://www.ezix.org/project/wiki/HardwareLiSter]]></description>
			<content:encoded><![CDATA[<p>You can generate a nice report (HTML or XML format) of your laptop/desktop hardware information by executing this command:</p>
<p style="text-align: center;"><code><strong>lshw -html &gt; sysinfo.html</strong></code></p>
<p>You may need to install it first&#8230; For Debian and Ubuntu users installation is simple..</p>
<p><code>sudo aptitude install lshw</code></p>
<p>You can find the detailed information about <strong>lshw</strong> from the following page: <a href="http://www.ezix.org/project/wiki/HardwareLiSter" target="_blank">http://www.ezix.org/project/wiki/HardwareLiSter</a></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2010/02/08/generate-hardware-information-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto : Twitter from Command Line&#8230;</title>
		<link>http://itsanimesh.com/2010/01/25/howto-twitter-from-command-line/</link>
		<comments>http://itsanimesh.com/2010/01/25/howto-twitter-from-command-line/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 09:07:01 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=1593</guid>
		<description><![CDATA[This is a tutorial explaining how to post to Twitter using command-line in Linux, without needing to even open up your web browser&#8230;. First, install the curl package: sudo apt-get install curl Next, create a script anywhere in your $PATH, for example tweet.sh inside ~/bin, where ~ is your home directory (make sure ~/bin is ...]]></description>
			<content:encoded><![CDATA[<p>This is a tutorial explaining how to post to Twitter using command-line in Linux, without needing to even open up your web browser&#8230;.</p>
<p>First, install the curl package:</p>
<pre>sudo apt-get install curl</pre>
<p>Next, create a script anywhere in your <strong>$PATH</strong>, for example <strong>tweet.sh</strong> inside <strong>~/bin</strong>, where ~ is your home directory (make sure ~/bin is included in your $PATH variable, in case echo $PATH doesn&#8217;t return it, edit <strong>~/.bashrc</strong> and add a line like this: <strong>export PATH=/home/USER/bin/:$PATH</strong>)&#8230;</p>
<p>The script <strong>tweet.sh</strong> should contain the following:<span id="more-1593"></span><br />
<code> </code></p>
<p><code> </code></p>
<p><code> </code></p>
<p>&nbsp;</p>
<p><code></p>
<pre>#!/bin/sh

############EDIT THE FOLLOWING LINES...###########################
user="USERNAME"
pass="PASSWORD"
##################################################################

######################DO NOT EDIT BELOW THIS######################
tweet="${@}"

if [ $(echo "${tweet}" | wc -c) -gt 140 ]; then
    echo "FATAL: The tweet is longer than 140 characters!"
    exit 1
fi

curl -k -u ${user}:${pass} -d status="${tweet}" https://twitter.com/statuses/update.xml &gt;/dev/null 2&gt;&amp;1

if [ "$?" == "0" ]; then
    echo "Successful tweet!"
fi</pre>
<p></code></p>
<p>&nbsp;</p>
<p>Replace <strong>USERNAME </strong>and <strong>PASSWORD </strong>with your Twitter username and password, and then make the script executable:</p>
<pre>chmod 755 ~/bin/tweet.sh</pre>
<p>And now test it.. Just use it as :</p>
<pre>tweet.sh YOUR MESSAGE</pre>
<p>This should be all&#8230;</p>
<p>If you don&#8217;t want to copy paste the code for tweet.sh then use the following link to download <a href="http://itsanimesh.com/wp-content/uploads/2010/01/tweet.txt">tweet.txt</a> and RENAME it as tweet.sh</p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2010/01/25/howto-twitter-from-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Google Chrome for Mac &amp; Linux!!!</title>
		<link>http://itsanimesh.com/2009/12/09/finally-google-chrome-for-mac-linux/</link>
		<comments>http://itsanimesh.com/2009/12/09/finally-google-chrome-for-mac-linux/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 06:31:03 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=1422</guid>
		<description><![CDATA[Google released its Chrome Browser for Mac and Linux yesterday&#8230; Chrome for Mac/Linux beta doesn&#8217;t have all of the features available to Chrome on Windows, and if you&#8217;ve been using the dev builds of Chrome before this, you probably won&#8217;t notice any significant changes. Got a chance to play around with it on Ubuntu yesterday ...]]></description>
			<content:encoded><![CDATA[<p>Google released its Chrome Browser for Mac and Linux yesterday&#8230; Chrome for Mac/Linux beta doesn&#8217;t have all of the features available to Chrome on Windows, and if you&#8217;ve been using the dev builds of Chrome before this, you probably won&#8217;t notice any significant changes.</p>
<p>Got a chance to play around with it on Ubuntu yesterday night&#8230; It is not as noticeably faster than Firefox&#8230;. But it is significantly better at managing large amounts (20+) of tabs than Firefox.. Chrome is the first mainstream Webkit Browser for Linux.  Most people won&#8217;t have used Konqueror as Firefox is the most popular browser on Linux. Overall, it is a great foundation for an excellent browser future.  It is in my top 3 with Safari and Firefox.</p>
<p>Chrome for Mac/Linux beta is a free download, works with Intel Macs running Leopard or Snow Leopard or Linux PCs.</p>
<div style="padding-left: 30px;"><a href="http://www.google.com/chrome?platform=mac&amp;hl=en">Google Chrome for Mac</a><br />
<a href="http://www.google.com/chrome?platform=linux&amp;hl=en">Google Chrome for Linux</a></div>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/12/09/finally-google-chrome-for-mac-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 vs. Mac OS X Snow Leopard vs. Windows 7!!!</title>
		<link>http://itsanimesh.com/2009/11/03/ubuntu-9-10-vs-mac-os-x-snow-leopard-vs-windows-7/</link>
		<comments>http://itsanimesh.com/2009/11/03/ubuntu-9-10-vs-mac-os-x-snow-leopard-vs-windows-7/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 05:50:59 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=840</guid>
		<description><![CDATA[&#160; &#160; Apple let Snow Leopard out of its cage earlier this autumn, and Canonical will release another beast this week: Karmic Koala, otherwise known as the open-source operating system Ubuntu 9.10. This comes on the heels of Microsoft&#8217;s launch of Windows 7, a major update of Vista. So, there are a lot of reasons ...]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Apple let Snow Leopard out of its cage earlier this autumn, and Canonical will release another beast this week: Karmic Koala, otherwise known as the open-source operating system Ubuntu 9.10. This comes on the heels of Microsoft&#8217;s launch of Windows 7, a major update of Vista. So, there are a lot of reasons for us to be excited.</p>
<blockquote><p>Since I use Mac OS X (dual boot with Xubuntu) on <a href="http://www.junauza.com/2008/04/xubuntu-on-macbook-pro-penryn.html">Macbook Pro</a>, Ubuntu on my main workstation, and Windows XP on some of our computers used for our family business, I&#8217;m looking forward to these consecutive &#8220;big-time&#8221; updates. However, I still haven&#8217;t made up my mind if I&#8217;ll immediately upgrade to the new versions. But I did a little research and collected some important information so that I could somehow find out early on if the upgrades will be worth it.</p>
<p>For all of you, I&#8217;m going to highlight the main features of Ubuntu 9.10, Mac OS X Snow Leopard, and Windows 7. I will also share my quick observation later on.</p></blockquote>
<h4><a href="http://www.junauza.com/2009/08/ubuntu-910-vs-mac-os-x-snow-leopard-vs.html" target="_blank">Read the complete story</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/11/03/ubuntu-9-10-vs-mac-os-x-snow-leopard-vs-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 “Karmic Koala” (Review)!!!</title>
		<link>http://itsanimesh.com/2009/11/02/ubuntu-9-10-%e2%80%9ckarmic-koala%e2%80%9d-review/</link>
		<comments>http://itsanimesh.com/2009/11/02/ubuntu-9-10-%e2%80%9ckarmic-koala%e2%80%9d-review/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 05:26:25 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=829</guid>
		<description><![CDATA[A a new Ubuntu release definitely requires a post! Ubuntu 9.10 “Karmic Koala” has been released. There have been some significant changes since that release in April, so read on to find out what they are and why you might want to consider upgrading to Ubuntu Linux 9.10. What&#8217;s new in this Release There&#8217;s some ...]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Ubuntu Logo" src="http://itsanimesh.com/wp-content/uploads/2009/11/Ubuntu.png" alt="" width="80" height="81" />A a new Ubuntu release definitely requires a post! <a href="http://www.ubuntu.com/getubuntu/releasenotes/910overview">Ubuntu 9.10 “Karmic Koala”</a> has been released. <span id="intellitxt">There have been some significant changes since that release in April, so read on to find out what they are and why you might want to consider upgrading to Ubuntu Linux 9.10.<span id="more-829"></span></span></p>
<h4><strong>What&#8217;s new in this Release</strong></h4>
<p>There&#8217;s some juicy stuff in this upgrade and here&#8217;s some of what you&#8217;ll find:</p>
<ul>
<li>Gnome 2.28</li>
<li>Upstart (faster booting)</li>
<li>Empathy IM (replaces <!-- start ziffarticle //--><a href="http://www.extremetech.com/article2/0,2845,2142647,00.asp">Pidgin</a><!-- end ziffarticle //-->) It has the built in facility to have voice chat with google talk users.</li>
<li>New login manager</li>
<li>Quickly (easier application development)</li>
<li>Ubuntu One (cloud-based sharing and storage)</li>
<li>Linux Kernel 2.6.31</li>
<li>Changes to power management</li>
<li>New Intel video driver architecture</li>
<li>Ext4 file system default</li>
<li>Grub 2 default</li>
</ul>
<p><span id="intellitxt">When I booted into my Ubuntu Linux 9.10 desktop, I heard the Ubuntu theme play. So sound worked fine right from the start. No need to fiddle with any settings to get it working. Ditto with networking.</span></p>
<p><span id="intellitxt">The new Ubuntu Software Center has an excellent selection of software. Even if you feel that your computing needs are fine with the default software included with Ubuntu 9.10, it&#8217;s still worth browsing around the Software Center to check out some additional stuff.</span></p>
<p>The new desktop sports the typical Ubuntu browns and oranges and, for the most part, looks the same as previous releases (aside from the wallpaper and the addition of a new set of icons with a pop-down menu:</p>
<p style="text-align: center;"><img class="aligncenter" title="Empathy Screenshot" src="http://itsanimesh.com/wp-content/uploads/2009/11/empathy-screenshot.png" alt="" width="245" height="113" /></p>
<p>I like this new option and think it adds some uniqueness to the panel with the quick and easy dropdown access to messaging options. One advantage that Empathy has over Pidgin is it&#8217;s clean integration with the panel. For instance, you&#8217;ll notice that once you sign in to an account within Empathy, you can adjust your status and settings from the user menu in the Ubuntu panel</p>
<p>The new Human theme and Humanity icons are still brown, but look fantastic. The Dust theme, as well as a few nice wallpapers are installed by default.</p>
<h3>Pro&#8217;s</h3>
<p>What are the best new changes to this release?</p>
<ul>
<li>Faster boot times.</li>
<li>Improved visual appeal and cleaner/crisper artwork.</li>
<li>Integration of Empathy (hardcore Pidgin fans will argue this point but I like it).</li>
<li>Drop down messaging addition.</li>
<li>New &#8220;Computer Janitor&#8221; option in the administration panel that allows for cleaning up of old leftover files.</li>
<li>Improved Add/Remove programs look and feel.</li>
</ul>
<h3>Con&#8217;s</h3>
<ul>
<li>Integration of <a href="https://one.ubuntu.com/">Ubuntu One</a> which, in comparison to <a href="http://bit.ly/3ZPI7e">Dropbox</a> (a similar cloud storage service) is quite poor and not well integrated or very user friendly.</li>
<li>This release will be less appealing for those who like the console as with every release, Ubuntu gets more and more gui dependent.</li>
</ul>
<p><span id="intellitxt"><strong>Conclusion</strong> Ubuntu Linux 9.10 is well worth upgrading to if you&#8217;re running an earlier version of Ubuntu. I look forward to seeing the various remastered versions of Ubuntu switch to it.</span></p>
<p>After installing <span id="intellitxt">Ubuntu 9.10 have a look at this post : </span><a href="http://blog.thesilentnumber.me/2009/09/top-things-to-do-after-installing.html">Top things to do after installing Ubuntu Linux 9.10 Karmic Koala</a></p>
<p><!-- google_ad_section_start(name=default) --> <span id="intellitxt"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/11/02/ubuntu-9-10-%e2%80%9ckarmic-koala%e2%80%9d-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Does Ubuntu 9.04 Measure Up to Mac OS X???</title>
		<link>http://itsanimesh.com/2009/07/24/how-does-ubuntu-9-04-measure-up-to-mac-os-x/</link>
		<comments>http://itsanimesh.com/2009/07/24/how-does-ubuntu-9-04-measure-up-to-mac-os-x/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 13:30:12 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=711</guid>
		<description><![CDATA[Publication: Linux Magazine Bucking the historical trend of comparing desktop Linux with Windows, Ubuntu founder Mark Shuttleworth recently told journalist Bruce Byfield that he was looking to Mac OS X as the operating system to beat for future Ubuntu releases — particularly in the areas of usability and user experience.  Now that Ubuntu 9.04 is ...]]></description>
			<content:encoded><![CDATA[<p><strong>Publication: Linux Magazine</strong></p>
<p>Bucking the historical trend of comparing desktop Linux <a style="border-bottom: medium none ! important; font-weight: bold ! important; text-decoration: none ! important; padding-bottom: 0px ! important; color: darkblue ! important; background-color: transparent ! important; cursor: pointer ! important; background-image: none; padding-top: 0pt; padding-right: 0pt; padding-left: 0pt;" href="http://www.ubuntugeek.com/how-does-ubuntu-9-04-measure-up-to-mac-os-x.html#" target="_blank"></a>with Windows, Ubuntu founder Mark Shuttleworth <a onclick="javascript:pageTracker._trackPageview('/outbound/article/itmanagement.earthweb.com');" href="http://itmanagement.earthweb.com/osrc/article.php/3814021/Ubuntus-Shuttleworth-Planning-to-Overtake-Apple.htm">recently told</a> journalist Bruce Byfield that he was looking to Mac OS X <a style="border-bottom: medium none ! important; font-weight: bold ! important; text-decoration: none ! important; padding-bottom: 0px ! important; color: darkblue ! important; background-color: transparent ! important; cursor: pointer ! important; background-image: none; padding-top: 0pt; padding-right: 0pt; padding-left: 0pt;" href="http://www.ubuntugeek.com/how-does-ubuntu-9-04-measure-up-to-mac-os-x.html#" target="_blank"></a>as the operating system to beat for future Ubuntu releases — particularly in the areas of usability and user experience.  Now that Ubuntu 9.04 <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.ubuntu.com');" href="http://www.ubuntu.com/news/ubuntu-9.04-desktop"></a>is out, how does it compare to Apple’s latest offering?</p>
<p>The “overall usability” of an operating system <a style="border-bottom: medium none ! important; font-weight: bold ! important; text-decoration: none ! important; padding-bottom: 0px ! important; color: darkblue ! important; background-color: transparent ! important; cursor: pointer ! important; background-image: none; padding-top: 0pt; padding-right: 0pt; padding-left: 0pt;" href="http://www.ubuntugeek.com/how-does-ubuntu-9-04-measure-up-to-mac-os-x.html#" target="_blank"></a>is hard to assess because it is so nebulous, but by breaking down the subject into a handful of distinct areas, we can measure Ubuntu’s present status in more meaningful terms.</p>
<p>Read Full Story from <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.linux-mag.com');" href="http://www.linux-mag.com/cache/7419/1.html" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/07/24/how-does-ubuntu-9-04-measure-up-to-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Voice Chat on Ubuntu &#8211; Empathy!!!</title>
		<link>http://itsanimesh.com/2009/07/24/voice-chat-on-ubuntu-empathy/</link>
		<comments>http://itsanimesh.com/2009/07/24/voice-chat-on-ubuntu-empathy/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 18:32:07 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Empathy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=707</guid>
		<description><![CDATA[Empathy consists of a rich set of reusable instant messaging widgets, and a GNOME client using those widgets. It uses Telepathy and Nokia’s Mission Control, and reuses Gossip’s UI. The main goal is to permit desktop integration by providing libempathy and libempathy-gtk libraries. libempathy-gtk is a set of powerful widgets that can be embeded into ...]]></description>
			<content:encoded><![CDATA[<p>Empathy consists of a rich set of reusable instant messaging widgets, and a GNOME client using those widgets. It uses Telepathy and Nokia’s Mission Control, and reuses Gossip’s UI. The main goal is to permit desktop integration by providing libempathy and libempathy-gtk libraries. libempathy-gtk is a set of powerful widgets that can be embeded into any GNOME application.</p>
<p><strong>Installation<span id="more-707"></span></strong></p>
<p>First we will add launchpad repository to get latest binary for ubuntu :</p>
<p>Add these lines to your /etc/apt/sources.list :</p>
<blockquote><p><code>sudo gedit /etc/apt/sources.list</code></p></blockquote>
<p>For Jaunty(9.04) Users</p>
<blockquote><p><code>deb http://ppa.launchpad.net/telepathy/ppa/ubuntu jaunty main</code></p></blockquote>
<blockquote><p><code>deb-src http://ppa.launchpad.net/telepathy/ppa/ubuntu jaunty main</code></p></blockquote>
<p>For Intrepid(8.10) users</p>
<blockquote><p><code>deb http://ppa.launchpad.net/telepathy/ppa/ubuntu intrepid main</code></p></blockquote>
<blockquote><p><code>deb-src http://ppa.launchpad.net/telepathy/ppa/ubuntu intrepid main</code></p></blockquote>
<p>For Hardy(7.04) users</p>
<blockquote><p><code>deb http://ppa.launchpad.net/telepathy/ppa/ubuntu hardy main</code></p></blockquote>
<blockquote><p><code>deb-src http://ppa.launchpad.net/telepathy/ppa/ubuntu hardy main</code></p></blockquote>
<p>Finally, you need to update the source list using the following command</p>
<blockquote><p><code>sudo apt-get update</code></p></blockquote>
<p>Install the required packages and empathy via this command :</p>
<blockquote><p><code>sudo apt-get install empathy telepathy-gabble telepathy-mission-control telepathy-stream-engine telepathy-butterfly python-msn</code></p></blockquote>
<p><span style="font-weight: bold;">SetUp Empathy</span></p>
<p>Start Empathy by going Applications –&gt; Internet –&gt; Empathy Instant Messenger or empathy command</p>
<p>Use your google talk account here and click Advanced and be sure server is talk.google.com , port 5223, and use old ssl is checked.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/07/24/voice-chat-on-ubuntu-empathy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install and Configure Apache Tomcat on Ubuntu!!!</title>
		<link>http://itsanimesh.com/2009/07/17/how-to-install-and-configure-apache-tomcat-on-ubuntu/</link>
		<comments>http://itsanimesh.com/2009/07/17/how-to-install-and-configure-apache-tomcat-on-ubuntu/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 16:37:16 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=668</guid>
		<description><![CDATA[Apache Tomcat is a servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems, and provides a &#8220;pure Java&#8221; HTTP web server environment for Java code to run. Installing and configuring Tomcat on Ubuntu is very easy. Before starting you need the ...]]></description>
			<content:encoded><![CDATA[<p><strong>Apache Tomcat</strong> is a <a title="Java Servlet" href="http://en.wikipedia.org/wiki/Java_Servlet#Servlet_containers">servlet container</a> developed by the <a title="Apache Software Foundation" href="http://en.wikipedia.org/wiki/Apache_Software_Foundation">Apache Software Foundation</a> (ASF). Tomcat implements the <a title="Java Servlet" href="http://en.wikipedia.org/wiki/Java_Servlet">Java Servlet</a> and the <a title="JavaServer Pages" href="http://en.wikipedia.org/wiki/JavaServer_Pages">JavaServer Pages</a> (JSP) specifications from <a title="Sun Microsystems" href="http://en.wikipedia.org/wiki/Sun_Microsystems">Sun Microsystems</a>, and provides a &#8220;pure <a title="Java (programming language)" href="http://en.wikipedia.org/wiki/Java_%28programming_language%29">Java</a>&#8221; <a title="Hypertext Transfer Protocol" href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol">HTTP</a> <a title="Web server" href="http://en.wikipedia.org/wiki/Web_server">web server</a> environment for <a title="Java (programming language)" href="http://en.wikipedia.org/wiki/Java_%28programming_language%29">Java</a> code to run.</p>
<p>Installing and configuring Tomcat on Ubuntu is very easy.</p>
<p>Before starting you need the Java Development Kit (JDK) and not Java Runtime Environment (JRE). Download it from <a href="http://java.sun.com" target="_blank">http://java.sun.com</a> as a .bin file and install it on your system or use the command line:</p>
<blockquote><p>sudo apt-get install sun-java6-jdk</p></blockquote>
<p><strong>1. </strong>Download and install the Tomcat packages (run in terminal):</p>
<blockquote><p>sudo apt-get install libapache2-mod-jk libservlet2.4-java libtomcat5.5-java tomcat5.5 tomcat5.5-admin tomcat5.5-webapps</p></blockquote>
<p><strong>2. </strong>Open the .bashrc file (run in terminal):</p>
<blockquote><p>sudo gedit ~/.bashrc</p></blockquote>
<p><strong>3. </strong>Add the following line in the opened file:</p>
<blockquote><p>export JAVA_HOME=/usr/lib/jvm/java-6-sun</p></blockquote>
<p>save and close the file.</p>
<p><strong>4.</strong> Now make the Logs directory writeable (run in terminal):</p>
<blockquote><p>sudo chmod -R 777 /var/lib/tomcat5.5/logs</p></blockquote>
<p><strong>5.</strong> To make Tomcat automatically start when we boot up the computer, you can add a script to make it auto-start and shutdown.</p>
<blockquote><p>sudo gedit /etc/init.d/tomcat</p></blockquote>
<p>Now paste in the following:</p>
<blockquote><p># Tomcat auto-start<br />
# description: Auto-starts tomcat<br />
# processname: tomcat<br />
# pidfile: /var/run/tomcat.pid</p>
<p>export JAVA_HOME=/usr/lib/jvm/java-6-sun</p>
<p>case $1 in<br />
start)<br />
sh /usr/local/tomcat/bin/startup.sh<br />
;;<br />
stop)<br />
sh /usr/local/tomcat/bin/shutdown.sh<br />
;;<br />
restart)<br />
sh /usr/local/tomcat/bin/shutdown.sh<br />
sh /usr/local/tomcat/bin/startup.sh<br />
;;<br />
esac<br />
exit 0</p></blockquote>
<p>You’ll need to make the script executable by running the chmod command:</p>
<blockquote><p>sudo chmod 755 /etc/init.d/tomcat</p></blockquote>
<p>The last step is actually linking this script to the startup folders with a symbolic link. Run the following commands and we are ready.</p>
<blockquote><p>sudo ln -s /etc/init.d/tomcat /etc/rc1.d/K99tomcat</p>
<p>sudo ln -s /etc/init.d/tomcat /etc/rc2.d/S99tomcat</p></blockquote>
<p><strong>6.</strong> To start the tomcat, run the following command:</p>
<blockquote><p>sh /usr/share/tomcat5.5/bin/startup.sh</p></blockquote>
<p><strong>7. </strong>You can test to see if it’s working,  point your browser at:</p>
<blockquote><p>http://localhost:8180/</p></blockquote>
<p>A word of precaution: It’s better to avoid running Tomcat as root.<br />
There are many other setting within Tomcat, I think the user should better try them out themselves. Some are:<br />
1)    Making Tomcat to run on port 80.<br />
2)    Turning off Directory Listings like Index Manager.<br />
3) Check out the Tomcat configuration file and try out something of your own. Only precaution required is that you should not be logged in as root</p>
<p>Cheers <img src='http://itsanimesh.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/07/17/how-to-install-and-configure-apache-tomcat-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Linux newbie guide to installation of LAMP on Ubuntu!!!</title>
		<link>http://itsanimesh.com/2009/07/05/linux-newbie-guide-to-installation-of-lamp-on-ubuntu/</link>
		<comments>http://itsanimesh.com/2009/07/05/linux-newbie-guide-to-installation-of-lamp-on-ubuntu/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 10:16:03 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=624</guid>
		<description><![CDATA[The acronym LAMP refers to a set of free software programs commonly used together to run dynamic Web sites or servers Linux, the operating system; Apache, the Web server; MySQL, the database management system (or database server) and Perl, PHP, and/or Python, scripting languages. The LAMP stack is a very popular setup and many websites ...]]></description>
			<content:encoded><![CDATA[<p>The acronym LAMP refers to a set of free software programs commonly used together to run dynamic Web sites or servers <strong>L</strong>inux, the operating system; <strong>A</strong>pache, the Web server; <strong>M</strong>ySQL, the database management system (or database server) and <strong>P</strong>erl, <strong>P</strong>HP, and/or <strong>P</strong>ython, scripting languages. The LAMP stack is a very popular setup and many websites run on it. Best of all, all four of the tools in the stack are free and open source and really easy to get started with.</p>
<p>For this tutorial, I&#8217;m going to be showing you how to install LAMP on Ubuntu 9.04 (Jaunty Jackalope), but the process is very similar for other Linux distributions too.</p>
<p>All the stuff you need is pre-loaded into Ubuntu&#8217;s software repositories, and it&#8217;s really simple to install everything you need. If you&#8217;re doing a new install, you may want to take a look at <a href="http://www.ubuntu.com/products/WhatIsUbuntu/serveredition">the server edition of Ubuntu</a> as it allows for a pre-configured profile that you can pick at install time.</p>
<p>You need to install the following packages:</p>
<ul>
<li>apache2</li>
<li>php5-mysql</li>
<li>libapache2-mod-php5</li>
<li>mysql-server</li>
</ul>
<h3>Apache</h3>
<p>Install Apache</p>
<div>
<blockquote><p>sudo apt-get install apache2</p></blockquote>
</div>
<p>Testing HTTP Server by open a web browser and enter http://localhost</p>
<h3>PHP</h3>
<p>Install PHP5</p>
<div>
<blockquote><p>sudo apt-get install php5 libapache2-mod-php5</p></blockquote>
</div>
<p>Stop/Restart Apache</p>
<div>
<blockquote><p>sudo /etc/init.d/apache2 restart</p></blockquote>
</div>
<p>Test the installation</p>
<div>
<blockquote><p>sudo gedit /var/www/testphp.php</p></blockquote>
</div>
<p>Insert this following line into testphp.php file.</p>
<div>
<blockquote><p>&lt;?php phpinfo(); ?&gt;</p></blockquote>
</div>
<p>Save this new file.<br />
Open a web browser and enter http://localhost/testphp.php<br />
Be sure to remove the file afterwards, as it may pose a security risk.</p>
<div>
<blockquote><p>sudo rm /var/www/testphp.php</p></blockquote>
</div>
<h3>MySQL</h3>
<p>Install MySQL Server</p>
<div>
<blockquote><p>sudo apt-get install mysql-server</p></blockquote>
</div>
<p>MySQL initially only allows connections from the localhost (127.0.0.1). We’ll need to remove that restriction if you wish to make it accessible to everyone on the internet. Open the file /etc/mysql/my.cnf</p>
<div>
<blockquote><p>gksudo gedit /etc/mysql/my.cnf</p></blockquote>
</div>
<p>Find the line bind-address = 127.0.0.1 and comment it out then save the file.<br />
MySQL comes with no root password as default. This is a huge security risk. You’ll need to set one. So that the local computer gets root access as well, you’ll need to set a password for that too. The local-machine-name is the name of the computer you’re working on.</p>
<div>
<blockquote><p>mysqladmin -u root password &lt;newpassword&gt;<br />
mysqladmin -h root@local-machine-name -u root -p password &lt;newpassword&gt;<br />
sudo /etc/init.d/mysql restart</p></blockquote>
</div>
<h3>MySQL Administrator</h3>
<p>Install MySQL Administrator</p>
<div>
<blockquote><p>sudo apt-get install mysql-admin</p></blockquote>
</div>
<p>Refresh Gnome Panel</p>
<div>
<blockquote><p>killall gnome-panel</p></blockquote>
</div>
<p>Run MySQL Administrator<br />
Applications -&gt; System Tools -&gt; MySQL Administrator</p>
<h3>MySQL for Apache HTTP Server</h3>
<div>
<blockquote><p>sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin</p></blockquote>
</div>
<p>To get PHP to work with MySQL, open the php.ini file</p>
<div>
<blockquote><p>gksudo gedit /etc/php5/apache2/php.ini</p></blockquote>
</div>
<p>You’ll need to uncomment the “;extension=mysql.so” line so that it looks like this</p>
<div>
<blockquote><p>extension=mysql.so</p></blockquote>
</div>
<p>Restart Apache</p>
<div>
<blockquote><p>sudo /etc/init.d/apache2 restart</p></blockquote>
</div>
<p>That&#8217;s pretty much all the configuration you need to do, so you can now grab any web applications you want and install them.</p>
<p>Cheers <img src='http://itsanimesh.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/07/05/linux-newbie-guide-to-installation-of-lamp-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

