Kvm Windows时间异常问题
约 72 字
预计阅读 1 分钟
次阅读
KVM xml配置
1
2
3
4
5
6
7
8
9
|
<clock offset='localtime'>
<timer name='rtc' tickpolicy='catchup' track='guest'/>
<timer name='pit' tickpolicy='delay'/>
<timer name='hpet' present='no'/>
</clock>
or
<clock offset='timezone' timezone='Asia/Shanghai'/>
|
Windows服务器配置
1
2
3
|
bcdedit /set USEPLATFORMCLOCK on #设置
bcdedit /enum #查看是否生效
bcdedit / deletevalue useplatformclock #取消配置
|