1.硬件環境:
硬盤:9.2 G ; 內存:128 M ; 網卡:EEpor100
2.軟件
操作系統: RedHat 6.2
3.優化RedHat 6.2
安裝時選擇
FTP 和 dns
編輯文件 /etc/hosts
改為:
202.104.131.100 info.langoit.com.cn info
編輯文件 /etc/named.conf
改為:
// generated by named-bootconf.pl
options {
directory "/var/named";
forwarders {202.104.131.98;};
forwards only;
// query-source address * port 53;
};
//
// a caching only nameserver config
//
zone "." in {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" in {
type master;
file "named.local";
};
編輯文件 /etc/resolv.conf
改為:
search langoit.com.cn
nameserver 202.104.131.98
nameserver 202.96.134.133
優化Linux 內核:
刪除沒有的rpm 包:
首先要停止正在運行的進程
cd /etc/rc.d/init.d
./sendmail stop
./apmd stop
./kudzu stop
rpm -e --nodeps sendmail kudzu nfs-utils
編輯文件 /usr/src/linux/include/Linux/tasks.h
編輯第十四行 (vi +14 ) :
NR_TASKS 5120 - 3072
MIN_TASKS_LEFT_FOR_ROOT 16 - 24
編輯文件 /usr/src/Linux/Makefile
編輯第十八行 (vi +18 ) :
HOSTCC =gcc
-
HOSTCC =egcs
編輯第二十五行 (vi +25 ) :
CC =$(CROSS_COMPILE)gcc -D__KERNEL__ -I$(HPATH)
-
CC =$(CROSS_COMPILE)egcs -D__KERNEL__ -I$(HPATH)
編輯第九十行 (vi +90 ) :
CFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
-
CFLAGS = -Wall -Wstrict-prototypes -O9 -funroll-loops -ffast-math -malign-double -mcpu=
pentiumpro -march=pentiumpro -fomit-frame-pointer -fno-exceptions
編輯第十九行 (vi +19 ) :
HOSTCFLAGS =-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
-
HOSTCFLAGS =-Wall -Wstrict-prototypes -O9 -funroll-loops -ffast-math -malign-double -mcpu=
pentiumpro -ma