有时候装完系统之后,用了很久才发现系统当前的时间是不对的。一般情况下是因为装系统时我们的时区没有设置正确。
- 更改时区:
第一种:
# tzselect #获取时区TZ值# vim ~/.bashrc #添加下面一行export TZ='Asia/Shanghai'
第二种:
# timedatectl set-timezone 'Asia/Shanghai'
- 更改时间:
时区设置对之后,一般时间就准确了。如果没有准确,也可以按照下面修改。
第一种:
# date -s xx/xx/xx #更改日期# date -s xx:xx:xx #更改时间
第二种:
# yum install -y ntpdate# ntpdate cn.ntp.org.cn #同步时间
- 更改硬件时间:
除了系统时间之外,还有硬件时间。
# hwclock -r 或 clock -r #查看硬件时间# hwclock --set --date="xx/xx/xx xx:xx" 或 clock --set --date="xx/xx/xx xx:xx" #更改硬件时间
# hwclock --hctosys 或 clock --hctosys #用硬件时钟同步系统时钟# hwclock --systohc 或 clock --systohc #用系统时钟同步硬件时钟