系统基本设置
主机名修改
# CentOS
h="TMXLlvs2" \
&& hostname $h \
&& sed -i.bak "s/\(HOSTNAME=\).*$/\1$h/g" /etc/sysconfig/network \
&& grep "127.0.0.1.*$h" /etc/hosts || sed -i "s/\(127.0.0.1.*$\)/\1 $h/g" /etc/hosts \
&& ping -c 4 $h
# Ubuntu
h="TMXLlvs2" \
&& hostname $h \
&& echo "$h" > /etc/hostname \
&& grep "127.0.0.1.*$h" /etc/hosts || sed -i "s/\(127.0.0.1.*$\)/\1 $h/g" /etc/hosts \
&& ping -c 4 $h
网络参数配置
# CentOS
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/resolv.conf
# Ubuntu
/etc/network/interface
ntpdate时钟同步
ntpdate cn.pool.ntp.org && hwclock -w
# /etc/crontab
#NTP update(cn.pool.ntp.org,time.stdtime.gov.tw,172.16.17.35)
30 4,16 * * * root (/usr/sbin/ntpdate cn.pool.ntp.org;/sbin/hwclock -w;) >> /var/log/ntpdate_$(date +\%Y\%m) 2>&1
sshd_config
sysctl.conf
limits.conf
服务启动管理
包管理工具
-
CentOS: yum, rpm
-
Ubuntu: apt-get,apt-cache,dpkg
软件源设置