设置系统时间的语句如下:
root@hhhh ~# date MMDDhhmmCCYY.ss
其中:
MM:月份;
DD:具体某月的日期;
hh:小时;
mm:分钟;
CCYY:年份;
ss:秒
为了使设置的时间生效,我们必须把设置的时间写入到linux系统下的CMOS时钟,否则下次系统重启时设置的系统时间并不会保存。
root@hhh ~ # clock -w # 写入CMOS时钟
root@hhh ~ # clock -r #查看CMOS时钟
我们可以使用date来查看当前系统的时间:
[root@markpain ~]# date
2017年 02月 04日 星期六 23:34:43 CST
[root@markpain ~]# cal 2 2017 //查看2017年二月的月历
[root@markpain ~]# cal 2017 //查看2017年的年历
end
MrBread 2017-02-04