虛擬機器時間滯後造成的編譯警告

2021-06-26 04:12:53 字數 1147 閱讀 2540

虛擬機器時間滯後造成的編譯警告-vivieu-chinaunix部落格

編譯專案 prj 時得到警告:

make: warning:  

clock skew detected

.  your build may be incomplete.

環境說明:

prj 是windows共享給虛擬機器(ubuntu)的專案目錄。虛擬機器時間比主機時間滯後。

[pz@ubuntu: prj]$ pwd

/mnt/hgfs/share2vm/prj

無效的嘗試 touch:

find . -type f | xargs touch

touch後再使用 ls -l 檢視檔案時間,

新時間戳

和主機一樣

(比虛擬機器早)。

解決:將虛擬機器時間與主機同步。

[pz@ubuntu:prj]$ date

thu oct 10 15:42:56 cst 2013

[pz@ubuntu:prj]$ cd /usr/sbin/

[pz@ubuntu:sbin]$ 

vmware-toolbox-cmd

timesync

status

disabled

[pz@ubuntu:sbin]$ vmware-toolbox-cmd timesync enable

enabled

[pz@ubuntu:sbin]$ date

thu oct 10 16:04:02 cst 2013

[pz@ubuntu:sbin]$ 

問題再現:

將虛擬機器時間設定到「以前」

[pz@ubuntu:prj]$ date

thu oct 10 18:40:14 cst 2013

[pz@ubuntu:prj]$ sudo date -s 18:30:00

[sudo] password for pz: 

thu oct 10 18:30:00 cst 2013

[pz@ubuntu:prj]$ date

thu oct 10 18:30:01 cst 2013

然後執行make就會報錯。

ref:

虛擬機器時間同步 - 

vsphere 文件中心

linux虛擬機器時間同步

在搭建集群環境時,需要各個節點的主機時間是一致的,否則會出現問題,連線時間相應不對。要進行是時間同步。如何進行具體的操作 第一種 a cp usr share zoneinfo asia shanghai etc localtime b ntpdate pool.ntp.org 如上圖所見,可能會出...

同步虛擬機器時間 ntp

安裝ntpdate yum y install ntpdate yum y install ntpq 1,檢視是配置ntp伺服器 ntpq p 2 檢視虛擬機器的閘道器 ip route show 3 同步時間與時間伺服器相同 ntpdate u 時間伺服器ip 定時同步 1 檢視時間是否有誤 然後...

linux虛擬機器時間同步

在搭建集群環境時,需要各個節點的主機時間是一致的,否則會出現問題,連線時間相應不對。要進行是時間同步。如何進行具體的操作 第一種 a cp usr share zoneinfo asia shanghai etc localtime b ntpdate pool.ntp.org 如上圖所見,可能會出...