Skip to content

Commit 0982405

Browse files
committed
fuse手动安装指引
1 parent e613402 commit 0982405

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,28 @@ Licensed under the GNU GPL version 2
136136
* 为什么之前可用写文件,突然不能写了?
137137

138138
  由于cos鉴权产品策略调整,所以老版本的cosfs工具会导致策略校验不过,因此需要拉取最新的cosfs工具重新mount
139+
140+
141+
* 在centos6.5及较低版本,提示fuse版本太低,该如何解决?
142+
143+
如在configure操作时,提示
144+
```hecking for common_lib_checking... configure: error: Package requirements (fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6) were not met:
145+
146+
Requested 'fuse >= 2.8.4' but version of fuse is 2.8.3```
147+
148+
此时,你需要来手动安装fuse版本,具体步骤
149+
150+
```
151+
# yum remove -y fuse
152+
# wget https://github.com/libfuse/libfuse/releases/download/fuse_2_9_4/fuse-2.8.4.tar.gz
153+
# tar -zxvf fuse-2.8.4.tar.gz
154+
# cd fuse-2.8.4
155+
# ./configure
156+
# make
157+
# make install
158+
# export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/lib64/pkgconfig/:/usr/local/lib/pkgconfig
159+
# modprobe fuse
160+
# echo "/usr/local/lib" >> /etc/ld.so.conf
161+
# ldconfig
162+
# pkg-config --modversion fuse
163+
2.8.4 //看到版本表示安装成功 ```

0 commit comments

Comments
 (0)