Linux系统标准化3: 更改主机名&时间同步

Linux系统修改主机名: 

hostname  $NEWNAME
hostname > /etc/hostname
echo "$IP $NEWNAME" >> /etc/hosts
vi /etc/sysconfig/network ##设置HOSTNAME=$NEWNAME
备注:1. $NEWNAME为修改后的主机名称 2. $IP为机器的实际IP

 

时间同步

yum -y install ntp ntpdate
sed -i '/^server/d' /etc/ntp.conf
tee -a /etc/ntp.conf << EOF
server 0.cn.pool.ntp.org iburst
server 1.cn.pool.ntp.org iburst
server 2.cn.pool.ntp.org iburst
server 3.cn.pool.ntp.org iburst
EOF
ntpdate  -u  stdtime.gov.hk
service ntpd restart
chkconfig ntpd on

 

posted @ 2017-10-21 10:50  zhuntidaoren  阅读(340)  评论(0编辑  收藏  举报