Linux 時間同步
具體的博文可以參考:http://blog.chinaunix.net/uid-20672257-id-3013282.html
調整linux系統時間和時區與Internet時間同步
一、修改時區:
# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
修改為中國的東八區
# vi /etc/sysconfig/clock
ZONE="Asia/Shanghai"
UTC=false
ARC=false
# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
修改為中國的東八區
# vi /etc/sysconfig/clock
ZONE="Asia/Shanghai"
UTC=false
ARC=false
二、配置新的時間
日期設定:
# date -s 2008/05/06
日期設定:
# date -s 2008/05/06
時間設定:
# date -s 18:40:00
# date -s 18:40:00
檢視硬體時間(BIOS的):
hwclock [-rw]
-r:檢視現有BIOS時間,預設為-r引數
-w:將現在的linux系統時間寫入BIOS中
hwclock [-rw]
-r:檢視現有BIOS時間,預設為-r引數
-w:將現在的linux系統時間寫入BIOS中
當我們進行完 Linux 時間的校時後,還需要以 hwclock -w 來更新 BIOS 的時間,因為每次開機的時候,系統會重新由 BIOS 將時間讀出來,所以, BIOS 才是重要的時間依據。
# hwclock
Tue 06 May 2008 03:49:37 PM CST -0.039646 seconds
# hwclock
Tue 06 May 2008 03:49:37 PM CST -0.039646 seconds
同步BIOS時鐘,強制把系統時間寫入CMOS:
# clock -w
# clock -w
三、實現Internet時間同步(這裡可以忽略上面兩步)
方法1. 開機的時候自動網路校時:
vi /etc/rc.d/rc.local
/usr/sbin/ntpdate -u 192.168.0.2 192.168.0.3 192.168.0.4; /sbin/hwclock -w
方法1. 開機的時候自動網路校時:
vi /etc/rc.d/rc.local
/usr/sbin/ntpdate -u 192.168.0.2 192.168.0.3 192.168.0.4; /sbin/hwclock -w
方法2. 設定計劃任務
crontab格式如下:
# For details see man 4 crontabs
crontab格式如下:
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * command to be executed
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * command to be executed
設定crontab計劃任務也有兩種方式:
1、寫在/etc/crontab裡
程式碼:
00 11 * * * root ntpdate 210.72.145.44
每天11點與中國國家授時中心同步時間
每天11點與中國國家授時中心同步時間
當然前提是
apt-get install ntpdate
程式碼:
00 11 * * * root ntpdate 210.72.145.44
每天11點與中國國家授時中心同步時間
每天11點與中國國家授時中心同步時間
當然前提是
apt-get install ntpdate
程式碼也可是
00 11 * * * root ntpdate us.pool.ntp.org
2、使用命令crontab -e
crontab -e
10 5 * * * root ntpdate us.pool.ntp.org;hwclock -w
這樣每天5:10自動進行網路校時,並同時更新BIOS的時間
00 11 * * * root ntpdate us.pool.ntp.org
2、使用命令crontab -e
crontab -e
10 5 * * * root ntpdate us.pool.ntp.org;hwclock -w
這樣每天5:10自動進行網路校時,並同時更新BIOS的時間
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16674653/viewspace-1970962/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux同步時間Linux
- Linux時間同步Linux
- Linux 時間同步Linux
- Linux ntpdate同步時間Linux
- Linux 時間同步配置Linux
- linux ntp時間同步Linux
- 時間同步(Arch Linux)Linux
- Linux下時間同步 ---夏令時Linux
- Linux下時間同步 --- 夏令時Linux
- Linux 網路時間同步Linux
- LINUX 時間操作及其同步Linux
- linux同步系統時間Linux
- Linux 時間同步指令碼Linux指令碼
- Linux使用ntp時間伺服器同步時間Linux伺服器
- Linux系統時間同步方法。Linux
- Linux時區設定及NTP時間同步Linux
- linux系統時間修改及同步Linux
- 兩臺linux機器時間同步Linux
- LINUX 解決時間同步問題(NTP)Linux
- Linux的時間設定與同步(NTP)Linux
- Linux 自動同步伺服器時間Linux伺服器
- Linux:設定時間與同步的方法Linux
- Linux時間修改及CMOS時間修改同步的4種方法Linux
- 同步vmware時間
- chrony時間同步
- centos:時間同步CentOS
- NTP時間同步
- ntpd 時間同步
- 時間同步 - rdate
- Centos 時間同步CentOS
- chrony 時間同步
- Linux系統時間同步方法小結(NTP)Linux
- linux mint 19 與windows時間不同步LinuxWindows
- 關於Linux下ntp 時間同步錯誤Linux
- 叢集時間同步
- NTP配置時間同步
- 同步vmware時間(ZT)
- NTP時間同步 For AIXAI