linux修改系统时间
手动修改
1 | date -s 04/28/19 |
修改日期为:2019/04/28
1 | date -s 11:28:00 |
修改时间为11:28:00
或者一次:
1 | date -s "2019-04-28 11:28:00" |
1 | hwclock -w |
将时间写入bios避免重启失效
同步网络时间
1 | yum install ntp |
ntp常用服务器:
1 | 中国国家授时中心:210.72.145.44 |
同步时间:
1 | ntpdate -dv ntp.api.bz |
同步完成之后,发现时间有点不对,12h误差
1 | [root@localhost ~]# date |
查了下,EDT
是美国东部时间,需要改成北京时间
时区修改
1 | mv /etc/localtime /etc/localtime.bak |
完成~