Ubuntuでマウントするしかない。
Install the virtualbox fuse package which is required to open up this vhd image into its raw form
# apt-get install virtualbox-fuse
# vdfuse -w -f <path to vhd image> <path to mount point>
# ls <path to mount point>
Here it could list either
# EntireDisk
(or)
# EntireDisk Partition1 Partion2 . ...
Depending on the number of partitions made on the Disk while creating and lets mark this as CASE 2
# mount <path to vhd image>/EntireDisk <path to one more new mount point path>
(or)
# mount <path to vhd image>/Partition1 <path to one more new mount point>
Partition here could be the one you wanted to mount
# umount <path to mounted IMG partition> # umount <path to vhd image>
http://key-value.blogspot.jp/2013/06/mounting-vhd-image-file-in-linux.html