Hi,
I need to distribute directory containing about 300k files with total size of 20G. Other people should be able to easily access this directory and edit those files. Right now I'm using zip archives, but packing/unpacking takes a really long time.
Recently a collegue of mine suggested using some kind of virtual disks. I'm familiar with VMWare products, so I tried creating vmdk image and copying files to it.
I've created fresh image:
vmware-vdiskmanager.exe -c -s 30Gb -a ide -t 0 image.vmdk
I tried to mount it:
vmware-mount.exe x: image.vmdk
But mounting failed with the error message:
The virtual disk contains no volumes. Make sure the virtual disk has been partitioned and formatted.
Do you know any program I could use to partition and format vmdk disk? Or am I doing something wrong?
I'm also open to any other suggestions how to achieve the goal mentioned before, i.e. easy distribution of 20G of small files.
Thanks in advance for your time.