测试环境:Centos 6,工具:Putty
查看当前时区
date -R
修改、设置时区
第一步在SSH运行命令:tzselect
5,回车
9,回车
1,回车
确认后按1,回车。
第二步复制相应的时区文件,替换系统时区文件;或者创建链接文件
cp /usr/share/zoneinfo/$主时区/$次时区 /etc/localtime
在中国可以使用:
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
设置成功后,再运行date -R看看。
修改时间
date -s 07/17/2017
修改时间为 2017年7月17日
date -s 11:22:33
修改时间为 11时22分33秒
把修改写入bios
hwclock -w
CentOS 7 修改方法
在 CentOS 7 中, 引入了一个叫 timedatectl 的设置设置程序
查看当前设置
timedatectl
Local time: Mon 2017-08-21 17:41:54 UTC
Universal time: Mon 2017-08-21 17:41:54 UTC
RTC time: Mon 2017-08-21 17:42:00
Time zone: UTC (UTC, +0000)
NTP enabled: yes
NTP synchronized: no
RTC in local TZ: no
DST active: n/a
列出所有时区
timedatectl list-timezones
将硬件时钟调整为与本地时钟一致, 0 为设置为 UTC 时间
timedatectl set-local-rtc 1
设置系统时区为上海
timedatectl set-timezone Asia/Shanghai
文章评论