<?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>Learning is an Art &#187; Linux</title>
	<atom:link href="http://www.singhvishwajeet.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.singhvishwajeet.com</link>
	<description>My experiences</description>
	<lastBuildDate>Thu, 02 Sep 2010 23:56:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing PostgreSQL on Centos/RHEL</title>
		<link>http://www.singhvishwajeet.com/2010/05/07/installing-postgresql-on-centosrhel/</link>
		<comments>http://www.singhvishwajeet.com/2010/05/07/installing-postgresql-on-centosrhel/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:13:13 +0000</pubDate>
		<dc:creator>Vishwajeet Singh</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[database server]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[RHEL]]></category>

		<guid isPermaLink="false">http://www.singhvishwajeet.com/?p=380</guid>
		<description><![CDATA[ [...]]]></description>
			<content:encoded><![CDATA[<p>To install latest version of postgresql we first we need to add pgdg repository to list of repositories open terminal and fire following commands, you need to be root.</p>
<div class="codesnip-container" >
<p>wget http://yum.pgsqlrpms.org/reporpms/8.4/pgdg-redhat-8.4-1.noarch.rpm<br />rpm -Uhv pgdg-redhat-8.4-1.noarch.rpm</div>
</p>
<p>Once repository is installed properly use yum to install postgresql as shown below</p>
<div class="codesnip-container" >
<p>yum install postgresql<br />yum install postgresql-server</div>
</p>
<p>You can do above in a single line choice is yours.</p>
<p>Initialize the database</p>
<div class="codesnip-container" >
<p>initdb -D /usr/local/pgsql/data</p>
</div>
<p>Start the database server</p>
<div class="codesnip-container" >
<p>pg_ctl start -D /usr/local/pgsql/data</p>
</div>
<p>Voila your database server is setup and ready to use.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.singhvishwajeet.com/2010/05/07/installing-postgresql-on-centosrhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Eclipse Galileo (3.5) on Ubuntu</title>
		<link>http://www.singhvishwajeet.com/2009/09/04/install-eclipse-galileo-3-5-on-ubuntu/</link>
		<comments>http://www.singhvishwajeet.com/2009/09/04/install-eclipse-galileo-3-5-on-ubuntu/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 19:20:53 +0000</pubDate>
		<dc:creator>Vishwajeet Singh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Galileo]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.singhvishwajeet.com/?p=145</guid>
		<description><![CDATA[ [...]]]></description>
			<content:encoded><![CDATA[<p>Eclipse latest version is Galileo and its not available from ubuntu archive I just finished installing it on my machine i thought I will share instructions with my readers.<br />
So here we have a step by step instruction to install Eclipse Galileo (3.5) on Ubuntu mine is Hardy</p>
<p>Lets start with creating a directory where we want to install</p>
<div class="codesnip-container" >mkdir /bin/ide</p>
<p>cd  /bin/ide</p></div>
<p>you can manually download the installable from one of the available mirrors or you can use wget for same I prefer using wget</p>
<div class="codesnip-container" >wget http://d2u376ub0heus3.cloudfront.net/galileo/eclipse-java-galileo-linux-gtk.tar.gz</div>
<p>than we need to unzip the contents of the zip file and we are almost done</p>
<p style="font-family: monospace;"><span style="color: #000000;"><span style="font-weight: bold;"> </span></span></p>
<div class="codesnip-container" >tar xzvf eclipse-java-galileo-linux-gtk<span style="font-weight: bold;"> </span>.tar.gz</div>
<p>You can set the eclipse executable to your path</p>
<div class="codesnip-container" >PATH=$PATH:/bin/ide/eclipse</div>
<p>This is not the best way to do it but still does the job alternatively you can create a simple shell file and keep it in bin directory whcih just calls eclipse and you are good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.singhvishwajeet.com/2009/09/04/install-eclipse-galileo-3-5-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
