我在Windows 10上运行VM Machine(VMware工作站12播放器)。我需要在VM上设置过去的日期。 我已按照以下链接中提到的程序进行操作。
VMWare how to prevent a virtual machine from updating its date and time http://www.woodwardweb.com/technology/freezing_time_i.html
虚拟机已关闭,配置文件使用“记事本”修改了以下语句。
render () {
const { navigate } = this.props.navigation;
const { region } = this.props;
return (
<View style ={styles.container}>
<MapView
style={styles.map}
region={{
latitude: 55.0598,
longitude: 10.6068,
latitudeDelta: 0.40,
longitudeDelta: 0.40,
}}
>
{this.state.coordsArray.map((coords, index) =>
<MapView.Polyline
index={index}
coordinates={coords}
strokeWidth={2}
strokeColor="red"/>
}
</MapView>
</View>
)
}
对文件进行修改后,当我启动VM时,它说.vmx已损坏。我必须再次从.log文件创建.vmx。
如何编辑.vmx文件而不会破坏或我遗漏任何东西。
如上所述,我的HOST是Windows 10,GUEST是VMware Workstation 12 Player。
谢谢&amp;此致