Skip to content

Tool to mount zff containers

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

zff-team/zffmount

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zffmount

zffmount is a command line utility to mount a zff image using FUSE.

Installation

First, you need to install rust and cargo to build or install zffmount.

After that you still need some additional packages, which you can install as follows (depends on the distribution):

Debian/Ubuntu
$ sudo apt-get install gcc pkg-config fuse3 libfuse-dev
Fedora
$ sudo dnf install gcc pkg-config fuse3 fuse-devel

Then you can easily build this tool yourself by using cargo:

[/home/ph0llux/projects/zffmount] $ cargo build --release

Or you can install the tool directly from crates.io:

$ cargo install zffmount

Usage

Use zffmount -i <YOUR_ZFF_IMAGE.z01> -m /mnt/your_mountpoint to mount the image to /mnt/your_mountpoint. The acquired data that underlies the image is represented as a dd file. This is an on-the-fly conversion.