日常有时想知道vmware tools是否进行了时间同步等vmware tools日志,默认是没有,需要配置开启,方法如下:

1/找到tools.conf配置文件,不同系统下目录不同,如windows2003 在C:\Documents and Settings\All Users\Application Data\VMware\VMware Tools\tools.conf下。

2/添加如下内容到配置文件中:

[logging]

log = true


# Enable VMware Tools service logging to a file.

vmtoolsd.level = debug

vmtoolsd.handler = file

vmtoolsd.data = c:/tmp/vmtoold.log


# Enable "vmsvc" service logging to a file.

vmsvc.level = debug

vmsvc.handler = file

vmsvc.data = c:/tmp/vmsvc.log


# Enable new "vmusr" service logging to a file.

vmusr.level = debug

vmusr.handler = file

vmusr.data = c:/tmp/vmusr.${USER}.log


# Enable the "vmvss" snapshot service logging to a file.

vmvss.level = debug

vmvss.handler = file

vmvss.data = c:/tmp/vmvss.log

3/在c盘建立tmp目录,重启vmtools服务。

4/日志文件出现。如需查看时间同步日志,检查vmsvc.log 中synsyc time每隔1分钟同步一次。

5/详情参考vmware知识库地址:http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1007873