# SNMP 설치
yum -y install net-snmp*

# MRTG 설치 (경로: /var/www/mrtg)
yum -y install mrtg*

# 각종 그래픽 라이브러리 설치
yum -y install freetype gd libjpeg libpng



# 각 설정 파일의 경로

net-snmp : /etc/snmpd/snmpd.conf

mrtg : /etc/mrtg/mrtg.cfg




# SNMP를 시작하여 네트워크 정보 수집
service snmp start



# cfgmaker를 통해 cfg 파일을 생성한다.
cfgmaker --global 'WorkDir: /var/www/mrtg/' --global 'Language: korean' --global 'Options[_]: bits,growright' -output /var/www/mrtg/mrtg.cfg public@서버아이피

# indexmaker를 통해 웹에 표시할 인덱스 파일을 생성한다.
# 여기서 사용할 cfg 파일은 바로 위에서 생성한 파일을 가리킨다.
indexmaker --title "페이지제목" --output /var/www/html/mrtg/index.htm /var/www/mrtg/mrtg.cfg

# MRTG 갱신을 crond에 추가한다.
crontab -e
*/5 * * * * root /usr/bin/mrtg /var/www/mrtg/mrtg.cfg --lock-file /var/lock/mrtg/mrtg_l --confcache-file /var/lib/mrtg/mrtg.ok


LUFS(Linux Userland Filesystem): http://lufs.sourceforge.net/ 

최신 버전은 2003년에 릴리즈되었다. 8년 된 기술이군...


//아래에서 최신 버전(...)의 LUFS를 받는다.
http://sourceforge.net/projects/lufs/files/lufs/0.9.7/

tar -xvzf lufs-*.tar.gz
cd lufs-* 

./configure
make
make install

configure 과정 중 에러 발생 시

checking kernel headers... configure: error: not found in /lib/modules/2.6.18-194.el5/build/include. please install them!
=> http://blog.acu.pe.kr/29

configure: error: C++ preprocessor "/lib/cpp" fails sanity check


기타 나머지 에러들
=> http://blog.acu.pe.kr/31


curlftpfs -o allow_other 아이디:비밀번호@서버주소 마운트경로








 

checking for GLIB... configure: error: Package requirements (glib-2.0) were not met:


No package 'glib-2.0' found


yum -y install glib2-devel





checking for FUSE... configure: error: Package requirements (fuse >= 2.2) were not met:


No package 'fuse' found


yum -y install fuse-devel





configure: error: "libcurl not found"


아래 사이트에서 최신 버전의 cURL을 다운로드
http://curl.haxx.se/download.html

tar -xvzf curl-*
./configure
make
make install 






 

+ Recent posts