merge split vmdk into single file Link

VMware Disk I/O performance tunning

In the very beginning when initial a vm with VMware, it will ask you to choose two different storage types, split file and single file mode.

Split files are very useful to put them on filesystem with file size limit according the disk partition format (FAT32,.etc).

For better performance you can use single file and preallocated disk.

If you choosed the split one and got the performance issue in your vm, you probablly might convert the vmdk files into the monolithic mode.

Here is the steps:

  • Shutdown the VM.

  • Open the VM folder

  • Type cmd in the path then enter

  • Type c:Program Files (x86)VMwareVMware Workstation vmware-vdiskmanager.exe -r “Windows 10 x64.vmdk” -t 0 NewMonolithic.vmdk

  • Wait the “Convert” to 100%.

  • Delete those old 00xx.vmdk files, then rename NewMonolithic.vmdk to Windows 10 x64.vmdk

  • Power on the VM, the VM should run faster then before.

Link