zoukankan      html  css  js  c++  java
  • Virtual PC 2007禁止与主机系统时间同步

    1、关闭正在运行的虚拟机系统(注意,需要从系统中关机,而不是保存状态)。
    2、找到虚拟机的.vmc文件,并用记事本打开它。
    3、定位到以下内容:

        <integration>
            <microsoft>
                <mouse>
                    <allow type="boolean">true</allow>
                </mouse>
                ...这里有其它内容...
            </microsoft>
        </integration>

    4、把上面的内容改成:

        <integration>
            <microsoft>
                <mouse>
                    <allow type="boolean">true</allow>
                </mouse>
                <components>
                    <host_time_sync>
                        <enabled type="boolean">false</enabled>
                    </host_time_sync>
                </components>
                ...这里有其它内容...
            </microsoft>
        </integration>

    5、保存修改过的.vmc文件。
    6、启动虚拟机,系统时间就不会与主机的系统时间同步了。
  • 相关阅读:
    opencv-活体检测
    人脸识别
    Opencv-python基本操作
    白话深度学习与Tensorflow(二)
    Linux系统入门(一)-未完成
    编程题29 题目:求对角线元素之和
    编程题28 题目 排序
    编程题27 题目:求100之内的素数
    编程题 18兵乓球比赛
    编程题21 求阶数总和
  • 原文地址:https://www.cnblogs.com/qiuyi21/p/1415298.html
Copyright © 2011-2022 走看看