ubuntu jzmq 설치 중에 아래와 같은 에러 발생 시
1 2 3 | $ ./autogen.sh autogen.sh: error: could not find autoreconf. autoconf and automake are required to run autogen.sh. | cs |
패키지 인스톨러를 통해 autoconf를 설치 후 다시 진행합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | $ sudo apt-get install pkg-config Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: pkg-config 0 upgraded, 1 newly installed, 0 to remove and 81 not upgraded. Need to get 45.0 kB of archives. After this operation, 177 kB of additional disk space will be used. Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 pkg-config amd64 0.29.1-0ubuntu1 [45.0 kB] Fetched 45.0 kB in 0s (47.8 kB/s) Selecting previously unselected package pkg-config. (Reading database ... 65626 files and directories currently installed.) Preparing to unpack .../pkg-config_0.29.1-0ubuntu1_amd64.deb ... Unpacking pkg-config (0.29.1-0ubuntu1) ... Processing triggers for man-db (2.7.5-1) ... Setting up pkg-config (0.29.1-0ubuntu1) ... hadoop-user@secondary:/usr/local/jzmq$ ./autogen.sh autogen.sh: error: could not find autoreconf. autoconf and automake are required to run autogen.sh. hadoop-user@secondary:/usr/local/jzmq$ sudo apt-get install autoconf Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: automake m4 Suggested packages: autoconf-archive gnu-standards autoconf-doc gettext The following NEW packages will be installed: autoconf automake m4 0 upgraded, 3 newly installed, 0 to remove and 81 not upgraded. Need to get 1,025 kB of archives. After this operation, 3,781 kB of additional disk space will be used. Do you want to continue? [Y/n] Y Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 m4 amd64 1.4.17-5 [195 kB] Get:2 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 autoconf all 2.69-9 [321 kB] Get:3 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 automake all 1:1.15-4ubuntu1 [510 kB] Fetched 1,025 kB in 2s (421 kB/s) Selecting previously unselected package m4. (Reading database ... 65642 files and directories currently installed.) Preparing to unpack .../archives/m4_1.4.17-5_amd64.deb ... Unpacking m4 (1.4.17-5) ... Selecting previously unselected package autoconf. Preparing to unpack .../autoconf_2.69-9_all.deb ... Unpacking autoconf (2.69-9) ... Selecting previously unselected package automake. Preparing to unpack .../automake_1%3a1.15-4ubuntu1_all.deb ... Unpacking automake (1:1.15-4ubuntu1) ... Processing triggers for install-info (6.1.0.dfsg.1-5) ... Processing triggers for man-db (2.7.5-1) ... Setting up m4 (1.4.17-5) ... Setting up autoconf (2.69-9) ... Setting up automake (1:1.15-4ubuntu1) ... update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode | cs |
'Operating System > Linux' 카테고리의 다른 글
Ubuntu 한글 깨짐 (0) | 2018.05.03 |
---|---|
CentOS Git 설치 (0) | 2018.04.23 |
jzmq [에러] could not find pkg-config. pkg-config is required to run autogen.sh. (0) | 2018.03.19 |
zeromq [에러] no acceptable C compiler found in $PATH (0) | 2018.03.19 |
ubuntu Jzmq 설치 (0) | 2018.03.19 |