在Linux系统中,可以用date命令来显示或设定系统的日期与时间
1. 查看系统时间
[[email protected] ~]# date Tue Aug 16 00:10:25 CST 2022
2. 修改系统时间
2.1 只修改日期,不修改时间
[[email protected] ~]# date -s 2022-08-16
Tue Aug 16 00:00:00 CST 2022
2.2 只修改时间
[[email protected] ~]# date -s 00:18:48
Tue Aug 16 00:18:48 CST 2022
2.3 同时修改日期时间,注意要加双引号,日期与时间之间有一空格
[[email protected] ~]# date -s "20220816 00:19:19"
Tue Aug 16 00:19:19 CST 2022
2.4 以上时间修改完成后,把系统时间写入CMOS
[[email protected] ~]# clock -w
[[email protected] ~]#