LINUX时间格式查看时区操作
修改时区参考:Linux 修改时区
1.date --查看当前时间:2022年 04月 17日 星期日 15:42:00 CST
2.date +%Y --显示当前年份:2022
3.date +%m --显示当前月份:04
4.date +%d --显示当前是哪一天:17
5.date +%Y%m%d --显示当前年月日:20220417
6.date "+%Y-%m-%d %H:%M:%S" --显示当前年月日 时分秒 (注意双引号)
7.date -d '1 days ago' --显示当前日期的前一天(-1为后一天),-d为查看指定时间
8.date -s "2022-08-15 15:45:25" --设置时间为2022年8月15日15时45分25秒 -s 设置当前时间
9.cal --查看当前日历 cal 2017 --查看2017年的日历
————————————————
原文链接:https://blog.csdn.net/weixin_48665560/article/details/124230873
时区操作
查看当前 linux 使时间 date -R
[ec2-user@ip-172-31-6-9 ~]$ date -R
Thu, 09 Feb 2023 09:17:09 +0000
查看时区用 tzselect
[root@localhost vagrant]# tzselect Please identify a location so that time zone rules can be set correctly. Please select a continent or ocean. 1) Africa 2) Americas 3) Antarctica 4) Arctic Ocean 5) Asia 6) Atlantic Ocean 7) Australia 8) Europe 9) Indian Ocean 10) Pacific Ocean 11) none - I want to specify the time zone using the Posix TZ format. #? 5 Please select a country. 1) Afghanistan 18) Israel 35) Palestine 2) Armenia 19) Japan 36) Philippines 3) Azerbaijan 20) Jordan 37) Qatar 4) Bahrain 21) Kazakhstan 38) Russia 5) Bangladesh 22) Korea (North) 39) Saudi Arabia 6) Bhutan 23) Korea (South) 40) Singapore 7) Brunei 24) Kuwait 41) Sri Lanka 8) Cambodia 25) Kyrgyzstan 42) Syria 9) China 26) Laos 43) Taiwan 10) Cyprus 27) Lebanon 44) Tajikistan 11) East Timor 28) Macau 45) Thailand 12) Georgia 29) Malaysia 46) Turkmenistan 13) Hong Kong 30) Mongolia 47) United Arab Emirates 14) India 31) Myanmar (Burma) 48) Uzbekistan 15) Indonesia 32) Nepal 49) Vietnam 16) Iran 33) Oman 50) Yemen 17) Iraq 34) Pakistan #? 9 Please select one of the following time zone regions. 1) Beijing Time 2) Xinjiang Time #? 1 The following information has been given: China Beijing Time Therefore TZ='Asia/Shanghai' will be used. Local time is now: Thu Jul 11 13:33:27 CST 2019. Universal Time is now: Thu Jul 11 05:33:27 UTC 2019. Is the above information OK? 1) Yes 2) No #? 1 You can make this change permanent for yourself by appending the line TZ='Asia/Shanghai'; export TZ to the file '.profile' in your home directory; then log out and log in again. Here is that TZ value again, this time on standard output so that you can use the /bin/tzselect command in shell scripts: Asia/Shanghai
修改时区,更改后需要重新启动linux系统
timedatectl set-timezone 'Asia/Tokyo'
系统时间校准 参考 https://www.cnblogs.com/jmbt/p/16638041.html
方法1
Debian系统安装NTP校时包:
apt-get install ntpdate
CentOS系统安装NTP校时包:yum install ntp
校时命令:ntpdate cn.pool.ntp.org
如果想每隔一定时间自动校时,只需将上面的命令加入至Cron就行了:00 12 * /sbin/ntpdate cn.pool.ntp.org
* cn.pool.ntp.org是ntp网络授时组织的中国授时源
方法2
快速校对linux服务器时间至北京时间
服务器采用ntp更新时间,经常牵扯到UTC是否开启的问题,开启了时间就会快8个小时
前段时间朋友给我了下面的命令,一条命令解决之前的所有问题。
rdate -t 60 -s stdtime.gov.hk
使用rdate将stdtime.gov.hk服务器的时间抓取回来,然后写入硬件
hwclock -w
下面是rdate的命令使用方法介绍
功能说明:显示其他主机的日期与时间。
语 法:rdate [-ps][主机名称或IP地址...]
补充说明:执行rdate指令,向其他主机询问系统时间并显示出来。
参 数:
-p 显示远端主机的日期与时间。
-s 把从远端主机收到的日期和时间,回存到本地主机的系统时间。系统时间校准
sudo yum install -y ntpdate
sudo ntpdate ntp.api.bz
修改时区(不需要重启)
通过软链接修改时区
打开终端。
运行命令cd /etc进入/etc目录。
运行命令sudo ln -sf /usr/share/zoneinfo/<时区> localtime,将<时区>替换为你要设置的时区,例如Asia/Shanghai。
输入用户密码确认修改。
通过运行命令date或者timedatectl可以验证时区是否已成功修改。
时区