上海龙凤419

操纵体系

Linux体系时辰设置

时辰:2024-07-04 06:20:31 操纵体系 我要投稿
  • 相干保举

Linux体系时辰设置

  Linux时钟分为体系时钟(System Clock)和硬件(Real Time Clock,简称RTC)时钟。体系时钟是指以后Linux Kernel中的时钟,而硬件时钟则是主板上由电池供电的时钟,这个硬件时钟能够在BIOS中停止设置。当Linux启动时,硬件时钟会去读取体系时钟的设置,而后体系时钟就会自力于硬件运作。

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 5) Asia 6) Atlantic Ocean 7) Australia Europe 9) Indian Ocean10) Pacific Ocean11) 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 Cambodia 25) Kyrgyzstan 42) Syria 9) China 26) Laos 43) Taiwan10) Cyprus 27) Lebanon 44) Tajikistan11) East Timor 28) Macau 45) Thailand12) Georgia 29) Malaysia 46) Turkmenistan13) Hong Kong 30) Mongolia 47) United Arab Emirates14) India 31) Myanmar (Burma) 48) Uzbekistan15) Indone

  sia 32) Nepal 49) Vietnam16) Iran 33) Oman 50) Yemen17) Iraq 34) Pakistan#? 输出9,中国

  Please select one of the following time zone regions.1) east China – Beijing, Guangdong, Shanghai, etc.2) Heilongjiang3) central China – Gansu, Guizhou, Sichuan, Yunnan, etc.4) Tibet & most of Xinjiang Uyghur5) 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) Yes2) 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

【Linux体系时辰设置】相干文章:

Linux体系的文件设置方式11-23

linux体系设置tomcat自启动03-08

Ubuntu Linux体系下设置Static IP的方式03-08

linux体系号令11-23

linux体系号令(典范)01-25

linux设置开机启动暗码02-24

linux的文件体系03-07

LINUX操纵体系01-22

Linux体系的网速操纵03-08