VMware 时间同步问题 - Windows 7(主机)上的 ubuntu(来宾)
我在 Windows 7 机器上使用 VMware Player 将 Ubuntu 作为来宾操作系统运行。我遇到的问题是同步 Ubuntu 机器中的时钟。仅当我关闭 VMware 播放器并打开暂停的会话时才会发生这种情况。例如,如果我在下午 4:15 关闭运行 Ubuntu 的 VMware 播放器,然后在下午 5:45 恢复它,它仍然显示 4:15 PM。 (当我关闭 Ubuntu 操作系统时,不会发生这种情况。)
我搜索了 StackOverflow论坛,发现通过设置
tools.syncTime = true
tools.syncTime.period = 60
应该有助于解决问题。但这种改变对我来说不起作用。任何解决此问题的指示都会有所帮助。
I am running Ubuntu as a guest OS using VMware player on my Windows 7 machine. The problem I have is syncing the clock in the Ubuntu machine. This happens only when I close the VMware player and open the suspended session. For example if I close my VMware player running Ubuntu at 4:15 PM and then restore it at 5:45 PM, it still shows 4:15 PM. (This does not happen when I shutdown the Ubuntu OS.)
I searched the StackOverflow forum and found that by setting
tools.syncTime = true
tools.syncTime.period = 60
should help resolve the problem. But this change did not work for me. Any pointers to resolve this issue would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有同样的时钟同步问题。安装VMware工具即可解决该问题。
但如果这没有帮助,您可以在每次打开挂起的会话时调用
sudo ntpdate ntp.ubuntu.com
来手动执行此操作。I had the same clock sync issue. Installing VMware tools solves the problem.
But if it doesn't help, you can do it manually by calling
sudo ntpdate ntp.ubuntu.com
every time you open the suspended session.