Linux GNU Automake 설치 방법에 대해서 알아보자.
CentOS 7 기준으로 쓰여진 포스트입니다.
M4, autoconf, automake 순서로 설치해야 오류를 피할 수 있다. 먼저, M4, autoconf, automake 압축 파일을 다운로드 한다.
최신 버전은 링크(m4, autoconf, automake)에서 각각 확인 가능
압축은 이렇게 풀면 된다.
항목별 다운로드
# m4
wget https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz
# autoconf
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.72.tar.gz
# automake
wget http://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz
압축풀기
# m4
tar xvfz m4-1.4.19.tar.gz
# autoconf
tar xvfz autoconf-2.72.tar.gz
# automake
tar xvfz automake-1.16.5.tar.gz
m4 설치
cd m4-1.4.19
./configure --prefix=/usr
make && sudo make install
autoconf 설치
cd autoconf-2.72
./configure --prefix=/usr
make && sudo make install
automake 설치
cd automake-1.16.5
./configure --prefix=/usr
make && sudo make install
출처 및 참고
https://d2fault.github.io/2018/08/02/20180802-install-gnu-automake-centos/
https://blog.naver.com/PostView.nhn?blogId=realmass&logNo=10159484988
'IT Technology > Linux' 카테고리의 다른 글
Linux Openssl 버전 및 openssh 버전 확인 (0) | 2024.07.11 |
---|---|
리눅스 서버에서 IP, Port 통신 확인 방법 (0) | 2024.07.09 |
Linux SWAP이란 무엇인가 (0) | 2024.05.20 |
Linux NTP(Chrony) 시간 동기화 설정 방법 (0) | 2024.05.14 |
Linux 부팅시 스크립트 자동 실행 방법 (0) | 2024.04.17 |