<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Linux Troves</title>
	<atom:link href="http://linuxtrove.com/wp/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://linuxtrove.com/wp</link>
	<description>Ubuntu, RedHat, Fedora, CentOS, Mendrake, APACHE, PHP, MySQL, OpenSource, Technology</description>
	<lastBuildDate>Fri, 26 Feb 2010 03:39:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on About Me by NAVNEETMISHRA</title>
		<link>http://linuxtrove.com/wp/?page_id=13&#038;cpage=1#comment-5692</link>
		<dc:creator>NAVNEETMISHRA</dc:creator>
		<pubDate>Fri, 26 Feb 2010 03:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?page_id=13#comment-5692</guid>
		<description>Hi Sir
u doing nice work.</description>
		<content:encoded><![CDATA[<p>Hi Sir<br />
u doing nice work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download by Chandan Singh</title>
		<link>http://linuxtrove.com/wp/?page_id=38&#038;cpage=1#comment-5432</link>
		<dc:creator>Chandan Singh</dc:creator>
		<pubDate>Wed, 27 Jan 2010 18:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?page_id=38#comment-5432</guid>
		<description>You guys are really awesome .........!!!!!</description>
		<content:encoded><![CDATA[<p>You guys are really awesome &#8230;&#8230;&#8230;!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Splunk Server Setup and Configuration by Joseph</title>
		<link>http://linuxtrove.com/wp/?p=195&#038;cpage=1#comment-5386</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Thu, 21 Jan 2010 16:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?p=195#comment-5386</guid>
		<description>to check the status of the splunk on any of server,if its running or not please use the following commands

cd /opt/splunk/bin
./splunk display app all

it will prompt you for username/password use the defaut one(admin/changeme) if u have not changed them at the time of installation.</description>
		<content:encoded><![CDATA[<p>to check the status of the splunk on any of server,if its running or not please use the following commands</p>
<p>cd /opt/splunk/bin<br />
./splunk display app all</p>
<p>it will prompt you for username/password use the defaut one(admin/changeme) if u have not changed them at the time of installation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ubuntu Network Installation Using PenDrive by Tom</title>
		<link>http://linuxtrove.com/wp/?p=93&#038;cpage=1#comment-1467</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 06 Apr 2009 17:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?p=93#comment-1467</guid>
		<description>nice method it really helped me ...</description>
		<content:encoded><![CDATA[<p>nice method it really helped me &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LVM (Logical Volume Manager) by Mohd Anas</title>
		<link>http://linuxtrove.com/wp/?p=44&#038;cpage=1#comment-54</link>
		<dc:creator>Mohd Anas</dc:creator>
		<pubDate>Fri, 06 Feb 2009 06:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?p=44#comment-54</guid>
		<description>Reduce size of logical volumes in RHEL5:

Pre-requisites:
Following example assumes that you already have created a Logical Volume (/dev/volgrp1/logvol1) of some size (say 100M).

1-	Unmount the logical volume if it s already mounted.
	#umount /mount-point
	
2-	Run e2fsck -f to force check any errors in that volume.
	#e2fsck -f /dev/volgrp1/logvol1
	
3-	Run &#039;resize2fs&#039; to resize the ext3/ext2 file system of new size.
	#resize2fs /dev/volgrp1/logvol1 40M
	(Note: 40M will be the new size of logical volume).
	
4-	Run &#039;lvreduce&#039; to resize the logical volume.
	#lvreduce -L -60M /dev/volgrp1/logvol1
	Note: -60M is taken because in resize2fs cmd we specified that the new size of filesystem will be 40M.
		
5-	Run &#039;lvdisplay&#039; to check the size of logical volume.

6-	Mount the Logical volume again and run &#039;df&#039; cmd to check its new size.
	#mount /dev/volgrp1/logvol1 /mount-point
	#df -hT</description>
		<content:encoded><![CDATA[<p>Reduce size of logical volumes in RHEL5:</p>
<p>Pre-requisites:<br />
Following example assumes that you already have created a Logical Volume (/dev/volgrp1/logvol1) of some size (say 100M).</p>
<p>1-	Unmount the logical volume if it s already mounted.<br />
	#umount /mount-point</p>
<p>2-	Run e2fsck -f to force check any errors in that volume.<br />
	#e2fsck -f /dev/volgrp1/logvol1</p>
<p>3-	Run &#8216;resize2fs&#8217; to resize the ext3/ext2 file system of new size.<br />
	#resize2fs /dev/volgrp1/logvol1 40M<br />
	(Note: 40M will be the new size of logical volume).</p>
<p>4-	Run &#8216;lvreduce&#8217; to resize the logical volume.<br />
	#lvreduce -L -60M /dev/volgrp1/logvol1<br />
	Note: -60M is taken because in resize2fs cmd we specified that the new size of filesystem will be 40M.</p>
<p>5-	Run &#8216;lvdisplay&#8217; to check the size of logical volume.</p>
<p>6-	Mount the Logical volume again and run &#8216;df&#8217; cmd to check its new size.<br />
	#mount /dev/volgrp1/logvol1 /mount-point<br />
	#df -hT</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by Rishi Sachar</title>
		<link>http://linuxtrove.com/wp/?page_id=13&#038;cpage=1#comment-10</link>
		<dc:creator>Rishi Sachar</dc:creator>
		<pubDate>Sat, 31 Jan 2009 12:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?page_id=13#comment-10</guid>
		<description>I have seen you working hrs on this... Linux seems to be ur baby... good job man...... Great going...

Rishi</description>
		<content:encoded><![CDATA[<p>I have seen you working hrs on this&#8230; Linux seems to be ur baby&#8230; good job man&#8230;&#8230; Great going&#8230;</p>
<p>Rishi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LVM (Logical Volume Manager) by Ramesh</title>
		<link>http://linuxtrove.com/wp/?p=44&#038;cpage=1#comment-8</link>
		<dc:creator>Ramesh</dc:creator>
		<pubDate>Wed, 21 Jan 2009 09:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?p=44#comment-8</guid>
		<description>Hi anas,

I have already mentioned the features of LVM.</description>
		<content:encoded><![CDATA[<p>Hi anas,</p>
<p>I have already mentioned the features of LVM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LVM (Logical Volume Manager) by Mohd Anas</title>
		<link>http://linuxtrove.com/wp/?p=44&#038;cpage=1#comment-7</link>
		<dc:creator>Mohd Anas</dc:creator>
		<pubDate>Mon, 19 Jan 2009 11:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?p=44#comment-7</guid>
		<description>Hi,

Its a great one clearing the concept of LVM.
But it can improved by mentioning the advantages of using
LVM.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Its a great one clearing the concept of LVM.<br />
But it can improved by mentioning the advantages of using<br />
LVM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by Vinod Sharma</title>
		<link>http://linuxtrove.com/wp/?page_id=13&#038;cpage=1#comment-5</link>
		<dc:creator>Vinod Sharma</dc:creator>
		<pubDate>Mon, 12 Jan 2009 07:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?page_id=13#comment-5</guid>
		<description>Hi Ramesh,
This is a great initiative taken by you to promote Linux. Being Linux admirer i wish that there will be a one day when layman will start using linux(probably ubuntu) and forget about what the buggy windows.

Keep going and publish articles to help people. 

Regards,
Vinod Sharma
Security Research Group</description>
		<content:encoded><![CDATA[<p>Hi Ramesh,<br />
This is a great initiative taken by you to promote Linux. Being Linux admirer i wish that there will be a one day when layman will start using linux(probably ubuntu) and forget about what the buggy windows.</p>
<p>Keep going and publish articles to help people. </p>
<p>Regards,<br />
Vinod Sharma<br />
Security Research Group</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by ramesh</title>
		<link>http://linuxtrove.com/wp/?page_id=13&#038;cpage=1#comment-4</link>
		<dc:creator>ramesh</dc:creator>
		<pubDate>Mon, 12 Jan 2009 07:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtrove.com/wp/?page_id=13#comment-4</guid>
		<description>&lt;a href=&quot;#comment-3&quot; rel=&quot;nofollow&quot;&gt;@Amit&lt;/a&gt; 
Thanks, thanks a lot..</description>
		<content:encoded><![CDATA[<p><a href="#comment-3" rel="nofollow">@Amit</a><br />
Thanks, thanks a lot..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
