Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

./bootstrap: 17: exec: autoreconf: not found : OpenTSDB installation

I am trying to install OpenTSDB on Ubuntu, and I am following this documentation. But after running these commands:

git clone git://github.com/OpenTSDB/opentsdb.git
cd opentsdb

running this commanding is giving the following console output:

./build.sh

Console Output:

seed-admin@seedadmin-Inspiron-3847:~/Abharthan/opentsdb$ sudo ./build.sh
+ test -f configure
+ ./bootstrap
./bootstrap: 17: exec: autoreconf: not found

What is the problem?

like image 237
Bharthan Avatar asked Aug 27 '15 17:08

Bharthan


1 Answers

sudo apt-get install autoconf solved my problem

like image 165
Bharthan Avatar answered Oct 21 '22 03:10

Bharthan