【fuse】libfuse编译安装
libfuse编译安装
Installation
You can download libfuse from https://github.com/libfuse/libfuse/releases. To build and install, we recommend to use Meson and Ninja. After extracting the libfuse tarball, create a (temporary) build directory and run Meson:
$ mkdir build; cd build
$ meson ..
Normally, the default build options will work fine. If you nevertheless want to adjust them, you can do so with the meson configure command:
$ meson configure # list options
$ meson configure -D disable-mtab=true # set an option
To build, test and install libfuse, you then use Ninja:
$ ninja
$ sudo ninja install
查询libfuse版本:
[root@localhost foundationdb]# fusermount3 --version
fusermount3 version: 3.16.2
[root@localhost foundationdb]# pkg-config --modversion fuse3
3.10.5
参考资料