分类: LINUX
2012-08-28 16:24:38
一,操作系统基本部署:
1,最小化安装操作系统CentOS-5.5,我用的是64位的(32位和64位的安装差别不大),字符界面安装,去掉所有组件;
2,暂时关闭selinux和iptables;
关闭selinux:
vi /etc/selinux/config
SELINUX=disabled
关闭iptables:
1. service iptables stop
2. chkconfig --level 0123456 iptables off
3,关闭不必要的服务
注意,下面的服务需要开启:
1. setup
调出下面界面,选择"System services"
2011-8-18 16:13:06 上传
留下下面的服务,其他的去不去掉
1. atd
2. crond
3. irqbalance
4. microcode_ctl
5. network
6. sshd
7. syslog
4,更改时间,并配置时间自动同步
安装cron
1. yum -y install vixie-cron crontabs ntp
crontab -e
加入下面一行:
1. */30 * * * * ntpdate 210.72.145.44
配置时间:
1. date --set "06/10/2011 13:56"
即吧时间调整为2011年06月10日,13点56分(以当你前时间为准)
保存时间,即保存到coms里
1. clock -w