先卸载

yum list fuse

yum --setopt=tsflags=noscripts remove fuse.x86_64

 

安装

yum install automake gcc-c++ libcurl-devel libxml2-devel make openssl-devel

wget https://github.com/libfuse/libfuse/releases/download/fuse-2.9.9/fuse-2.9.9.tar.gz
tar -zxvf fuse-2.9.9.tar.gz
cd fuse-2.9.9
./configure
make
make install

vi /etc/profile
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

source /etc/profile

--查看版本
pkg-config --modversion fuse

 

相关文章:

  • 2021-11-28
  • 2022-01-05
  • 2021-05-31
  • 2021-09-04
  • 2022-02-08
  • 2022-02-09
  • 2021-07-29
  • 2022-12-23
猜你喜欢
  • 2021-12-07
  • 2022-01-26
  • 2022-02-08
  • 2021-12-01
  • 2021-12-05
  • 2021-12-06
相关资源
相似解决方案