You are on page 1of 6

Introduction to the Course

Container History

1.
Bill Cheswick helped develop what technology?
thumb_up
thumb_down
A
Mesos
B
Docker
C
Kubernetes
D
chrooted jail
Correct Answer: D
Why is this correct?
An early use of the term "jail" as applied to chroot comes from Bill
Cheswick creating a honeypot to monitor a cracker in
1991. https://linuxacademy.com/cp/courses/lesson/course/2908/lesson/
3/module/250
2.
What does a control group do?
thumb_up
thumb_down
A
Control groups help ensure high availability of services through
replication.
B
Control groups help you orchestrate the deployment of your
containers.
C
Cgroups allow you to allocate resources among groups of processes
running on a system
D
Control groups help you better add and remove system users.
Correct Answer: C
Why is this correct?
Correct! Cgroups allow you to allocate resources among groups of
processes running on a
system https://linuxacademy.com/cp/courses/lesson/course/2908/lesso
n/3/module/250
3.
What operating system was the first to adopt the chroot command?
thumb_up
thumb_down
A
Kubernetes
B
Redhat
C
Unix 7
D
Ubuntu
Correct Answer: C
Why is this correct?
The chroot system call was introduced during the development of
Version 7 Unix in
1979. https://linuxacademy.com/cp/courses/lesson/course/2908/lesson/
3/module/250
4.
What was the original project name for Mesos.
thumb_up
thumb_down
A
Minion
B
Nexus
C
Project Seven
D
DotCloud
Correct Answer: B
Why is this correct?
Mesos originally named Nexus but due to a conflict with another
university's project, was renamed to
Mesos https://linuxacademy.com/cp/courses/lesson/course/2908/lesson
/3/module/250
5.
What was the original project name for Kubernetes?
thumb_up
thumb_down
A
Pinehead Tv
B
Project Seven of Nine
C
Nexus
D
Dotcloud
Correct Answer: B
Why is this correct?
The original codename for Kubernetes within Google was Project
Seven of Nine, a reference to Star Trek character 

Chroot changes the apparent root directory of a process.


The chroot directory is now the root directory and anything that branches out of it has no view of the
rest of the system. The chroot directory knows that it’s the root directory.

This gives you the ability to create a containerized or a limited view of your system.

So, through the use of chroot or the chroot directory, you can create a chroot jail for your users.
Process Containers = Control Group by Google

Aka subsystem e.g cpu, blkio, memory, devices, freezer etc.

You might also like