Linux整理的笔记

一、Linux 时间设置,永久,系统时间和硬件时间

在Linux中存在两个时间,系统时间和硬件时间
系统时间system time:
查询方式:date
修改方式:date -s ‘12/05/2018 12:00:00’
特 点:设置后,重启失效。

硬件时间hardware clock:
查询方式:hwclock --show
修改方式:hwclock --set --date ‘2018-12-05 12:00:00’
特 点:关机时仍然运行。

设置时间永久生效:
/硬件时间为基准,修改系统时间
[root@localhost ~]# hwclock --hctosys
[root@localhost ~]# hwclock -s

之后重启 init 6 看系统时间

浪费时间的地方,如图
Linux整理的笔记
后面的pm 下午,没注意到,瞎

上一篇:linux复习3:linux字符界面的操作


下一篇:Linux-关机重启