在虛擬機器中同步網路時間

2021-10-07 15:35:50 字數 2318 閱讀 4633

在是用虛擬機器的時候,往往時間對不上,這就使強迫症不得安心學習了,解決方法如下:

作為中國的一員,在安裝虛擬機器的時候,可以設定上海時間作為參考:

1.把上海時間檔案cp到etc檔案下的localtime檔案裡。

[root@localhost ~]# cp /usr/share/zoneinfo/asia/shanghai /etc/localtime

cp:是否覆蓋"/etc/localtime"? y

2.同步時間需要用到ntpdate服務,虛擬機器沒有的就簡單安裝一下:

[root@localhost ~]# yum install -y ntpdate

已載入外掛程式:fastestmirror, refresh-packagekit, security

設定安裝程序

loading mirror speeds from cached hostfile

* base: mirror.bit.edu.cn

* extras: mirror.bit.edu.cn

* updates: mirrors.163.com

包 ntpdate-4.2.6p5-15.el6.centos.x86_64 已安裝並且是最新版本

無須任何處理

[root@localhost ~]# ntpdate time.nist.gov

7 sep 19:00:17 ntpdate[3064]: no server suitable for synchronization found

如果出現報錯,嘗試啟動一下ntpdate服務:

[root@localhost ~]# service ntpdate start

ntpdate: 與時間伺服器同步:                                [確定]

8.ntpdate服務啟動後,輸入命令date,發現時間已經同步:

[root@localhost ~]# date

2023年 09月 07日 星期六 11:06:55 cst

9.如果想看同步過程,可以安裝ntp-perl服務:

[root@localhost ~]# yum install -y ntp-perl(檢視同步過程)

已載入外掛程式:fastestmirror, refresh-packagekit, security

設定安裝程序

loading mirror speeds from cached hostfile

* base: mirror.bit.edu.cn

* extras: mirror.bit.edu.cn                                            

完畢![root@localhost ~]# ntptrace

/usr/sbin/ntpq: read: connection refused

10.最後一步,把系統時間同步到硬體,防止系統重啟後時間恢復:

[root@localhost ~]# hwclock -w

[root@localhost ~]# hwclock

2023年09月07日 星期六 11時08分01秒  -0.250896 seconds

[root@localhost ~]#

11.重啟虛擬機器,執行date命令:

[e:\~]$

connecting to 10.0.0.11:22...

connection established.

to escape to local shell, press 'ctrl+alt+]'.

last login: sat sep  7 11:12:03 2019 from 10.0.0.1

****************************************===

welcome to hsp's system,please not use rm command.

大膽折騰,百味才是人生!

2019-09-07 11:12:35 星期六

****************************************===

[root@localhost ~]# ntpdate time.nist.gov

7 sep 11:21:01 ntpdate[2694]: no server suitable for synchronization found

[root@localhost ~]# date

2023年 09月 07日 星期六 11:21:04 cst

[root@localhost ~]#

在是用虛擬機器的時候,往往時間對不上,這就使強迫症不得安心學習了,解決方法如下:

在虛擬機器Centos系統中同步網路時間

虛擬機器裡裝了個centos系統,但是系統時間和實際嚴重不符,可能關機後bios時鐘不走的緣故。幸好虛擬機器也可以聯網,可以使用ntp服務同步網路時鐘。切換到root使用者下,安裝ntpdate yum install y ntpdate 執行 ntpdate time.nist.gov 一直報 n...

在虛擬機器Centos系統中同步網路時間

虛擬機器裡裝了個centos系統,但是系統時間和實際嚴重不符,可能關機後bios時鐘不走的緣故。幸好虛擬機器也可以聯網,可以使用ntp服務同步網路時鐘。切換到root使用者下,安裝ntpdate yum install y ntpdate 執行 ntpdate time.nist.gov 一直報no...

VM虛擬機器系統時間同步網路時間 Centos

本地虛擬機器上centos系統的時間與北京時間不一致,如下命令可以直接更改 shell ntpdate u ntp.api.bz shell clock w 執行完上面兩步即可,命令列執行date檢視當前系統時間,顯示正確。注意 如果沒有ntpdate命令,直接安裝 yum y install nt...