How To Install CurlFTPFS On Amazon Linux/CentOS
1 2 3 4 5 6 7 8 9 |
yum install glib2-devel yum install fuse-devel yum install libcurl-devel wget http://sourceforge.net/projects/curlftpfs/files/latest/download tar xvzf curlftpfs-0.9.2.tar.gz cd curlftpfs-0.9.2 ./configure make make install |
rForce said on March 20, 2014, 6:11 am:
On Amazon AWS servers, libcurl-devel is not available using yum, and the gcc is missing as well, here is a list of the full steps:
yum install glib2-devel
yum install fuse-devel
yum install curl-devel
wget http://sourceforge.net/projects/curlftpfs/files/latest/download
tar xvzf curlftpfs-0.9.2.tar.gz
cd curlftpfs-0.9.2
./configure
make
make install