3.1c 1 virtualization and containers

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:20 PM on 8/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

Centralized architecture

Management and security consolidated to one console. Better visibility and consolidated logs, but a single point of failure with scaling pressure on storage and CPU.

2
New cards

Decentralized architecture

Multiple sites, providers, and operating systems managed separately. No single failure point, but inconsistent and hard to monitor.

3
New cards

Virtualization

Hypervisor abstracts hardware so multiple VMs, each with its own guest OS, share one physical host.

4
New cards

Hypervisor

Software layer that allocates physical resources among virtual machines.

5
New cards

Guest operating system

The full OS installed inside each virtual machine, separate from every other VM on the host.

6
New cards

Type 1 hypervisor (bare metal)

Runs directly on hardware. Smaller attack surface, used in datacenters. Examples: VMware ESXi, Microsoft Hyper-V.

7
New cards

Type 2 hypervisor (hosted)

Runs as an application on top of an existing OS, inheriting that host OS's vulnerabilities. Examples: VirtualBox, VMware Workstation.

8
New cards

VM escape

Attack breaking out of a guest VM into the hypervisor or other virtual machines on the host.

9
New cards

VM sprawl

Unmanaged, unpatched, undocumented VMs proliferating because they are trivial to create.

10
New cards

Containerization

Applications packaged with their dependencies, all sharing one host OS kernel. Lighter and faster to start than VMs.

11
New cards

Docker

The most widely used containerization platform.

12
New cards

Container escape

Attack breaking out of a container to the shared host OS, affecting every container on that host.

13
New cards

Containers vs VMs isolation

Containers share the host kernel so isolation is weaker; VMs have separate guest OSes so isolation is stronger. Containers = efficiency, VMs = isolation.

14
New cards

Container OS limitation

All containers on a host share that host's OS, so Windows apps and Linux apps require separate container hosts.