Spring Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

What happens when the following command is executed twice in succession?

docker run -tid -v data:/data debian bash

A.

The container resulting from the second invocation can only read the content of /data/ and cannot change it.

B.

Each container is equipped with its own independent data volume, available at /data/ in the respective container.

C.

Both containers share the contents of the data volume, have full permissions to alter its content and mutually see their respective changes.

D.

The original content of the container image data is available in both containers, although changes stay local within each container.

E.

The second command invocation fails with an error stating that the volume data is already associated with a running container.

Virtualization of which hardware component is facilitated by CPUs supporting nested page table extensions, such as Intel Extended Page Table (EPT) or AMD Rapid Virtualization Indexing (RVI)?

A.

Memory

B.

Network Interfaces

C.

Host Bus Adapters

D.

Hard Disks

E.

IO Cache

In order to use the optiondom0_memto limit the amount of memory assigned to the Xen Domain-0, where must this option be specified?

A.

In the bootloader configuration, when Xen is booted.

B.

In any of Xen’s global configuration files.

C.

In its .config file, when the Domain-0 kernel is built.

D.

In the configuration file /etc/xen/Domain-0.cfg, when Xen starts.

E.

In its Makefile, when Xen is built.

In an IaaS cloud, what is a common method for provisioning new computing instances with an operating system and software?

A.

Each new instance is connected to the installation media of a Linux distribution and provides access to the installer by logging in via SSH.

B.

Each new instance is created based on an image file that contains the operating system as well as software and default configuration for a given purpose.

C.

Each new instance is a clone of another currently running instance that includes all the software, data and state of the original instance.

D.

Each new instance is connected via a VPN with the computer that started the provisioning and tries to PXE boot from that machine.

E.

Each new instance contains a minimal live system running from a virtual CD as the basis from which the administrator deploys the target operating system.

What is true aboutcontainerd?

A.

It is a text file format defining the build process of containers.

B.

It runs in each Docker container and provides DHCP client functionality

C.

It uses rune to start containers on a container host.

D.

It is the initial process run at the start of any Docker container.

E.

It requires the Docker engine and Docker CLI to be installed.

What is the purpose of a .dockerignore file?

A.

It lists files existing in a Docker image which should be excluded when building a derivative image.

B.

It specifies files that Docker does not submit to the Docker daemon when building a Docker image

C.

It exists in the root file system of containers that should ignore volumes and ports provided by Docker.

D.

It must be placed in the top level directory of volumes that Docker should never attach automatically to a container

E.

It specifies which parts of a Dockerfile should be ignored when building a Docker image.

How does Packer interact with system images?

A.

Packer has to be installed within the target image and is executed during the image's first boot in order to execute preparation tasks.

B.

Packer installs a client within the image which has to be run periodically via cron in order to retrieve the latest template from the Packer server and apply it locally.

C.

Packer periodically connects through the network to the Packer daemons of all running Packer images in order to re-apply the whole template to the running instance.

D.

Packer downloads and extracts an image in order to make changes to the image's file system, repack the modified image and upload it again.

E.

Packer creates an instance based on a source image, prepares the instance through a network connection and bundles the resulting instance as a new system image.

Which of the following commands moves the libvirt domainweb1from the current host system to the host systemhost2?

A.

virsh node-update host1=-dom:web1 host2=+dom:web1

B.

virsh pool-add host2 web1

C.

virsh migrate web1 qemu+ssh://host2/system

D.

virsh patch web1 .Domain.Node=host2

E.

virsh cp .:web1 host2:web1