亚洲一级免费看,特黄特色大片免费观看播放器,777毛片,久久久久国产一区二区三区四区,欧美三级一区二区,国产精品一区二区久久久久,人人澡人人草

操作系統(tǒng)

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

時間:2025-03-25 05:31:47 操作系統(tǒng) 我要投稿
  • 相關(guān)推薦

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

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

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

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

  1、date

  查看系統(tǒng)時間

  # date

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

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

  2、hwclock/clock

  查看硬件時間

  # hwclock –show

  或者# clock –show

  設(shè)置硬件時間

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

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

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

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

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

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

  4、時區(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) 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命令,可以修改文件變更時區(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

【Linux系統(tǒng)時間設(shè)置】相關(guān)文章:

Linux系統(tǒng)的文件設(shè)置方法05-24

linux系統(tǒng)設(shè)置tomcat自啟動04-21

Ubuntu Linux系統(tǒng)下設(shè)置Static IP的方法02-09

Linux操作系統(tǒng)下串口設(shè)置及編程05-14

linux系統(tǒng)命令11-23

linux系統(tǒng)命令(經(jīng)典)01-25

linux設(shè)置開機啟動密碼02-20

linux VPS常用安全設(shè)置02-18

Linux系統(tǒng)文件管理04-21