時區檔案
centos 和 ubuntu 的時區檔案是 /etc/localtime , 但是在 centos7 以後 localtime 以及變成了乙個鏈結檔案 :
ll /etc/localtime
lrwxrwxrwx.
1 root root 38
mar13
2017
/etc/localtime -
>..
/usr/share/zoneinfo/america/new_york
修改時區
centos6 , ubuntu16 修改方法 :
cp /usr/share/zoneinfo/asia/shanghai /etc/localtime
centos7 , rhel7 , scientific linux 7 , oracle linux 7 :
最好的方法是使用 timedatectl 命令 :
timedatectl set
-timezone asia/shanghai #其他時區以此類推
或者直接手動建立軟鏈結 :
ln -sf /usr/share/zoneinfo/asia/shanghai /etc/localtime
檢視時間
date
wedaug
1510:03
:44cst2018
修改時間
將系統日期設定成 2023年11月3日下午5點55分55秒 :
date -s "11/03/2009 17:55:55"
將系統時間設定成 下午5點55分55秒 :
date -s 17:55
:55
檢視硬體時間 (bios的) :
hwclock -r
將當前時間和日期寫入 bios , 避免重啟後失效 :
hwclock -w
同步時間
yum install ntpdate
ntpdate -u ntp.api.bz
Linux伺服器修改時間和時區和北京時間同步
有時可能伺服器的時區和時間和本地不一致導致一些關於使用了時間時區的 執行出問題,下面來說說關於修改linux伺服器的時間和時區 修改伺服器時間和時區 備份原檔案 sudo mv etc localtime etc localtime.default.20180705 修改時區 sudo cp usr...
centos修改時區,設定時間
在我們使用centos系統的時候,也許時區經常會出現問題,有時候改完之後還是會出錯,下面我們就來學習一種方法來改變這個狀況。如果沒有安裝,而你使用的是 centos系統 那使用命令 yum install ntp 然後 ntpdate us.pool.ntp.org 因為centos系統是用rhas...
Centos 7 修改時區
在 centos 7 中,引入了乙個叫 timedatectl 的設定設定程式.用法很簡單 timedatectl 檢視系統時間方面的各種狀態 local time 四 2014 12 25 10 52 10 cst universal time 四 2014 12 25 02 52 10 utc ...