Make it possible to mount image files.
Bug #202512 reported by
Michael Biebl
This bug affects 3 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
partimage-ng |
New
|
Undecided
|
Unassigned |
Bug Description
partimage-ng should provide a mechanism to mount image files (similar to ntfsmount), so you can restore arbitrary files.
I guess the easiest approach would be to implement it via fuse (as ntfsmount does).
To post a comment you must log in.
Such a mechanism is on my todo list already.
AFAIK fuse is not a appropriate solution here because we need to present an image file as a regular block
device and then let the 'mount' utility deal with it. Fuse is about implementing a filesystem interface not
a block device interface.
Device mapper fits the problem better. Xen devs implemented a new device mapper target - dm-userspace wiki.xensource. com/xenwiki/ DmUserspace
http://
That is exactly what we need. Using dm-userspace and cowd we could implement a cowd plugin for mapping
requests according to the partimage-ng image file format. Sounds easy enough.