CentOS查看时间、修改日期时间、启用NTP校时服务

查看RedHat发布版本

[cet@cetpc Common]$ cat /etc/redhat-release 
CentOS Linux release 7.5.1804 (Core)

查看日期时间

[cet@cetpc temp]$ date 
2023年 03月 20日 星期一 09:16:26 CST

启用NTP校时服务

[cet@cetpc temp]$ sudo ntpdate cn.pool.ntp.org
20 Mar 09:16:22 ntpdate[122295]: step time server 202.118.1.81 offset 20855766.655924 sec

修改时间

[cet@cetpc temp]$ sudo date -s "12:00:00"
2023年 03月 20日 星期一 12:00:00 CST

修改日期

[cet@cetpc temp]$ sudo date -s "2022-07-22"
2022年 07月 22日 星期五 00:00:00 CST

修改日期时间

[cet@cetpc ~]$ sudo date -s "2022-07-22 12:00:00"
2022年 07月 22日 星期五 12:00:00 CST

把时间写入硬件CMOS元器件,这样断电重启后在没有网络校时服务NTP的情况下时间应该是顺延的

hwclock -w

你可能感兴趣的:(centos,linux,bash)