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'.

  • 相关阅读:
    源码学习-出差有感
    《java数据结构与算法》系列之“快速排序"
    新征途
    命运总是喜欢开玩笑
    《java数据结构与算法》系列之“简单排序"-冒泡,选择,插入
    秒杀9种排序算法(JavaScript版)
    《进击的巨人》
    Noip2001 提高组 T3
    Noip2011 提高组 Day1 T1 铺地毯 + Day2 T1 计算系数
    Noip2012 提高组 Day1 T1 Vigenère 密码
  • 原文地址:https://www.cnblogs.com/milton/p/4215134.html
Copyright © 2011-2022 走看看