Monthly Archive: 4월 2009

쉘 스크립트 강좌

쉘 스크립트 강좌

차례 Part 1. 소개 1. 왜 쉘 프로그래밍을 해야 하죠? 2. #! 으로 시작하기 2.1. 스크립트 실행하기 2.2. 몸풀기 연습문제(Preliminary...

rrdtool 사용하기

rrdtool 사용하기

** rrdtool 사용하기 ㅇ rrdtool data 생성 참고 http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/manual/rrdcreate.html rrdtool create httpd.rrd –step 300 \\ DS:httpd:GAUGE:600:U:U \\ DS:total:GAUGE:600:U:U \\ RRA:AVERAGE:0.5:1:600...

죽은 프로세스 살리기

죽은 프로세스 살리기

#include <stdio.h>#include <string.h>#include <dirent.h>#include <unistd.h>#include <sys/types.h>#include <time.h>#include <stdlib.h>    /* 검사 주기(초) */#define CHECK_SECOND        30  /* 실행 서버...