centos7 제작 nload 설치 패키지

1363 단어
설치 과정은 말할 것도 없고, 아래와 같다.
./configure 
make;make install

여기에 설치에 부딪힌 의존 패키지 문제를 기록합니다. 실행./configure에 다음과 같은 오류가 발생했습니다.
checking for C++ compiler default output file name... 
configure: error: C++ compiler cannot create executables
See `config.log' for more details.

해결 방법, 아래 설치gcc-c++ 패키지
yum install gcc-c++

다시 실행./configure, 다음과 같은 오류가 발생했습니다.
configure: error: ncurses library or development files not found. ncurses is required for nload.

해결 방법, 아래 설치ncurses-devel 패키지
yum install -y ncurses-devel

재집행./configure, 정상 무착, 이어 집행make;make install

좋은 웹페이지 즐겨찾기