linux中显示/设置系统时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux中显示/设置系统时间相关的知识,希望对你有一定的参考价值。
date 显示/设置 系统时间
+某个格式 以某种格式显示日期
格式: +%F 2017-08-20 ====== +%Y-%m-%d
+%w 显示周几 0 周日 1-6 周一到周六
+%T 时:分:秒 ====== +%H:%M:%S
-d 按照你的描述显示日期
-d "1day" 1天之后 ==== +1day
-d "-1day" 1天之前
-s修改系统的时间
1.1 修改系统时间的命令
ntpdatepool.ntp.org
ntpdatentp1.aliyun.com
1.2 date的使用
实例1-1
[[email protected] ~]# date -d "-3day"
Thu Jul 27 16:32:09 CST 2017
实例1-2
[[email protected] ~]# date -d "3day"
Wed Aug 216:32:19 CST 2017
实例1-3
[[email protected] ~]# date -d "-3day"+%F
2017-07-27
实例1-4
[[email protected] ~]# date -d"-3year" +%F
2014-07-30
实例1-5
[[email protected] ~]# date -d"-300year" +%F
1717-07-30
[[email protected]~]# ##day
[[email protected]~]# #year month day hour min sec
实例1-6
[[email protected] ~]# date +%T
12:31:54
[[email protected] ~]# date +%H:%M:%s
12:32:1501734744
[[email protected] ~]# date +%H:%M:%S
12:32:28
1.3 ####显示十天之前的日期 格式 :2017-07-30_0 年-月-日_周几
[[email protected] ~]# date +%F_%w -d"-10day"
2017-07-24_1
1.4 设置时间出现的问题
1.4.1 问题1
[[email protected] ~]# ntpdate pool.ntp.org
Exiting, name server cannot be used:Temporary failure in name resolution (-3)
域名解析服务器(DNS)不能使用: 域名解析失败
3 Aug 12:10:02 ntpdate[3345]: name servercannot be used: Temporary failure in name resolution (-3)
1.4.2 解决方法
####1.pingwww.baidu.com
##报错域名-----没办法变化为ip地址
####2.ping 223.5.5.5
##排查是否真的是dns的问题
####3.如果是dns的问题,修改网卡的配置文件加上
DNS1=223.5.5.5
DNS2=223.6.6.6
[[email protected] ~]# cat/etc/sysconfig/network-scripts/ifcfg-eth0
####4.生效
/etc/init.d/network restart
本文出自 “heyong” 博客,请务必保留此出处http://heyong.blog.51cto.com/13121269/1954918
以上是关于linux中显示/设置系统时间的主要内容,如果未能解决你的问题,请参考以下文章