centos 系统下查看时间时区以及修改
一、centos 6
1.1查看系统时间
date
1.2将系统日期修改为2014-7-2 :
date -s 月/日/年
1.3系统时间设置为 上午10:20
date -s 10:20
1.4系统时区修改
1.4.1查看系统时区
date -R (+0800 为东八区)
1.4.2修改时区(将上海改为系统时区)
cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #同时适用于Centos7
提示是否要覆盖,输入y 确定
二、centos 7
在Centos 7 中引入了一个叫 timedatectl 的设置设置程序.用法很简单:
timedatectl
2.1将硬件时钟调整为与本地时钟一致, 0 为设置为 UTC 时间
timedatectl set-local-rtc 1
2.2设置系统时区为上海
timedatectl set-timezone Asia/Shanghai
2.3强制将时区写入bios
修改完成后操作
clock -w
时区列表