<?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 Swizzling.org</title>
	<atom:link href="http://www.swizzling.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.swizzling.org</link>
	<description>Random bits and bobs</description>
	<lastBuildDate>Wed, 16 Jun 2010 17:37:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Expand LVM disk on Linux in VMware by Ben</title>
		<link>http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/comment-page-1/#comment-2893</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 16 Jun 2010 17:37:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/#comment-2893</guid>
		<description>Thanks for the guide! It helped me a ton. A potentially easier approach could be to create a new virtual disk and add it to the LVM, instead of resizing the one you already have. But at any rate your guide worked for me - and I can report that using Mike Karolow&#039;s suggestion is also successful. Thanks again!</description>
		<content:encoded><![CDATA[<p>Thanks for the guide! It helped me a ton. A potentially easier approach could be to create a new virtual disk and add it to the LVM, instead of resizing the one you already have. But at any rate your guide worked for me &#8211; and I can report that using Mike Karolow&#8217;s suggestion is also successful. Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download VMware viclient by Roberto</title>
		<link>http://www.swizzling.org/2008/10/24/download-vmware-viclient/comment-page-1/#comment-2889</link>
		<dc:creator>Roberto</dc:creator>
		<pubDate>Tue, 15 Jun 2010 08:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/10/24/download-vmware-viclient/#comment-2889</guid>
		<description>Thanks, I&#039;ve been looking for this client</description>
		<content:encoded><![CDATA[<p>Thanks, I&#8217;ve been looking for this client</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Expand LVM disk on Linux in VMware by Mohammad Abu Nabhan</title>
		<link>http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/comment-page-1/#comment-2880</link>
		<dc:creator>Mohammad Abu Nabhan</dc:creator>
		<pubDate>Sat, 12 Jun 2010 13:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/#comment-2880</guid>
		<description>Thank you very much. Nice and easy and to the point. I just copied your commands and worked like a charm.

I really appreciate it.</description>
		<content:encoded><![CDATA[<p>Thank you very much. Nice and easy and to the point. I just copied your commands and worked like a charm.</p>
<p>I really appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Expand LVM disk on Linux in VMware by Dennis</title>
		<link>http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/comment-page-1/#comment-2819</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Thu, 13 May 2010 19:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/#comment-2819</guid>
		<description>Worked like a charm, many thanks and may God bless.</description>
		<content:encoded><![CDATA[<p>Worked like a charm, many thanks and may God bless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Expand LVM disk on Linux in VMware by Kiran Pathur</title>
		<link>http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/comment-page-1/#comment-2775</link>
		<dc:creator>Kiran Pathur</dc:creator>
		<pubDate>Wed, 05 May 2010 15:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/#comment-2775</guid>
		<description>Thanks Chris, your script really helped me. We are extending disk using LVM as mentioned above but instead of adding a new disk, we extend existing disk and create a partition on it and add to LVM. We always needed to reboot, so that the extra disk space is available. But Chris&#039;s script really did it without rebooting. I have used forcerescan option and finally it boils down to the following
echo 1 &gt; /sys/class/scsi_device/0:0:1:0/device/rescan
Also after creating a partition, when we ran pvcreate /dev/sdb2 we got an exception saying that /dev/sdb2 in not recognized or filtered out. I ran partprobe and pvcreate worked afterwards without problems.

If you are adding a new disk, you can make it detected using following command:
echo &quot;- - -&quot; &gt; /sys/class/scsi_host/host0/scan

You might need to replace host0 with proper value.</description>
		<content:encoded><![CDATA[<p>Thanks Chris, your script really helped me. We are extending disk using LVM as mentioned above but instead of adding a new disk, we extend existing disk and create a partition on it and add to LVM. We always needed to reboot, so that the extra disk space is available. But Chris&#8217;s script really did it without rebooting. I have used forcerescan option and finally it boils down to the following<br />
echo 1 &gt; /sys/class/scsi_device/0:0:1:0/device/rescan<br />
Also after creating a partition, when we ran pvcreate /dev/sdb2 we got an exception saying that /dev/sdb2 in not recognized or filtered out. I ran partprobe and pvcreate worked afterwards without problems.</p>
<p>If you are adding a new disk, you can make it detected using following command:<br />
echo &#8220;- &#8211; -&#8221; &gt; /sys/class/scsi_host/host0/scan</p>
<p>You might need to replace host0 with proper value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux &#8211; Multiple FTP users, same directory, different permissions. by Vamsi</title>
		<link>http://www.swizzling.org/2009/04/01/linux-multiple-ftp-users-same-directory-different-permissions/comment-page-1/#comment-2651</link>
		<dc:creator>Vamsi</dc:creator>
		<pubDate>Mon, 05 Apr 2010 05:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/?p=37#comment-2651</guid>
		<description>thanks :) , I just searched google and landed here :D
perfect guide..
whats the significance of changing local_umask to 0007

thanks :)</description>
		<content:encoded><![CDATA[<p>thanks <img src='http://www.swizzling.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  , I just searched google and landed here <img src='http://www.swizzling.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
perfect guide..<br />
whats the significance of changing local_umask to 0007</p>
<p>thanks <img src='http://www.swizzling.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download VMware viclient by Vesa</title>
		<link>http://www.swizzling.org/2008/10/24/download-vmware-viclient/comment-page-1/#comment-2615</link>
		<dc:creator>Vesa</dc:creator>
		<pubDate>Mon, 29 Mar 2010 21:06:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/10/24/download-vmware-viclient/#comment-2615</guid>
		<description>Stupid that this &quot;free&quot; tool is not available from vmware directly. Thanks! saved alot of head scratching ;)</description>
		<content:encoded><![CDATA[<p>Stupid that this &#8220;free&#8221; tool is not available from vmware directly. Thanks! saved alot of head scratching <img src='http://www.swizzling.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Expand LVM disk on Linux in VMware by Atif</title>
		<link>http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/comment-page-1/#comment-2597</link>
		<dc:creator>Atif</dc:creator>
		<pubDate>Wed, 24 Mar 2010 07:58:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/#comment-2597</guid>
		<description>amazing....!! this is the only post available on google how to resize LVM.</description>
		<content:encoded><![CDATA[<p>amazing&#8230;.!! this is the only post available on google how to resize LVM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download VMware viclient by mgy</title>
		<link>http://www.swizzling.org/2008/10/24/download-vmware-viclient/comment-page-1/#comment-2562</link>
		<dc:creator>mgy</dc:creator>
		<pubDate>Thu, 18 Mar 2010 21:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/10/24/download-vmware-viclient/#comment-2562</guid>
		<description>Hi, thanks a lot, this was The Download of the Month for me!</description>
		<content:encoded><![CDATA[<p>Hi, thanks a lot, this was The Download of the Month for me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Expand LVM disk on Linux in VMware by LaTouf</title>
		<link>http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/comment-page-1/#comment-2533</link>
		<dc:creator>LaTouf</dc:creator>
		<pubDate>Thu, 18 Mar 2010 08:55:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.swizzling.org/2008/04/01/expand-lvm-disk-on-linux-in-vmware/#comment-2533</guid>
		<description>Thank you so very much !</description>
		<content:encoded><![CDATA[<p>Thank you so very much !</p>
]]></content:encoded>
	</item>
</channel>
</rss>
