zoukankan      html  css  js  c++  java
  • ESXi 5.5 解决 cannot edit the settings of virtual machines of version 10

    ESXi 5.5 是VMWare提供的免费虚拟服务器软件, 因为其优秀的性能, 对CPU, 内存和虚拟机数量都解除了限制, 成为很多个人或者小型公司的首选虚拟化工具. 在日常管理时常碰到的一个问题是, 当虚拟机版本升级到vmx-10后, 无法再调用Edit Setting来更改配置. 解决的办法有两种:

    1. 可以参考Youtube上的一则视频 https://www.youtube.com/watch?v=s2O-cvYUEC0 首选你需要安装另一个免费的工具VMware vCenter Converter Standalone Client, 在这里将你的虚拟机转换为版本vmx-8. a. 点击Convert machine, 选择VMWare Infrastructure Virtual Machine, 填写服务器地址, 用户, 口令, 点击Next b. 选择你要转换的虚拟机, 点击Next, 选择目标, 这里因为还要放回服务器上, 所以同样选择VMWare Infrastructure Virtual Machine, 填写用户, 口令, 点击Next c. 填写一个新的虚拟机名称, 点击Next, 关键点来了, 在这里选择Version 8, 点击Next, 看看配置有没有要修改的, 没有就直接Next, 检查下任务说明, 点击Finish d. 等任务完成, 这个复制出的新虚拟机就可以使用Edit Settings了.

    2. Edite the .vmx file Download the .vmx file (using vSphere client), edit the .vmx file, the line

    virtualHW.version = "10"
    

    and changed it to

    virtualHW.version = "8"
    

    Then upload the .vmx file back to the VM folder on your datastore. Remove the VM from the inventory (be careful not to Delete from Disk). Then go to the .vmx file on the datastore, and click it with the wrong mouse button, and chose 'Add to Inventory'. Then, the VM shows up as Version 8, and you can 'edit settings'.

  • 相关阅读:
    改变多行文本字符串的缩进
    多线程
    python基本语法2.5--字符串的相关操作
    python基本语法2.4---汉诺塔的递归
    python基本语法2.3--函数及参数传递
    python基本语法2.2--函数名当作变量传递
    python基本语法2.1--if判断和while,for循环
    AlexNet源码
    python基本语法1.4--初识爬虫
    python基本语法1.5--调用numpy库的性能影响
  • 原文地址:https://www.cnblogs.com/milton/p/4215134.html
Copyright © 2011-2022 走看看