文章目录
- 1、安装ntpdate
- 2、修改时区
- 3、设置系统时间与网络时间同步
- 4、将系统时间写入硬件时间
1、安装ntpdate
# Red Hat和Cent OS系统
sudo yum install ntpdate
# 乌班图
sudo apt-get install ntpdate
2、修改时区
1)运行tzselect
tzselect
2)选择Asia(亚洲)
3)选择China
4)然后选定北京时间,确认
5)复制文件到本地时间内
sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
3、设置系统时间与网络时间同步
sudo ntpdate cn.pool.ntp.org
http://cn.pool.ntp.org是位于中国的公共NTP服务器
4、将系统时间写入硬件时间
sudo hwclock --systohc
或
sudo hwclock -w
修改完成