When I installed s3fs on Ubuntu, an error appeared:
./autogen.sh: 38: ./autogen.sh: aclocal: not found
this happens when I execute the command ./autogen.sh.
root @ ubuntu-2gb-nbg1-1: / usr / src / s3fs-fuse# ./autogen.sh
--- Make commit hash file -------
--- Finished commit hash file ---
--- Start autotools -------------
./autogen.sh: 38: ./autogen.sh: aclocal: not found
--- Finished autotools ----------
The error above is due to it package which is not installed, so the script won't run.
The solution is install autotools-dev with the command:
# apt-get install autotools-dev
then install it automake with the command:
# apt-get install automake
We try execution again autogen.sh:
#./autogen.sh
--- Make commit hash file -------
--- Finished commit hash file ---
--- Start autotools -------------
configure.ac:30: installing './compile'
configure.ac:26: installing './config.guess'
configure.ac:26: installing './config.sub'
configure.ac:27: installing './install-sh'
configure.ac:27: installing './missing'
src / Makefile.am: installing './depcomp'
parallel-tests: installing './test-driver'
--- Finished autotools ----------
Problem solved :)