我想在我的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;
然后按照https://github.com/s3fs-fuse/s3fs-fuse的说明操作后,执行以下命令:
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
命令,该命令不会引导我。没有幸运的超级悲伤的脸。
答案 0 :(得分:0)
在libfuse克隆中运行makeconf.sh
,创建configure
。