CentOS 6.5设置本地时间
#修改语言
# vi /etc/sysconfig/i18n
#LANG="zh_CN.UTF-8"
LANG="en_US.UTF-8"
#修改时区
# rm -rf /etc/localtime
# ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# reboot
# ntpdate time.nist.gov
# date
#写入bios
# hwclock -w
# 定时校正服务器时钟,定时与中国国家授时中心授时服务器同步
# crontab -e
加入一行:
*/30 * * * * ntpdate time.nist.gov > /dev/null 2>&1