IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類(lèi)|軟件專(zhuān)題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁(yè)操作系統(tǒng)LINUX → Linux操作系統(tǒng)下的時(shí)間設(shè)置方法介紹

Linux操作系統(tǒng)下的時(shí)間設(shè)置方法介紹

時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)

  Linux時(shí)鐘分為系統(tǒng)時(shí)鐘(System Clock)和硬件(Real Time Clock,簡(jiǎn)稱(chēng)RTC)時(shí)鐘。系統(tǒng)時(shí)鐘是指當(dāng)前Linux Kernel中的時(shí)鐘,而硬件時(shí)鐘則是主板上由電池供電的時(shí)鐘,這個(gè)硬件時(shí)鐘可以在BIOS中進(jìn)行設(shè)置。當(dāng)Linux啟動(dòng)時(shí),硬件時(shí)鐘會(huì)去讀取系統(tǒng)時(shí)鐘的 設(shè)置,然后系統(tǒng)時(shí)鐘就會(huì)獨(dú)立于硬件運(yùn)作。

  Linux 中的所有命令(包括函數(shù))都是采用的系統(tǒng)時(shí)鐘設(shè)置。在Linux中,用于時(shí)鐘查看和設(shè)置的命令主要有date、hwclock和clock。其 中,clock和hwclock用法相近,只用一個(gè)就行,只不過(guò)clock命令除了支持x86硬件體系外,還支持Alpha硬件體系。

  1、 date

  查看系統(tǒng)時(shí)間

  # date

  設(shè)置系統(tǒng)時(shí)間

  # date –set "07/07/06 10:19″ (月/日/年時(shí):分:秒)

  2、hwclock/clock

  查看硬件時(shí)間

  # hwclock –show

  或者# clock –show

  設(shè)置硬件時(shí)間

  # hwclock –set –date="07/07/06 10:19″ (月/日/年 時(shí):分:秒)

  或者# clock –set –date="07/07/06 10:19″ (月/日/年 時(shí):分:秒)

  3、硬件時(shí)間和系統(tǒng)時(shí)間的同步

  按 照前面的說(shuō)法,重新啟動(dòng)系統(tǒng),硬件時(shí)間會(huì)讀取系統(tǒng)時(shí)間,實(shí)現(xiàn)同步,但是在不重新啟動(dòng)的時(shí)候,需要用hwclock或clock命令實(shí)現(xiàn)同步。

  硬件時(shí)鐘與系統(tǒng)時(shí)鐘同步:# hwclock –hctosys(hc代表硬件時(shí)間,sys代表系統(tǒng)時(shí)間)或者# clock –hctosys

  系統(tǒng)時(shí)鐘和硬件時(shí)鐘同步:# hwclock –systohc或者# clock –systohc

  4、時(shí)區(qū)的設(shè)置

  # 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) Indonesia 32) Nepal 49) Vietnam16) Iran 33) Oman 50) Yemen17) Iraq 34) Pakistan#? 輸入9,中國(guó)

  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,北京時(shí)間

  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,確認(rèn)

  如果不用tzselect命令,可以修改文件變更時(shí)區(qū)。

  # 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

  重新啟動(dòng)即可。

關(guān)鍵詞標(biāo)簽:Linux,操作系統(tǒng)

相關(guān)閱讀

文章評(píng)論
發(fā)表評(píng)論

熱門(mén)文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 多種操作系統(tǒng)NTP客戶(hù)端配置 多種操作系統(tǒng)NTP客戶(hù)端配置 Linux操作系統(tǒng)修改IP Linux操作系統(tǒng)修改IP

相關(guān)下載

    人氣排行 Linux下獲取CPUID、硬盤(pán)序列號(hào)與MAC地址 dmidecode命令查看內(nèi)存型號(hào) linux tc實(shí)現(xiàn)ip流量限制 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 linux下解壓rar文件 lcx.exe、nc.exe、sc.exe入侵中的使用方法 Ubuntu linux 關(guān)機(jī)、重啟、注銷(xiāo) 命令 查看linux服務(wù)器硬盤(pán)IO讀寫(xiě)負(fù)載