-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvirtualization.txt
More file actions
35 lines (26 loc) · 1.29 KB
/
Copy pathvirtualization.txt
File metadata and controls
35 lines (26 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
::-Virtualization-::
- Technique of splitting of physical resource into as many as logical resources.
- Virtualization is technology that transform hardware into software.
- 1:N (1 server N VM's)
Advantage: High Availability, Fault tolerance, Reduced costs.
Hypervisor is piece of software or firmware that create and run virtual Machine.
A Hypervisor is somtimes also called a Virtual Machine Manager(VMM).
--------OS-------------------
--------Virtual Machine's-----
--------Hypervisor------------(Esxi for vmware)
--------Hardware--------------
Type-1 Hypervisor::(Firmware)(Bare Metal/Native)
->Also called Bare metal hypervisor and run directly on systems hardware.
->Esxi provide virutalization layer that abstracts the cpu,storage and n/w resources of the
physical host into multiple vm.
->Hardware level Virtualization.
->VMware Esxi,Hyper v
Type -2 Hypervisor::(Hosted Type)
->Hypervisor that runs within a conventional OS enviroment, and the host os provided.
--------OS-------------------
--------Virtual Machine's-----
--------Hypervisor------------(Esxi for vmware)
--------Host OS---------------
--------Hardware--------------
->OS level Virtualization.
->VMware workstations,Oracle virtual Box.