是什么 ? | : | the reference implementation of the Linux FUSE (Filesystem in Userspace) interface. |
开发语言 | : | C |
源码仓库 | : | https://github.com/libfuse/libfuse |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
apt | sudo apt-get install -y libfuse | |
CentOS | yum | sudo yum install -y libfuse |
dnf | sudo dnf install -y libfuse | |
openSUSE | zypper | sudo zypper install -y libfuse |
Alpine Linux | apk | sudo apk add libfuse |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge sys-fs/fuse |
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + xz |
编译时 | meson、ninja、gcc / GCC | Clang / LLVM |
运行时 |
|
step2、使用curl命令下载libfuse
源码包 ()
curl -LO https://github.com/libfuse/libfuse/releases/download/fuse-3.9.0/fuse-3.9.0.tar.xz
step3、使用tar解压libfuse
源码包
tar vxf fuse-3.9.0.tar.xz
step4、进入fuse-3.9.0
目录
cd fuse-3.9.0
step5、查看fuse-3.9.0
目录的内容
step6、使用meson配置编译参数
meson setup --prefix=$(pwd)/output --buildtype=release --backend=ninja build
step7、使用ninja编译、安装
ninja -C build && ninja -C build install