LPI 305-300 - Linux Professional Institute LPIC-3 Virtualization and Containerization Exam
Page: 3 / 11
Total 55 questions
Question #11 (Topic: Exam A)
Which of the following statements are true about container-based virtualization? (Choose two.)
A. Each container runs its own operating system kernel.
B. Different containers may use different distributions of the same operating system.
C. Container-based virtualization relies on hardware support from the host system’s CPU.
D. All containers run within the operating system kernel of the host system.
E. Linux does not support container-based virtualization because of missing kernel APIs.
Answer: BD
Question #12 (Topic: Exam A)
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.
Answer: E
Question #13 (Topic: Exam A)
After setting up a data container using the following command:
docker create -v /data --name datastore debian /bin/true
how is an additional new container started which shares the /data volume with the datastore container?
docker create -v /data --name datastore debian /bin/true
how is an additional new container started which shares the /data volume with the datastore container?
A. docker run --share-with datastore --name service debian bash
B. docker run -v datastore:/data --name service debian bash
C. docker run --volumes-from datastore --name service debian bash
D. docker run -v /data --name service debian bash
E. docker run --volume-backend datastore -v /data --name service debian bash
Answer: C
Question #14 (Topic: Exam A)
After creating a new Docker network using the following command:
docker network create --driver bridge isolated_nw
which parameter must be added to docker create in order to attach a container to the network?
docker network create --driver bridge isolated_nw
which parameter must be added to docker create in order to attach a container to the network?
A. --eth0=isolated_nw
B. --alias=isolated_nw
C. --ethernet=isolated_nw
D. --network=isolated_nw
E. --attach=isolated_nw
Answer: D
Question #15 (Topic: Exam A)
Which of the following network interface types are valid in an LXD container configuration? (Choose three.)
A. ipsec
B. macvlan
C. bridged
D. physical
E. wifi
Answer: BCD