<?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 on: VMware ESX 3.5 and thinprovisioning</title>
	<atom:link href="http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/feed/" rel="self" type="application/rss+xml" />
	<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/</link>
	<description></description>
	<lastBuildDate>Wed, 18 Apr 2012 18:36:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sven Huisman</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-1331</link>
		<dc:creator>Sven Huisman</dc:creator>
		<pubDate>Thu, 28 May 2009 17:11:22 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-1331</guid>
		<description>My advise would be to don&#039;t use the script. Thin provisioned disks are not supported in 3.5, especially if you are new to ESX.

Use the new vSphere (ESX 4.0) where thin provisioning is supported and integrated in the GUI.</description>
		<content:encoded><![CDATA[<p>My advise would be to don&#8217;t use the script. Thin provisioned disks are not supported in 3.5, especially if you are new to ESX.</p>
<p>Use the new vSphere (ESX 4.0) where thin provisioning is supported and integrated in the GUI.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walt Kruer</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-1285</link>
		<dc:creator>Walt Kruer</dc:creator>
		<pubDate>Sun, 17 May 2009 16:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-1285</guid>
		<description>I am very new to ESX and Vmware.  We would like to thin provision all of our VMs so your script will be a great help.  I am familiar with batch files but not the linux scripts.  What type of file do I need to place the script in and how do I run it?</description>
		<content:encoded><![CDATA[<p>I am very new to ESX and Vmware.  We would like to thin provision all of our VMs so your script will be a great help.  I am familiar with batch files but not the linux scripts.  What type of file do I need to place the script in and how do I run it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thin Provisioning in ESX 3.5 &#171; ben.neise.co.uk</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-1242</link>
		<dc:creator>Thin Provisioning in ESX 3.5 &#171; ben.neise.co.uk</dc:creator>
		<pubDate>Wed, 06 May 2009 11:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-1242</guid>
		<description>[...] my dream of being lauded for increasing our free space overnight came to an end. In an article on Virtual Future, Sven Huisman [...]</description>
		<content:encoded><![CDATA[<p>[...] my dream of being lauded for increasing our free space overnight came to an end. In an article on Virtual Future, Sven Huisman [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sven Huisman</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-1219</link>
		<dc:creator>Sven Huisman</dc:creator>
		<pubDate>Wed, 29 Apr 2009 08:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-1219</guid>
		<description>Great little script, thanks. I won&#039;t use it though, because I use vSphere now :-)</description>
		<content:encoded><![CDATA[<p>Great little script, thanks. I won&#8217;t use it though, because I use vSphere now <img src='http://virtualfuture.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DHall</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-1217</link>
		<dc:creator>DHall</dc:creator>
		<pubDate>Thu, 23 Apr 2009 15:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-1217</guid>
		<description>I have also created a small script that will loop through the vmdks and thin them automatically.  

cd into the folder that the vmdks resides in.   Make sure the VM is powered off.   The script will create a temp folder and move the vmdks into this directory.  It will then loop through each vmdk and clone them to thin back into the original directory.   (Did it this way so you don&#039;t have to modify the vmx)
Start your vm to make sure everything is kosher, then rm –rf /temp 


mkdir temp; for f in `ls &#124; egrep &#039;*\.vmdk$&#039;` ; do mv $f temp/; done; cd temp; for vmdk in `ls &#124; egrep &#039;*\.vmdk$&#039; &#124; grep -v flat` ; do vmkfstools -i $vmdk ../$vmdk -d thin  ; done ;</description>
		<content:encoded><![CDATA[<p>I have also created a small script that will loop through the vmdks and thin them automatically.  </p>
<p>cd into the folder that the vmdks resides in.   Make sure the VM is powered off.   The script will create a temp folder and move the vmdks into this directory.  It will then loop through each vmdk and clone them to thin back into the original directory.   (Did it this way so you don&#8217;t have to modify the vmx)<br />
Start your vm to make sure everything is kosher, then rm –rf /temp </p>
<p>mkdir temp; for f in `ls | egrep &#8216;*\.vmdk$&#8217;` ; do mv $f temp/; done; cd temp; for vmdk in `ls | egrep &#8216;*\.vmdk$&#8217; | grep -v flat` ; do vmkfstools -i $vmdk ../$vmdk -d thin  ; done ;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S.O.</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-723</link>
		<dc:creator>S.O.</dc:creator>
		<pubDate>Wed, 14 Jan 2009 21:41:41 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-723</guid>
		<description>Hi,

Thanks for this great and complete post.You mentioned that Storage VMotion creates thick VM as a result. The same situation happens when cloning the VM or deploying a  new VM from template as you said - the thin provisioned source will give you the thick disks, which you may want to manually convert to thin ones, again. Cumbersome, although I like using CLI.

Maybe the new functionality added in VMware vSphere 4 will solve this problem.

Regards,
S.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for this great and complete post.You mentioned that Storage VMotion creates thick VM as a result. The same situation happens when cloning the VM or deploying a  new VM from template as you said &#8211; the thin provisioned source will give you the thick disks, which you may want to manually convert to thin ones, again. Cumbersome, although I like using CLI.</p>
<p>Maybe the new functionality added in VMware vSphere 4 will solve this problem.</p>
<p>Regards,<br />
S.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Virtualization Short Take #24 - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-647</link>
		<dc:creator>Virtualization Short Take #24 - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</dc:creator>
		<pubDate>Mon, 15 Dec 2008 15:53:55 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-647</guid>
		<description>[...] H. over at VirtualFuture.info posted a good guide on using thin provisioned VMDKs with VMware ESX 3.5 via the vmkfstools command. (I was going to include a trackback to Sven&#8217;s [...]
</description>
		<content:encoded><![CDATA[<p>[...] H. over at VirtualFuture.info posted a good guide on using thin provisioned VMDKs with VMware ESX 3.5 via the vmkfstools command. (I was going to include a trackback to Sven&#8217;s [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Virtually Challenged &#187; Using a thin disk on VMware ESX 3.5</title>
		<link>http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/comment-page-1/#comment-635</link>
		<dc:creator>Virtually Challenged &#187; Using a thin disk on VMware ESX 3.5</dc:creator>
		<pubDate>Thu, 11 Dec 2008 21:06:16 +0000</pubDate>
		<guid isPermaLink="false">http://virtualfuture.info/?p=591#comment-635</guid>
		<description>[...] http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/" rel="nofollow">http://virtualfuture.info/2008/12/vmware-esx-35-and-thinprovisioning/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

