nerdexam
LPI

010-160 · Question #101

How is a new Linux computing instance provisioned in an IaaS cloud?

The correct answer is E. A provider-specific configuration file describing the desired installation is uploaded to the cloud provider. In IaaS cloud environments, Linux instances are provisioned by supplying a provider-specific configuration file that declaratively describes the desired system, rather than performing any manual installation steps.

The Linux Operating System

Question

How is a new Linux computing instance provisioned in an IaaS cloud?

Options

  • AThe standard Linux installer has to be run through a remote console.
  • BAfter buying a Linux distribution, its vendor delivers it to a cloud instance.
  • CThe installation has to be prepared in a local virtual machine which is then copied to the cloud.
  • DThe cloud hosting organization provides a set of pre-prepared images of popular Linux distributions.
  • EA provider-specific configuration file describing the desired installation is uploaded to the cloud provider.

How the community answered

(41 responses)
  • C
    5% (2)
  • D
    2% (1)
  • E
    93% (38)

Why each option

In IaaS cloud environments, Linux instances are provisioned by supplying a provider-specific configuration file that declaratively describes the desired system, rather than performing any manual installation steps.

AThe standard Linux installer has to be run through a remote console.

IaaS abstracts the underlying hardware entirely, so running a manual Linux installer via remote console is not required or supported as a standard provisioning method.

BAfter buying a Linux distribution, its vendor delivers it to a cloud instance.

Linux distributions are open-source and are not sold by vendors who then deliver them to cloud instances; this describes neither how Linux licensing works nor how IaaS provisioning functions.

CThe installation has to be prepared in a local virtual machine which is then copied to the cloud.

Copying a local virtual machine to the cloud is a migration or import workflow, not the standard IaaS provisioning process for a new instance.

DThe cloud hosting organization provides a set of pre-prepared images of popular Linux distributions.

While cloud providers maintain pre-prepared base images (e.g., AMIs in AWS), simply selecting an image describes only part of the process and does not capture the configuration-driven provisioning model that defines IaaS automation.

EA provider-specific configuration file describing the desired installation is uploaded to the cloud provider.Correct

IaaS platforms support declarative provisioning through configuration files such as cloud-init YAML or vendor-specific templates (e.g., AWS CloudFormation, Azure ARM templates), which describe the desired Linux environment and instruct the provider to automate instance creation. This approach is central to IaaS because it abstracts hardware management and enables repeatable, automated deployments without manual intervention. The configuration file is supplied at launch time and processed by the provider to produce a fully configured, running instance.

Concept tested: IaaS Linux instance provisioning via configuration files

Source: https://cloudinit.readthedocs.io/en/latest/explanation/introduction.html

Topics

#cloud computing#IaaS#Linux provisioning#cloud images

Community Discussion

No community discussion yet for this question.

Full 010-160 Practice