- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的 Docker 容器上安装 s3fs-fuse。到目前为止,这是我的 Dockerfile。
FROM centos:centos6
RUN yum -y update; yum clean all; \
yum groupinstall -y "Web Server" "MySQL Database" "PHP Support"; \
service httpd start; \
chkconfig httpd on;
RUN yum install -y openssh; \
yum install -y openssh-clients;
ADD ssh/ /root/.ssh/
RUN chmod 600 /root/.ssh/*; \
touch /root/.ssh/known_hosts; \
ssh-keyscan github.com >> /root/.ssh/known_hosts;
RUN yum install -y git;
RUN yum install -y autoconf libtool gcc libstdc++-devel curl-devel mailcap; \
yum install -y automake fuse-devel gcc-c++ git libcurl-devel libxml2-devel make openssl-devel;
git clone https://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse
./autogen.sh
./configure
checking s3fs build with NSS... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for common_lib_checking... configure: error: Package requirements (fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6) were not met:
Requested 'fuse >= 2.8.4' but version of fuse is 2.8.3
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables common_lib_checking_CFLAGS
and common_lib_checking_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
yum fuse-devel
没有削减它。所以我去
https://github.com/libfuse/libfuse并按照那里的说明执行以下操作:
git clone https://github.com/libfuse/libfuse.git;
cd libfuse;
./configure
bash: ./configure: No such file or directory
autoconf
和
autoreconf -i
导致
m4 directory missing
的事情错误。我也尝试添加
--prefix=/your/chosen/directory
到
./configure --prefix=/your/chosen/directory
令我无处可去的命令。一张 super 悲伤的脸没有运气。
最佳答案
运行makeconf.sh
在您的 libfuse 克隆中创建 configure
.
关于docker - 无法安装 s3fs-fuse(yum fuse-devel 版本问题)并且无法安装 libfuse(./config 缺失问题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37663977/
上下文:Ubuntu 11.10 和 libfuse 2.8.4-1.4ubuntu1Linux 3.0.0-14-generic#23-Ubuntu SMP 11 月 21 日星期一 20:28:4
我正在尝试使用 this repositorie 在 CentOS7 机器上对我的 MQTT 网络进行负载测试在github上。我执行了以下命令来安装 python-mosquitto 依赖项。 #
我发现 FUSE 用户空间库和内核接口(interface)自从它在 Linux 上诞生以来就已经被移植到许多其他系统,并提供了一个相对稳定的 API,据说表面面积很小。如果我想在用户空间中编写文件系
我正在尝试编译 libfuse使用 NDK,我的环境: Win10(64位) + NDK(r14b,64位) + libfuse(3.1.0) fuse_common.h 发生错误,它检查 off_t
我正在尝试在我的 Docker 容器上安装 s3fs-fuse。到目前为止,这是我的 Dockerfile。 FROM centos:centos6 RUN yum -y update; yum
我希望我的应用程序能够显示来自远程 FTP(或 SFTP 等)位置的目录列表。当远程目录树中的文件/目录发生更改时,应用程序应使用相关更改更新其 View 。 因为遍历整棵树既慢又浪费,我想使用类似于
我是一名优秀的程序员,十分优秀!