Mysql 설치 오류 해결 - (CentOS 6.2/Mysql 5.5.21)

Coumputer's/Linux 2012. 3. 21. 10:14


mysql을 source 설치할 때 cmake시 아래와 같은 error가 발생하는 경우가 있다.

checking for termcap functions library... configure: error: No curses/termcap library found

위와 같은 에러가 발생할 경우 아래 명령어를 통해서 라이브러리를 설치한다.
# yum -y install libtermcap-devel ncurses-devel

  * 우분투의 경우 # apt-get install libncurses5-dev 실행.


Linux에서 HTTP Proxy Server 설정하기

Coumputer's/Linux 2012. 3. 19. 16:30



1. vi /etc/profile

2. http_proxy설정 
    export http_proxy=[proxy서버]:[proxy포트]

3. source /etc/profile을 통해서 바로 적용.

4. export | grep http_proxy 를 통해서 제대로 적용됐는지 확인.