como montar vários instantâneos usando vdfuse

0

Como por vdfuse comando help:

DESCRIPTION: This Fuse module uses the VirtualBox access library to open a 
VirtualBox supported VD image file and mount it as a Fuse file system.  The
mount point contains a flat directory containing the files EntireDisk,
Partition1 .. PartitionN.  These can then be loop mounted to access the
underlying file systems
Version: 0.83

USAGE: vdfuse [options] -f image-file mountpoint
    -h  help
    -r  readonly
    -t  specify type (VDI, VMDK, VHD, or raw; default: auto)
    -f  VDimage file
    -s  Snapshot file(s) to load on top of the image file
    -a  allow all users to read disk
    -w  allow all users to read and write to disk
    -g  run in foreground
    -v  verbose
    -d  debug

-s (Snapshot file(s) to load on top of the image file)

Em que formato aceita vários instantâneos?

    
por Arvind 16.09.2016 / 18:49

1 resposta

2

Eu preciso fazer a mesma coisa agora e tive que procurar o código-fonte em link .

De acordo com o código, você simplesmente emite várias opções -s para usar mais de uma imagem instantânea.

    
por Jimmy 05.01.2017 / 12:12