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
文章来源:https://www.toymoban.com/news/detail-511438.html
时区列表文章来源地址https://www.toymoban.com/news/detail-511438.html
到了这里,关于centos 系统下查看时间时区以及修改的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!