- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
vmdk disk format
Hello,
When creating a new vmdk how can I see the disk format (zeroedthick or eagerzeroedthick or thick) on a vmfs3 volume ?
Thank you
Dominic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The default option is always zeroedthick.
If you want to create other disks you have to use vmkfstools.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
but how can I see the it after the creation of vmdks ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can only distinguish thin and thick disks (simply by looking at the size of the vmdk file).
I'm not aware of any method to distingish for example zeroed and eagerzeroed disks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I did not find anything.
I hope someone knows \!!!
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I just tried it
.
The only indication is
ddb.thinProvisioned = "1"
in the descriptor if it is a thin disk.
Eagerzeroed, zeroed and thick disks have the same descriptor.
Eagerzeroed and zeroed disks (of the same size) even pass a binary comparison.
Thick disks of course don't pass the binary comparison due to their nature.
The only logical answer to me is that part of the CID value distinguishes them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have been trying to find this out myself for a while, found this post http://communities.vmware.com/message/501161, which helps to some degree. Use the -s option with ls to see the block size so
ls -lh <vmdk path>
should show the size reported by the file and compare this to
ls -1sh <vmdk path>
and of it's smaller than the first value then it's a thin disk
Cheers
DB