Linux时区/时间设置

date 查看/设置系统时间

1、将日期设置为2018年08月25日

[root@linux~]# date -s 25/08/18

2、将时间设置为23点53分50

[root@linux~]# date -s 23:53:50

3、将时间设置为2018年08月25日23点53分50秒(MMDDhhmmYYYY.ss)

[root@linux~]# date 0825235318.30

修改时区

[root@linux-node ~]# echo “ZONE=Asia/Shanghai” >> /etc/sysconfig/clock

[root@linux-node ~]# rm -f /etc/localtime

#链接到上海时区文件

[root@linux-node ~]# ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

 

本文链接地址: Linux时区/时间设置

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注