Skip to content

SophosLabs-zz/vdfuse

Repository files navigation

#########################################################
This is a clone of https://github.com/jonathanxavier/vdfuse
with a few minor updates to make it compile against the latest 
VirtualBox headers as well as a more portable build system

This Fuse module uses the VBox access library to open a VBox supported VD image file and mount
it as a Fuse file system.  The mount point contains a flat directory with the following files
 *  EntireDisk
 *  PartitionN

Note that each file should only be opened once and opening EntireDisk should locks out
the other files. However, since file close isn't passed to the fuse utilities, I can only 
enforce this in a brute fashion:  If you open EntireDisk then all further I/O to 
the PartitionN files will fail.  If open any PartitionN file then all further I/O to EntireDisk
will fail.  Hence in practice you can only access on or the other within a single mount. 

##########################################################
ChangeLog:
 See ChangeLog

##########################################################
Installation:
 See INSTALL

##########################################################
Usage: (once installed)
 
 Linux: (TODO)


 OSX: 
 > sudo ./vdfuse -tVHD -a -f /path/to/vdi /path/to/mount 

 > hdiutil attach -imagekey diskimage-class=CRawDiskImage -nomount /path/to/mount/EntireDisk
 > /dev/diskX   << Pay attention to disk ids assigned

 > mount -t YourFS /dev/diskXsY /path/to/partition/mount

##########################################################
License:
 See COPYING

##########################################################
Authors:
 See AUTHORS
	
##########################################################

sources:
http://serverfault.com/questions/174278/mount-an-vhd-on-mac-os-x
http://forums.virtualbox.org/viewtopic.php?f=26&t=33355&start=0

About

Fuse driver to mount VirtualBox compatible disk images ( including snapshots ).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published