Translate

Total Pageviews

My YouTube Channel

Tuesday 14 August 2012

Disabling Time Synchronization

Details

In the VMware Tools control panel, the time synchronization checkbox is unselected, but you may experience these symptoms:
  • When you suspend a virtual machine, the next time you resume that virtual machine it synchronizes the time to adjust it to the host.
  • Time is resynchronized when you migrate the virtual machine using vMotion, take a snapshot, restore to a snapshot, shrink the virtual disk, or restart the tools service in the virtual machine (including rebooting the virtual machine).

Solution

The time synchronization checkbox controls only whether time is periodically resynchronized while the virtual machine is running. Even if this box is unselected, VMware Tools by default synchronizes the virtual machine's time after a few specific events that are likely to leave the time incorrect.

There are two methods to completely disable time synchronization in the guest. Perform one of these procedures:
Note: Unlike the normal periodic time sync, which can move the guest clock only forward, these special time syncs can move the guest clock either forward or backward. If you want your guests to never sync backward in time then please disable the options (by selecting "0" for each option).
  • Open the virtual machine's configuration file (.vmx) in a text editor and set these options to zero. If the entries do not exist, add them.

    Note: 0 = disabled, 1 = enabled.

    tools.syncTime = "0"
    time.synchronize.continue = "0"
    time.synchronize.restore = "0"
    time.synchronize.resume.disk = "0"
    time.synchronize.shrink = "0"
    time.synchronize.tools.startup = "0"
    time.synchronize.tools.enable = "0"
    time.synchronize.resume.host = "0"
  • Select the virtual machine in the VMware Infrastructure Client inventory. On the Summary tab, click Edit Settings, then click the Options tab and select General (under Advanced). Click Configuration Parameters, then click Add Row and add this information:

    tools.syncTime = "0"
    time.synchronize.continue = "0"
    time.synchronize.restore = "0"
    time.synchronize.resume.disk = "0"
    time.synchronize.shrink = "0"
    time.synchronize.tools.startup = "0"
    time.synchronize.tools.enable = "0"
    time.synchronize.resume.host = "0"
Notes:
  • For GSX and VMware Workstation, you need to use "FALSE" instead of "0". For example:

    tools.syncTime = "FALSE"

Source of this Info:-
http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1189

No comments:

Post a Comment