Table of Contents |
---|
Info |
---|
This document gives a brief explanation of guest operating systems for creating VMs on VMware, for VMware vSphere and ESXi versions 5, 6, and 7. It contains examples of how to define VMware guest operating systems in the Abiquo multicloud platform. Abiquo can read the guest OS type from the OVF file and OVA file and create the appropriate template in vCenter. |
Introduction to guest operating system definitions
When you create a VM template, to enable VMware hypervisors to correctly configure VMs from the template, specify the guest operating system type and version. In an OVF file that describes a VM template, you can specify the operating system using the CIM standard ID number and a version number. CIM means "common information model" and DMTF maintains this standard. The main website for DMTF's CIM standard is https://www.dmtf.org/standards/cim/. The DMTF issues new versions periodically.
Hypervisors have their own lists of supported operating systems, for example, VMware has the VirtualMachineGuestOsIdentifier, which you can find in the VMware documentation.
How the multi-cloud platform uses the guest operating system
When you upload an OVA file into the Abiquo multi-cloud platform, it will automatically read the operating system type and version from the OVF. Simply select the OVA to upload. Abiquo reads OVA files created with VMware.
...
Code Block |
---|
... <osType>CENTOS_64</osType> <osVersion>8</osVersion> ... |
The template definition will deploy on ESXi 6.7+ as the following OS type.
Code Block |
---|
centos8_64Guest |
...
To define a VM with a Windows 2019 server 64-bit guest operating system on ESXi 7.0+, when you create or edit a template, select the OS type of WINDOWS and enter 2019 as the version. Abiquo (5.1.2+) will create the following template in the catalogcatalogue.
Code Block |
---|
... <osType>WINDOWS</osType> <osVersion>2019</osVersion> ... |
When you deploy a VM from this template on vSphere 7.X+, Abiquo 5.1.2+ will set the following guest OS, which VMware uses to represent 64-bit Windows 2019 Server guests.
...