Virtualbox (测试OK):
1. 安装增强功能:
2. 虚拟机系统确保没有开启W32TIME服务, 如有可用命令NET STOP W32TIME关闭
3. 修改虚拟机注册表如下:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VBoxService项下ImagePath值改为system32\VBoxService.exe --disable-timesync
或者在主机运行: VBoxManage setextradata <vmname> "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" "1"
4. 重启Virtualbox虚拟机
VM(未测试):
Virtual PC 2007(未测试):参考地址: http://blog.csdn.net/hemingwang0902/article/details/6138852
1. 查看虚拟机是否安装了 VMware Tools, 如果有安装,则将 VMware Tools 属性窗口的“选项”-->“其他选项”中“虚拟机与宿主机操作系统时间同步(T)”前面的勾去掉,点击确定。
2. 关闭虚拟机(是关机,而非休眠),关闭 VMware Workstation。
3. 查看宿主机中的服务中是否有名称为 “VMware Tools Service” 的服务,如果有,则禁用该服务。
4. 用记事本打开 .vmx 文件,如“F:/My Virtual Machines/Red Hat Enterprise Linux 4/Red Hat Enterprise Linux 4.vmx”
5. 将如下配置项的值改为 FALSE
- tools.syncTime = "FALSE"
- time.synchronize.continue = "FALSE"
- time.synchronize.restore = "FALSE"
- time.synchronize.resume.disk = "FALSE"
- time.synchronize.shrink = "FALSE"
- time.synchronize.tools.startup = "FALSE"
7. 重启VM虚拟机
用记事本打开 .vmc 文件(virtual pc 2007 的配置文件),将 <host_time_sync> 下 <enabled> 的值改为 false,如:
<integration> <microsoft> then add the following codes <components> <host_time_sync> <enabled type="boolean">false</enabled> </host_time_sync> </components> …… ……