VMware Communities
bharathn73
Contributor
Contributor

VMWorkstation 12, guest time sunc with Host changes time by a min twice a day or once a day

i am using VMWare Workstation 12 Pro 12.1.1 Build - 3770994. Host server time synched with Internet time server  (Time.windows.com), Guest VM time synched with host. Problem is that the guest VM time changes by about 1 min twice a day or once a day or sometime in few day

0 Kudos
2 Replies
batuhandemirdal
Enthusiast
Enthusiast

Hi,

Would you check your windows updates?

0 Kudos
montaneroo
Contributor
Contributor

I have a similar problem with my VMware workstation 14: I noticed every now and then the clock will be wrong by about 1min, but be back a very short time afterwards.

Turns out that this happens EVERY 60 SECONDS, but only lasts for a VERY short time

The following shell script will alert for time running backwards, in my setup I can see that about every minute

#!/bin/bash

LAST=$(date +%s)

while true ; do

    NEW=$(date +%s)

    if [[ $NEW < $LAST ]] ; then

        echo "TIMEWARP $(date)"

    fi

    LAST=$NEW

    sleep 0.001

done

0 Kudos