zargony / fuse-rs

Rust library for filesystems in userspace (FUSE)
MIT License
1.07k stars 130 forks source link

hello.rs mount dir block #164

Open mxq-151 opened 1 year ago

mxq-151 commented 1 year ago
image

build fuse-rs/example/hello.rs version:0.3.1

execute the program above in the image,but it block,anyone help?

Minoru commented 1 year ago

This is the expected behaviour; see https://docs.rs/fuse/0.3.1/fuse/fn.mount.html The FUSE filesystem is mounted as long as the program is running.

Also be advised that this crate is not maintained; see https://github.com/cberner/fuser instead.