<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kunaljain's Weblog</title>
	<atom:link href="http://kunaljain.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kunaljain.wordpress.com</link>
	<description>Tech weblog</description>
	<lastBuildDate>Mon, 14 Nov 2011 07:39:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kunaljain.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kunaljain's Weblog</title>
		<link>http://kunaljain.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kunaljain.wordpress.com/osd.xml" title="Kunaljain&#039;s Weblog" />
	<atom:link rel='hub' href='http://kunaljain.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Grep a process ID and kill it</title>
		<link>http://kunaljain.wordpress.com/2011/01/03/grep-a-process-id-and-kill-it/</link>
		<comments>http://kunaljain.wordpress.com/2011/01/03/grep-a-process-id-and-kill-it/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 04:46:38 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[grep process id]]></category>
		<category><![CDATA[kill process id]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=151</guid>
		<description><![CDATA[Following is the command to grep a process ID and kill it. ps auxww  &#124; grep wget &#124; awk '{ print $2; }' &#124; xargs kill -9<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=151&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2011/01/03/grep-a-process-id-and-kill-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>subversion: Server sent unexpected return value (502 Bad Gateway) in response to COPY</title>
		<link>http://kunaljain.wordpress.com/2010/12/24/subversion-server-sent-unexpected-return-value-502-bad-gateway-in-response-to-copy/</link>
		<comments>http://kunaljain.wordpress.com/2010/12/24/subversion-server-sent-unexpected-return-value-502-bad-gateway-in-response-to-copy/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 07:05:34 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=148</guid>
		<description><![CDATA[Got the following error while branching. Googled the error and found the solution. Just add the following line in httpd.conf file RequestHeader edit Destination ^https http early<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=148&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2010/12/24/subversion-server-sent-unexpected-return-value-502-bad-gateway-in-response-to-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>module php5_module is already loaded, skipping</title>
		<link>http://kunaljain.wordpress.com/2010/07/06/module-php5_module-is-already-loaded-skipping/</link>
		<comments>http://kunaljain.wordpress.com/2010/07/06/module-php5_module-is-already-loaded-skipping/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 08:24:05 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[libphp5.so]]></category>
		<category><![CDATA[php5_module]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=143</guid>
		<description><![CDATA[Got the following Error while restarting Apache [warn] module php5_module is already loaded, skipping Then i have a close look at my httpd.conf file and found LoadModule php5_module        modules/libphp5.so twice in my configuration file. I removed one from my configuration file and now apache is working fine.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=143&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2010/07/06/module-php5_module-is-already-loaded-skipping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>Error &#8211; cannot restore segment prot after reloc: Permission denied</title>
		<link>http://kunaljain.wordpress.com/2010/05/27/error-cannot-restore-segment-prot-after-reloc-permission-denied/</link>
		<comments>http://kunaljain.wordpress.com/2010/05/27/error-cannot-restore-segment-prot-after-reloc-permission-denied/#comments</comments>
		<pubDate>Thu, 27 May 2010 05:37:15 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[setenforce]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=139</guid>
		<description><![CDATA[Got the following error while starting apache - cannot restore segment prot after reloc: Permission denied Then i google a bit and found that it is because of SE linux setting being set to enforcing. So i temporarily disable enforcemnt.To Temporarily disable enforcement on a running system use the following command /usr/sbin/setenforce 0 To permanently [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=139&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2010/05/27/error-cannot-restore-segment-prot-after-reloc-permission-denied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>Error:- Missing Dependency: perl(URI) &gt;= 1.17 is needed by package subversion-1.4.2-4.el5_3.1.i386</title>
		<link>http://kunaljain.wordpress.com/2009/10/09/error-missing-dependency-perluri-1-17-is-needed-by-package-subversion-1-4-2-4-el5_3-1-i386/</link>
		<comments>http://kunaljain.wordpress.com/2009/10/09/error-missing-dependency-perluri-1-17-is-needed-by-package-subversion-1-4-2-4-el5_3-1-i386/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 12:04:21 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[subverion on centOS]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=134</guid>
		<description><![CDATA[While installing subversion on my CentOS 5.2 64bit OS i got this error yum install subversion Missing Dependency: perl(URI) &#62;= 1.17 is needed by package subversion-1.4.2-4.el5_3.1.i386 I google the error and found the solution. Fistly i download perl(URI) which is greater than 1.17. I downloaded perl(URI) 1.35 using the following command wget http://yum.trixbox.org/centos/5/RPMS/perl-URI-1.35-3.noarch.rpm Then i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=134&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2009/10/09/error-missing-dependency-perluri-1-17-is-needed-by-package-subversion-1-4-2-4-el5_3-1-i386/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>Auto-Complete function stop working in command prompt on windowsXP</title>
		<link>http://kunaljain.wordpress.com/2009/10/04/auto-complete-function-stop-working-in-command-prompt-on-windowsxp/</link>
		<comments>http://kunaljain.wordpress.com/2009/10/04/auto-complete-function-stop-working-in-command-prompt-on-windowsxp/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 05:16:08 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[XP Tweakers]]></category>
		<category><![CDATA[auto completion command prompt]]></category>
		<category><![CDATA[auto-completion]]></category>
		<category><![CDATA[command prompt]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=132</guid>
		<description><![CDATA[Somehow Auto completion stops working in command prompt in windows XP. Then I google about this error and found the solution I just follow the follwoing steps and now its working fine. Go to Start -&#62; Run, type regedit Navigate to HKEY_CURRENT_USER\Software\Microsoft\Command Processor On the right, double-click on the "CompletionChar", type 9 and press OK. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=132&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2009/10/04/auto-complete-function-stop-working-in-command-prompt-on-windowsxp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>Java Error &#8211; Error occurred during initialization of VM</title>
		<link>http://kunaljain.wordpress.com/2009/09/27/java-error-error-occurred-during-initialization-of-vm/</link>
		<comments>http://kunaljain.wordpress.com/2009/09/27/java-error-error-occurred-during-initialization-of-vm/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 08:21:09 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux Tips & Tricks]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=125</guid>
		<description><![CDATA[While running Java i faced this problem Error occurred during initialization of VM Could not reserve enough space for object heap Could not create the Java virtual machine. This error occur because java was not able to get enough Virtual Memory as i did ulimit -a on my linux machine and i found that the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=125&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2009/09/27/java-error-error-occurred-during-initialization-of-vm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>dos2unix: command not found</title>
		<link>http://kunaljain.wordpress.com/2009/06/03/dos2unix-command-not-found/</link>
		<comments>http://kunaljain.wordpress.com/2009/06/03/dos2unix-command-not-found/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 04:01:35 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[dos2unix]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[unix2dos]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=123</guid>
		<description><![CDATA[If you get this error dos2unix command not found check the manual for dos2unix. if the manual is present in your distribution it means that dos2unix is installed, find it and add it in your path. if you found this error No manual entry for dos2unix then install in in your distribution( I am using [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=123&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2009/06/03/dos2unix-command-not-found/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple:- No Battery Avaliable</title>
		<link>http://kunaljain.wordpress.com/2009/04/21/apple-nobattery-avaliable/</link>
		<comments>http://kunaljain.wordpress.com/2009/04/21/apple-nobattery-avaliable/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 03:37:15 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[no battery available]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=118</guid>
		<description><![CDATA[Just pulled the MacBookPro out of my bag and found that the battery meter showed on battery. When i clicked the pull-down menu it said &#8220;No battery available&#8221; I google about this error and found the solution here http://support.apple.com/kb/HT1411?viewlocale=en_US. I followed the exact same instructions and my system starts working perfectly fine. Here are the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=118&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2009/04/21/apple-nobattery-avaliable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing RPM packages</title>
		<link>http://kunaljain.wordpress.com/2009/02/10/removing-rpm-packages/</link>
		<comments>http://kunaljain.wordpress.com/2009/02/10/removing-rpm-packages/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 04:14:38 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[Linux Tips & Tricks]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[Removing RPM Packages]]></category>

		<guid isPermaLink="false">http://kunaljain.wordpress.com/?p=111</guid>
		<description><![CDATA[Try to remove MySQL from my server which my datacenter guys installed it along with the OS and while doing that i got the following error shell&#62; rpm -aq &#124; grep mysql &#124; xargs rpm -e error: &#8220;mysql-devel-5.0.45-7.el5&#8243; specifies multiple packages error: &#8220;mysql-5.0.45-7.el5&#8243; specifies multiple packages error: &#8220;mysql-devel-5.0.45-7.el5&#8243; specifies multiple packages error: &#8220;mysql-5.0.45-7.el5&#8243; specifies multiple [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kunaljain.wordpress.com&amp;blog=1444619&amp;post=111&amp;subd=kunaljain&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://kunaljain.wordpress.com/2009/02/10/removing-rpm-packages/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9eb4e08fedcc847f7cdc52bb704e2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kunaljain</media:title>
		</media:content>
	</item>
	</channel>
</rss>
