2010年11月22日 星期一

Clock skew detected. 問題

------------------------------------------------------------------
make: warning: Clock skew detected. Your build may be incomplete.
------------------------------------------------------------------

出現Clock skew detected.的問題, 主要是日期時間錯誤所導致, 只要修改時間重新編譯就行了
-----------------------------------------------------------------
[root@server aaaa]# date
Sat May 3 08:04:03 CST 2008
[root@server aaaa]# date -s 5/3/2008
Sat May 3 08:04:03 CST 2008
[root@server aaaa]# date -s 09:01:00
Sat May 3 09:01:00 CST 2008
[root@server aaaa]# date
Sat May 3 09:01:01CST 2008
[root@server aaaa]# clock -w
[root@server aaaa]# date
Sat May 3 09:01:02ST 2008
------------------------------------------------------------------