<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Determining if a vmdk is thin or thick provisioned? in VMware Solutions Discussions</title>
    <link>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21984#M2175</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to determing if an existing vmdk for a vm is thin provisioned or thick provisioned?&amp;nbsp;&amp;nbsp; How do we go about determing it?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Rick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jun 2025 07:28:49 GMT</pubDate>
    <dc:creator>rtriana</dc:creator>
    <dc:date>2025-06-05T07:28:49Z</dc:date>
    <item>
      <title>Determining if a vmdk is thin or thick provisioned?</title>
      <link>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21984#M2175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to determing if an existing vmdk for a vm is thin provisioned or thick provisioned?&amp;nbsp;&amp;nbsp; How do we go about determing it?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Rick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 07:28:49 GMT</pubDate>
      <guid>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21984#M2175</guid>
      <dc:creator>rtriana</dc:creator>
      <dc:date>2025-06-05T07:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Determining if a vmdk is thin or thick provisioned?</title>
      <link>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21989#M2176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What version of vmware are you using? Thin vmdk's are not a supported feature in VI3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 19:56:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21989#M2176</guid>
      <dc:creator>dstrebel</dc:creator>
      <dc:date>2009-04-27T19:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Determining if a vmdk is thin or thick provisioned?</title>
      <link>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21994#M2177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Version 3.5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 20:11:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21994#M2177</guid>
      <dc:creator>rtriana</dc:creator>
      <dc:date>2009-04-27T20:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Determining if a vmdk is thin or thick provisioned?</title>
      <link>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21999#M2178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thin vmdk files are supported on NFS datastores as of ESX 3.0.&amp;nbsp; From the service console you can compare the output of the 'ls' command with the output of the 'du' command to tell if the vmdk is thin provisioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, this file is defined as 20GB, but thin provisioned and only using 92MB:&lt;/P&gt;&lt;PRE&gt;[root@esx ericXP]# ls -lh ericXP_1-flat.vmdk&lt;/PRE&gt;&lt;PRE&gt;-rw-r--r--&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20G Mar 26 16:10 ericXP_1-flat.vmdk&lt;BR /&gt;&lt;/PRE&gt;&lt;PRE&gt;[root@esx ericXP]# du -h ericXP_1-flat.vmdk&lt;/PRE&gt;&lt;PRE&gt;92M ericXP_1-flat.vmdk&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A slightly more efficient way of doing this is to simply add the '-s' option to the 'ls' command:&lt;/P&gt;&lt;PRE&gt;[root@esx ericXP]# ls -lhs ericXP_1-flat.vmdk&lt;/PRE&gt;&lt;PRE&gt;92M -rw-r--r--&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; root&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20G Mar 26 16:10 ericXP_1-flat.vmdk&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In all cases, you want to look at the -flat.vmdk portion of the file pair.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also determine this from the VI Client (as of ESX 3.5) by comparing the "Capacity" of the "Hard Drive" in the Virtual Machine Properties window with the Size of the file reported by the Datastore Browser.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;BR /&gt;-Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 21:06:47 GMT</pubDate>
      <guid>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/21999#M2178</guid>
      <dc:creator>forgette</dc:creator>
      <dc:date>2009-04-27T21:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Determining if a vmdk is thin or thick provisioned?</title>
      <link>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/22003#M2179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thin vmdk's are supported on NFS datastore since 3.0....and do actually work on VMFS as well. &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vSphere 4.0 is bringing some nice functionality here as well -- can make a vmdk thin during a storage vMotion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:27:47 GMT</pubDate>
      <guid>https://community.netapp.com/t5/VMware-Solutions-Discussions/Determining-if-a-vmdk-is-thin-or-thick-provisioned/m-p/22003#M2179</guid>
      <dc:creator>amiller_1</dc:creator>
      <dc:date>2009-04-29T06:27:47Z</dc:date>
    </item>
  </channel>
</rss>

