openSuSE中xen内核的UTC时钟问题及解决方案
2010年02月24日 星期三 10时40分58秒 在openSuSE11.2中使用1en虚拟机,发现使用xen内核启动时,时钟总是慢8小时。在YaST中钩选使用UTC、在/etc/init.d/boot.local中添加date --set "$(date --utc +%Y-%m-%d %H:%M:%S.%N)",各种尝试均解决不了问题。 最后在/etc/init.d/boot.c
·
2010年02月24日 星期三 10时40分58秒
在openSuSE11.2中使用1en虚拟机,发现使用xen内核启动时,时钟总是慢8小时。在YaST中钩选使用UTC、在/etc/init.d/boot.local中添加date --set "$(date --utc +'%Y-%m-%d %H:%M:%S.%N')",各种尝试均解决不了问题。
最后在/etc/init.d/boot.clock中发现“test -e /proc/sys/xen/independent_wallclock && USE_HWCLOCK=no”,将其改为“test -e /proc/sys/xen/independent_wallclock && USE_HWCLOCK=yes”,问题解决!
openSuSE11.3的位置如下:
if test -r /proc/xen/capabilities ; then
read -t1 caps < /proc/xen/capabilities
test "$caps" = "${caps%control_d*}" && USE_HWCLOCK=yes
更多推荐
已为社区贡献9条内容
所有评论(0)