How to keep a VMWare VM's clock in sync?

后端 未结 11 1193
無奈伤痛
無奈伤痛 2020-12-13 02:05

I have noticed that our VMWare VMs often have the incorrect time on them. No matter how many times I reset the time they keep on desyncing.

Has anyone else noticed t

11条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-13 02:53

    If your host time is correct, you can set the following .vmx configuration file option to enable periodic synchronization:

    tools.syncTime = true
    

    By default, this synchronizes the time every minute. To change the periodic rate, set the following option to the desired synch time in seconds:

    tools.syncTime.period = 60
    

    For this to work you need to have VMWare tools installed in your guest OS.

    See http://www.vmware.com/pdf/vmware_timekeeping.pdf for more information

提交回复
热议问题