Linux下设置时区方法,实现开机自动设置时区

简介: Linux下设置时区方法,实现开机自动设置时区

平台: RK3399

系统:  ubuntu 18.04 64位 --ARM版本

 

使用tzselect 命令设置时区。

步骤示例:

pi@NanoPC-T4:~$ tzselect 
Please identify a location so that time zone rules can be set correctly.
Please select a continent, ocean, "coord", or "TZ".
 1) Africa
 2) Americas
 3) Antarctica
 4) Asia
 5) Atlantic Ocean
 6) Australia
 7) Europe
 8) Indian Ocean
 9) Pacific Ocean
10) coord - I want to use geographical coordinates.
11) TZ - I want to specify the time zone using the Posix TZ format.
#? 4
Please select a country whose clocks agree with yours.
 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.
Selected time is now: Sun Apr 19 15:13:45 CST 2020.
Universal Time is now:  Sun Apr 19 07:13:45 UTC 2020.
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 /usr/bin/tzselect command in shell scripts:
Asia/Shanghai
pi@NanoPC-T4:~$ date
Sun Apr 19 07:14:09 UTC 2020
pi@NanoPC-T4:~$ 
pi@NanoPC-T4:~$ echo $TZ
pi@NanoPC-T4:~$ gedit /home/pi/.profile 
pi@NanoPC-T4:~$ 
pi@NanoPC-T4:~$ 
pi@NanoPC-T4:~$ reboot 

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

目录
相关文章
|
3月前
|
Ubuntu 物联网 Linux
从零安装一个Linux操作系统几种方法,以Ubuntu18.04为例
一切就绪后,我们就可以安装操作系统了。当系统通过优盘引导起来之后,我们就可以看到跟虚拟机中一样的安装向导了。之后,大家按照虚拟机中的顺序安装即可。 好了,今天主要介绍了Ubuntu Server版操作系统的安装过程,关于如何使用该操作系统,及操作系统更深层的原理,还请关注本号及相关圈子。
|
3月前
|
缓存 监控 Linux
Linux系统清理缓存(buff/cache)的有效方法。
总结而言,在大多数情形下你不必担心Linux中buffer与cache占用过多内存在影响到其他程序运行;因为当程序请求更多内存在没有足够可用资源时,Linux会自行调整其占有量。只有当你明确知道当前环境与需求并希望立即回收这部分资源给即将运行重负载任务之前才考虑上述方法去主动干预。
1569 10
|
3月前
|
Ubuntu Linux 图形学
推广与体验Ubuntu Linux的便捷方法
如果你的朋友或家人对尝试Linux感兴趣,但希望在安装之前先体验一下,你可以分享以下链接给他们:Ubuntu在线导览。通过这个链接,他们可以在任何地方轻松体验Ubuntu,无需安装即可深入了解这个流行的操作系统。
|
3月前
|
XML 缓存 Linux
在Linux环境下解决Visual Studio Code字体显示异常和字体替换方法。
解决Linux下VS Code字体显示异常,需要对Linux字体渲染机制有所理解,并对VS Code的配置选项进行合理设置。替换字体时则要通过系统字体配置或VS Code设置来完成。通过上述方法,可以有效地解决字体显示问题,从而提升代码编辑的视觉体验。
489 0
|
6月前
|
NoSQL Linux 编译器
GDB符号表概念和在Linux下获取符号表的方法
通过掌握这些关于GDB符号表的知识,你可以更好地管理和理解你的程序,希望这些知识可以帮助你更有效地进行调试工作。
309 16
|
4月前
|
网络协议 Ubuntu Linux
Wireguard in Linux的安装方法
本文介绍了如何在Ubuntu和Rocky Linux中安装配置WireGuard,并探讨了配置过程中可能出现的DNS泄露问题及解决方法,包括通过nmtui设置DNS及调整DNS优先级参数。
|
Linux Windows
linux实现开机自启动脚本
linux实现开机自启动脚本
277 0
|
Linux
linux开机自启动脚本 ,非login
linux开机自启动脚本 ,非login
337 0
linux开机自启动脚本 ,非login
|
关系型数据库 Linux Apache
Linux开机自启动脚本
Linux开机自启动脚本将需要开机自启动的脚本命令写在文件/etc/rc.d/rc.local中即可。 比如需要开机自启动MySql和Apache,则在/etc/rc.d/rc.local文件尾部加入两行命令: systemctl start mysqldsystemctl start httpd 作者:成宇佳博客主页:http://www.
1115 0