您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“ubuntu系統(tǒng)怎么修改時(shí)區(qū)和時(shí)間”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“ubuntu系統(tǒng)怎么修改時(shí)區(qū)和時(shí)間”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。
在linux計(jì)算機(jī)上,有兩個(gè)時(shí)間,一個(gè)是硬件時(shí)間(bios中記錄的時(shí)間,稱為hwclock),另一個(gè)是操作系統(tǒng)時(shí)間(osclock)。硬件時(shí)鐘由bios電池供電,
當(dāng)計(jì)算機(jī)關(guān)機(jī)后,會(huì)繼續(xù)運(yùn)行,bios電池一般可使用幾年,如果沒電了,那bios中的數(shù)據(jù)會(huì)恢復(fù)出廠設(shè)置。
硬件時(shí)間與操作系統(tǒng)時(shí)間的交互流程
1、開機(jī)時(shí),操作系統(tǒng)從bios中讀取硬件時(shí)間+時(shí)區(qū),然后根據(jù)osclock的時(shí)區(qū),轉(zhuǎn)換為對(duì)應(yīng)的時(shí)間。然后操作系統(tǒng)時(shí)間與硬件時(shí)間就獨(dú)立運(yùn)行,相互不影響,我們
通過應(yīng)用程序獲取的時(shí)間用的都是操作系統(tǒng)時(shí)間。這一步是開機(jī)時(shí)os自動(dòng)完成的。
2、主機(jī)運(yùn)行過程中,通過ntp保證osclock與國際原子時(shí)同步,再將osclock同步到hwclock。這一步需要自己配置實(shí)現(xiàn)
3、關(guān)機(jī)時(shí),osclock寫入hwclock。這一步是關(guān)機(jī)時(shí)os自動(dòng)完成的。不過我們要考慮異常關(guān)機(jī)的情況,當(dāng)異常關(guān)機(jī)時(shí),osclock可能沒有寫入hwclock,這就是為什
么在第2步中將osclock定時(shí)刷入hwclock的原因。如果不定時(shí)刷入,那osclock與hwclock差距比較大時(shí),若異常關(guān)機(jī),osclock就丟掉了,再開機(jī)時(shí),osclock就是
錯(cuò)誤的,在第一個(gè)ntp同步到來時(shí),osclock就一直是錯(cuò)誤的。而且如果使用的是ntpd,ntpd是漸進(jìn)調(diào)整,要經(jīng)過多個(gè)ntp同步周期后才會(huì)將osclock調(diào)整為國際原子
時(shí),另外,如果osclock與ntp server的時(shí)間差超過1000秒,那ntp server就不會(huì)更新osclock了。
ubuntu修改時(shí)區(qū)和時(shí)間的方法
1.首先查看時(shí)區(qū):
codetc@webubuntu:~$ date -r tue, 17 dec 2013 18:23:01 +0800
如果要修改時(shí)區(qū),執(zhí)行sudo tzselect
2.選擇區(qū)域:亞洲
codetc@webubuntu:~$ sudo tzselect [sudo] password for codetc: 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 8) europe 9) indian ocean 10) pacific ocean 11) none - i want to specify the time zone using the posix tz format. #? 5
3.選擇國家:中國
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
4.選擇時(shí)區(qū):北京時(shí)間
please select one of the following time zone regions. 1) east china - beijing, guangdong, shanghai, etc. 2) heilongjiang (except mohe), jilin 3) central china - sichuan, yunnan, guangxi, shaanxi, guizhou, etc. 4) most of tibet & xinjiang 5) west tibet & xinjiang #? 1
5.確認(rèn)驗(yàn)證:
the following information has been given: china east china - beijing, guangdong, shanghai, etc. therefore tz='asia/shanghai' will be used. local time is now: tue dec 17 18:22:10 cst 2013. universal time is now: tue dec 17 10:22:10 utc 2013. 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
6.復(fù)制文件到/etc目錄下
sudo cp /usr/share/zoneinfo/asia/shanghai /etc/localtime
7.更新時(shí)間
sudo ntpdate time.windows.com
8.修改時(shí)間以后,修改硬件cmos的時(shí)間
sudo hwclock --systohc
讀到這里,這篇“ubuntu系統(tǒng)怎么修改時(shí)區(qū)和時(shí)間”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。