Difference between revisions of "VMWare Virtual Disk Format (VMDK)"
From Forensics Wiki
Joachim Metz (Talk | contribs) (Created page with "{{expand}} == External Links == * [http://www.vmware.com/support/developer/vddk/vmdk_50_technote.pdf?src=vmdk Virtual Disk Format 5.0], by VMWare Category:File Formats") |
Joachim Metz (Talk | contribs) (→Extent data file types) |
||
| (14 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
{{expand}} | {{expand}} | ||
| + | |||
| + | == Image types == | ||
| + | There are multiple types of VMWare Virtual Disk Format (VMDK) files: | ||
| + | * '''2GbMaxExtentFlat''' (or '''twoGbMaxExtentFlat'''); descriptor file (name.vmdk) with RAW extent data files (name-f###.vmdk). This image type is basically a [[Raw Image Format|split RAW image]]. | ||
| + | * '''2GbMaxExtentSparse''' (or '''twoGbMaxExtentSparse'''); descriptor file (name.vmdk) with VMDK sparse extent data files (name-s###.vmdk) | ||
| + | * '''monolithicFlat'''; descriptor file (name.vmdk) with RAW extent data file (name-f001.vmdk). This image type is basically a [[Raw Image Format|RAW image]]. | ||
| + | * '''monolithicSparse'''; VMDK sparse extent data file (name.vmdk) which contains the descriptor file data. | ||
| + | |||
| + | == Descriptor file == | ||
| + | The descriptor file defines how and where the data of the VMDK image is stored. The data is stored in extent data files. | ||
| + | |||
| + | == Extent data file types == | ||
| + | There are multiple types extent data files: | ||
| + | * RAW extent data file or device | ||
| + | * VMDK sparse extent data file | ||
| + | * COWD sparse extent data file | ||
| + | |||
| + | Note that the '''VMDK sparse extent data file''' can be in a '''dirty state'''. | ||
| + | |||
| + | == See Also == | ||
| + | * [[Disk Images]] | ||
== External Links == | == External Links == | ||
Revision as of 12:24, 23 September 2012
|
Please help to improve this article by expanding it.
|
Contents |
Image types
There are multiple types of VMWare Virtual Disk Format (VMDK) files:
- 2GbMaxExtentFlat (or twoGbMaxExtentFlat); descriptor file (name.vmdk) with RAW extent data files (name-f###.vmdk). This image type is basically a split RAW image.
- 2GbMaxExtentSparse (or twoGbMaxExtentSparse); descriptor file (name.vmdk) with VMDK sparse extent data files (name-s###.vmdk)
- monolithicFlat; descriptor file (name.vmdk) with RAW extent data file (name-f001.vmdk). This image type is basically a RAW image.
- monolithicSparse; VMDK sparse extent data file (name.vmdk) which contains the descriptor file data.
Descriptor file
The descriptor file defines how and where the data of the VMDK image is stored. The data is stored in extent data files.
Extent data file types
There are multiple types extent data files:
- RAW extent data file or device
- VMDK sparse extent data file
- COWD sparse extent data file
Note that the VMDK sparse extent data file can be in a dirty state.