0

实际上,我正在从事管理和系统项目。我正在使用 ESXI、虚拟盒和 OVH。最后,我遇到了一个错误,它阻止了我并且没有让我完成我的配置。错误是

<OperatingSystemSection ovf:id="80">
      <Info>The kind of installed guest operating system</Info>
      <Description>RedHat_64</Description>
      <vbox:OSType ovf:required="false">RedHat_64</vbox:OSType>
    </OperatingSystemSection>

让我解释一下以澄清问题。众所周知,在将任何东西部署到云之前,我们必须经过一个开发阶段。之后,如果一切正常,我们会将我们配置的所有资源迁移到云环境中。现在在这里,我在开发阶段使用:virtual box,并且我有一个从VBOX导出的虚拟机,将其放入位于OVH的esxi环境中。我按照本教程将导出的 VM 从 ova 转换为 ovf:[1]:https ://felixcentmerino.wordpress.com/2014/10/15/migrate-virtual-machine-from-oracle-virtualbox-to-esxi- 5-5/ 但是当我想将 ovf 文件部署到 ESXi 时,我得到了上面提到的错误。谁能帮帮我?

4

1 回答 1

0

替换为:

<OperatingSystemSection ovf:id="107">
      <Info>The kind of installed guest operating system</Info>
      <!-- <Description>RedHat_64</Description> -->
        <!-- <vbox:OSType ovf:required="false">RedHat_64</vbox:OSType>  -->
        <vbox:OSType ovf:required="false">centos64Guest</vbox:OSType> 
    </OperatingSystemSection> 
于 2017-02-14T12:58:55.007 回答