Linux下修改时间时区

系统 Linux
Linux时钟分为系统时钟(System Clock)和硬件(Real Time Clock,简称RTC)时钟。系统时钟是指当前Linux Kernel中的时钟,而硬件时钟则是主板上由电池供电的时钟,这个硬件时钟可以在BIOS中进行设置。当Linux启动时,硬件时钟会去读取系统时钟的 设置,然后系统时钟就会独立于硬件运作。

Linux时钟分为系统时钟(System Clock)和硬件(Real Time Clock,简称RTC)时钟。系统时钟是指当前Linux Kernel中的时钟,而硬件时钟则是主板上由电池供电的时钟,这个硬件时钟可以在BIOS中进行设置。当Linux启动时,硬件时钟会去读取系统时钟的 设置,然后系统时钟就会独立于硬件运作。

Linux中的所有命令 (包括函数)都是采用的系统时钟设置。在Linux中,用于时钟查看和设置的命令主要有date、hwclock和clock。其中,clock和 hwclock用法相近,只不过clock命令除了支持x86硬件体系外,还支持Alpha硬件体系。

1、date

查看系统时间

# date

设置系统时间

# date --set=“07/07/06 10:19" (月/日/年 时:分:秒)

2、hwclock/clock

查看硬件时间

# hwclock --show

# clock --show

设置硬件时间

# hwclock --set --date="07/07/06 10:19" (月/日/年 时:分:秒)

# clock --set --date="07/07/06 10:19" (月/日/年 时:分:秒)

3、硬件时间和系统时间的同步

按照前面的说法,重新启动系统,硬件时间会读取系统时间,实现同步,但是在不重新启动的时候,需要用hwclock或clock命令实现同步。

硬件时钟与系统时钟同步:

# hwclock --hctosys(hc代表硬件时间,sys代表系统时间)

或者

# clock --hctosys

系统时钟和硬件时钟同步:

# hwclock --systohc

或者

# clock --systohc

4、时区的设置

# 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

***sia

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.

#p#

#? 输入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) east China - Beijing, Guangdong, Shanghai, etc.

2) Heilongjiang

3) central China - Gansu, Guizhou, Sichuan, Yunnan, etc.

4) Tibet & most of Xinjiang Uyghur

5) southwest Xinjiang Uyghur

#? 输入1,北京时间

The following information has been given:

China

east China - Beijing, Guangdong, Shanghai, etc.

Therefore TZ='Asia/Shanghai' will be used.

Local time is now: Fri Jul 7 10:32:18 CST 2006.

Universal Time is now: Fri Jul 7 02:32:18 UTC 2006.

Is the above information OK?

1) Yes

2) No

#? 输入1,确认

如果不用tzselect命令,可以修改文件变更时区。

# vi /etc/sysconfig/clock

ZONE=Asia/Shanghai(查/usr/share/zoneinfo下面的文件)

UTC=false

ARC=false

# rm /etc/localtime

# ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

重新启动即可。

【编辑推荐】

  1. 一步到位修改linux系统时间
  2. linux下获取系统时间的方法
  3. Linux下时间延迟以及延缓操作
责任编辑:赵宁宁 来源: chinaitlab
相关推荐

2009-08-07 10:31:24

linux命令行模式linux命令行Linux系统

2009-12-25 17:05:50

Linux操作系统

2020-02-01 16:16:31

UbuntuLinuxWindows

2010-04-06 15:21:02

CentOS系统

2016-12-01 15:43:41

Linuxls命令

2009-08-06 20:14:16

linux命令行模式linux命令行修改系统时间

2023-06-27 08:28:40

MySQLInnoDB

2013-08-21 10:46:02

DatePicker时区

2009-12-08 14:11:03

PHP时区修改

2023-09-06 12:49:31

系统Ubuntu

2024-02-21 21:28:29

Linux系统

2018-05-02 13:40:51

Linux命令touch

2010-06-28 09:09:24

SQL Server

2009-11-11 10:22:15

linux系统时间操作系统

2009-11-17 10:13:03

linux系统时间操作系统

2011-08-16 17:57:51

linux修改分辨率

2009-10-22 09:28:32

Linux时间延迟延缓操作

2010-06-18 13:07:57

SQL Server数

2009-08-16 19:25:12

linux中touchtouch命令参数linux命令行参数

2010-05-20 14:04:11

点赞
收藏

51CTO技术栈公众号