fusenbd

A FUSE mounter for network block device.

Example

``` $ fusenbd data '127.0.0.1:10809' sda1 -r -- -o autounmount,defaultpermissions,allow_other,ro& [1] 14013

$ mkdir -p m

$ ntfs-3g -o ro ./data m

$ ls m Boot bootmgr BOOTSECT.BAK System Volume Information

$ fusermount -u m

$ fusermount -u data [1]+ Done fusenbd ```

Usage

``` fusenbd 0.1.0 Vitaly _Vi Shukela vi0oss@gmail.com FUSE-based network block device client that exposes NBD export as a plain file

USAGE: fusenbd [FLAGS] [ARGS]

FLAGS: -h, --help Prints help information -r, --read-only Mount read-only -V, --version Prints version information

ARGS: Regular file to use as mountpoint Host:port to make NBD connection Named export to use. [default: ] ... The rest of FUSE options. Specify export as "" to use default and skip to FUSE options.

Example: fusenbd nbd.dat 127.0.0.1:10809

fusenbd -r sda1 127.0.0.1:10809 sda1 -- -o allow_empty,ro,fsname=qwerty,auto_unmount

```

Building and installing

For Linux x86_64, you can try a pre-built version. Otherwise,

  1. Setup rust toolchain
  2. Install FUSE development headers (apt-get install libfuse-dev)
  3. cargo install fusenbd.
  4. Either use fusenbd right away or find it somewhere and copy to $PATH.