SlideShare a Scribd company logo
1 of 24
Virtualization
WhatĀ isĀ virtualization?
WhatĀ isĀ virtualization?
ā—

ā—

ā—

mov

Full virtualization

cmp
jmp

Para virtualization

call
push

Partial virtualization

pop
int

RAM

nop

MMU

CPU
WhatĀ isĀ virtualization?
ā—

ā—

ā—

mov

Full virtualization

cmp
jmp

Para virtualization

call
push

Partial virtualization

pop
int

RAM

nop

MMU

CPU
FindĀ outĀ ifĀ yourĀ CPUĀ isĀ 
virtualizationĀ enabled
For Intel VT-x
$ grep ā€“color vmx /proc/cpuinfo
For AMD V
$ grep ā€“color svm /proc/cpuinfo
flags
: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx rdtscp lm
constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf
eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr
pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave avx lahf_lm
ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
Organization
Host kernel
ā—

KVM

ā—
ā—

Kernel

Kernel

VM

VM

Kernel

Kernel

VM

VM

Kernel

Kernel

VM

VM

KVM
- in the kernel
QEMU - System virtualization
Libvirt - management simplification
KVMĀ KernelĀ configuration
CONFIG_KVM_GUEST=y

CONFIG_PARAVIRT=y

# CONFIG_KVM_DEBUG_FS is not set

# CONFIG_PARAVIRT_DEBUG is not set

CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y

CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_PARAVIRT_TIME_ACCOUNTING=y
CONFIG_PARAVIRT_CLOCK=y

CONFIG_HAVE_KVM_IRQ_ROUTING=y

CONFIG_VIRT_TO_BUS=y

CONFIG_HAVE_KVM_EVENTFD=y

CONFIG_VIRTIO_BLK=m

CONFIG_KVM_APIC_ARCHITECTURE=y

CONFIG_SCSI_VIRTIO=m

CONFIG_KVM_MMIO=y

CONFIG_VIRTIO_NET=m

CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y

CONFIG_VIRTIO_CONSOLE=y
CONFIG_HW_RANDOM_VIRTIO=m
CONFIG_VIRT_DRIVERS=y

CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT CONFIG_VIRTIO=y
=y
# Virtio drivers
CONFIG_KVM=y

CONFIG_VIRTIO_PCI=y

CONFIG_KVM_INTEL=y

CONFIG_VIRTIO_BALLOON=m

# CONFIG_KVM_AMD is not set

CONFIG_VIRTIO_MMIO=m

# CONFIG_KVM_MMU_AUDIT is not set
CONFIG_KVM_DEVICE_ASSIGNMENT=y

CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y
# CONFIG_DEBUG_VIRTUAL is not set
CONFIG_VIRTUALIZATION=y
KVMĀ KernelĀ configuration
Processor type and features ->
Linux guest support -> *
BUS options -> PCI IOV
Device Drivers ->
Block devices -> Virtio block driver
SCSI device support -> SCSI low-level drivers -> virtio-scsi
Network device support -> Virtio network driver
Character devices ->
* HW Random Number Generator
Virtio console
Virtio drivers -> *
Virtualization -> *
Create
ā— Start
ā— Talk to QEMU
ā—
KVMĀ tools

ā—

virsh

ā—

virt-manager
KVMĀ information
ā—

List VMs
ā€“
ā€“

ā—

virsh list
virsh list ā€“ all (including the suspended and stopped)

Node Information
ā€“

virsh nodeinfo ā€“ information about the host node

ā€“

virsh dominfo vm_name - information about the VM

ā€“

virsh vcpuinfo vm_name - CPU info about the VM
ā—

Start
ā€“

ā—

VMĀ ManagementĀ :)

virsh start vm_name

Stop
ā€“

- soft shutdown

ā€“
ā—

virsh shutdown vm_name
virsh destroy vm_name

- power down

Restart
ā€“
ā€“

virsh shutdown vm_name

ā€“

virsh destroy vm_name

ā€“
ā—

virsh reboot vm_name

virsh start vm_name

- power cycle

Suspend
ā€“

virsh suspend vm_name

- to RAM
Hibernate
ā—

Save - save the VM state to a file
ā€“
ā€“

ā—

virsh save vm_name
virsh save-image-define save-file.img

Restore
ā€“

ā—

virsh restore save-file.img

File location
ā€“

/var/lib/libvirt/qemu/
Network
ā—

List all defined networks
ā€“

ā—

Get information for predefined network
ā€“

ā—

virsh net-info net_name

Activate a network on Host boot
ā€“

ā—

virsh net-list

virsh net-autostart net_name

Start/Stop/Remove network
ā€“

virsh net-start net_name

ā€“

virsh net-destroy net_name

ā€“

virsh net-undefine net_name
StorageĀ pools
ā—

List all defined storage pools
ā€“

ā—

Get information for predefined pool
ā€“

ā—

virsh pool-info pool_name

Activate a storage pool on Host boot
ā€“

ā—

virsh pool-list

virsh pool-autostart pool_name

Start/Stop/Remove network
ā€“

virsh pool-start net_name

ā€“

virsh pool-destroy net_name

ā€“

virsh pool-undefine net_name
StorageĀ pools
ā—

Create a pool
# virsh pool-create pool.xml
# virsh pool-create-as --name pesho 
--type [dir,disk,fs,logical,netfs...] 
--target (depending on the type) 

ā—

Refresh the files/volume in a pool
# virsh pool-refresh pool_name
Volumes
ā—

Create
# virsh vol-create volume.xml
# virsh vol-create-as --pool=pool_name 
--name pesho_be 
--capacity (int in Bytes) 
--format [raw,bochs,qcow,qcow2,qed,vmdk]

ā—

Clone
# virsh vol-clone vol_name new_name --pool pool_name

ā—

Delete
# virsh vol-delete vol_name --pool pool_name
Snapshots
# virsh snapshot-create-as vm_name snapshot1
"backup1" --disk-only --atomic
# virsh snapshot-list vm_name
# virsh snapshot-info vm_name 
--snapshotname snapshot1
Migration
ā—

Migration with shared storage
virsh migrate --live Jab2 qemu+ssh://192.168.0.5/system

ā—

Migration with local storage
# qemu-img info /vm/vm-test.img
image: /vm/jivko-test.img
file format: raw
virtual size: 8.0G (8589934592 bytes)
disk size: 8.0G

# qemu-img create -f raw /vm/vm-test.img 8G
Formatting '/vm/jivko-test.img', fmt=raw size=8589934592

# virsh migrate --persistent --live --copy-storage-all Jab2
qemu+ssh://192.168.0.5/system
CreateĀ aĀ newĀ VM
ā—

Installation image

ā—

Command
ā€“

qemu -drive file=ubuntu-lucid.img,if=virtio 
/path/to/kernel/bzImage 

-kernel

-append "console=ttyS0 root=/dev/vda" 
-m 512 -smp 1 -fsdev
local,id=test_dev,path=shared,security_model=none
-enable-kvm
Backups
Configuration
ā—

Fuck... it's XML based...
/etc/libvirt/qemu/vm_name.xml
/etc/libvirt/qemu/autostart
/etc/libvirt/qemu/networks
/var/lib/libvirt/images
ConsoleĀ &Ā 
Debugging
ā—

Console
ā€“
ā€“

virsh console vm_name
/usr/bin/virsh -c 
'qemu+ssh://root@IP:22/system' console vm_name

ā€“

ā—

Install virt-manager and setup connection to the host node,
then connect to the vm with double click :)

Debugging
# qemu -gdb tcp:127.0.0.1:1212 [...]
# gdb vmlinux-of-guest
(gdb) target remote tcp:127.0.0.1:1212
CommonĀ issues
ā—

Sometimes libvirt can't start some VMs
ā€“

check if they have .save files in
ā—

ā€“

check if there are files with the VM name in
ā—

ā€“

/var/lib/libvirt/qemu/images
/var/lib/libvirt/qemu/save

If there are any files for that VM in either of these
dirs, remove them and the VM should start

More Related Content

What's hot

Control your service resources with systemd
 Control your service resources with systemd  Control your service resources with systemd
Control your service resources with systemd Marian Marinov
Ā 
Using cgroups in docker container
Using cgroups in docker containerUsing cgroups in docker container
Using cgroups in docker containerVinay Jindal
Ā 
Improve your storage with bcachefs
Improve your storage with bcachefsImprove your storage with bcachefs
Improve your storage with bcachefsMarian Marinov
Ā 
Advanced Namespaces and cgroups
Advanced Namespaces and cgroupsAdvanced Namespaces and cgroups
Advanced Namespaces and cgroupsKernel TLV
Ā 
Optimizing VM images for OpenStack with KVM/QEMU
Optimizing VM images for OpenStack with KVM/QEMUOptimizing VM images for OpenStack with KVM/QEMU
Optimizing VM images for OpenStack with KVM/QEMUOpenStack Foundation
Ā 
Linux fundamental - Chap 12 Hardware Management
Linux fundamental - Chap 12 Hardware ManagementLinux fundamental - Chap 12 Hardware Management
Linux fundamental - Chap 12 Hardware ManagementKenny (netman)
Ā 
LSA2 - PostgreSQL
LSA2 - PostgreSQLLSA2 - PostgreSQL
LSA2 - PostgreSQLMarian Marinov
Ā 
Comparison of-foss-distributed-storage
Comparison of-foss-distributed-storageComparison of-foss-distributed-storage
Comparison of-foss-distributed-storageMarian Marinov
Ā 
First steps on CentOs7
First steps on CentOs7First steps on CentOs7
First steps on CentOs7Marc Cortinas Val
Ā 
Improving the Performance of the qcow2 Format (KVM Forum 2017)
Improving the Performance of the qcow2 Format (KVM Forum 2017)Improving the Performance of the qcow2 Format (KVM Forum 2017)
Improving the Performance of the qcow2 Format (KVM Forum 2017)Igalia
Ā 
Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)
Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)
Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)Anne Nicolas
Ā 
FUSE Filesystems
FUSE FilesystemsFUSE Filesystems
FUSE Filesystemselliando dias
Ā 
Comparison of foss distributed storage
Comparison of foss distributed storageComparison of foss distributed storage
Comparison of foss distributed storageMarian Marinov
Ā 
Linux fundamental - Chap 08 proc
Linux fundamental - Chap 08 procLinux fundamental - Chap 08 proc
Linux fundamental - Chap 08 procKenny (netman)
Ā 
DOXLON November 2016: Facebook Engineering on cgroupv2
DOXLON November 2016: Facebook Engineering on cgroupv2DOXLON November 2016: Facebook Engineering on cgroupv2
DOXLON November 2016: Facebook Engineering on cgroupv2Outlyer
Ā 
NetBSDworkshop
NetBSDworkshopNetBSDworkshop
NetBSDworkshopJun Ebihara
Ā 
XPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, Citrix
XPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, CitrixXPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, Citrix
XPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, CitrixThe Linux Foundation
Ā 
s6196-chris-huybregts-microsoft-new-gpu-virtualization-technologies
s6196-chris-huybregts-microsoft-new-gpu-virtualization-technologiess6196-chris-huybregts-microsoft-new-gpu-virtualization-technologies
s6196-chris-huybregts-microsoft-new-gpu-virtualization-technologiesChris Huybregts
Ā 
Linux kernel modules
Linux kernel modulesLinux kernel modules
Linux kernel modulesHao-Ran Liu
Ā 

What's hot (20)

Control your service resources with systemd
 Control your service resources with systemd  Control your service resources with systemd
Control your service resources with systemd
Ā 
Using cgroups in docker container
Using cgroups in docker containerUsing cgroups in docker container
Using cgroups in docker container
Ā 
Improve your storage with bcachefs
Improve your storage with bcachefsImprove your storage with bcachefs
Improve your storage with bcachefs
Ā 
Advanced Namespaces and cgroups
Advanced Namespaces and cgroupsAdvanced Namespaces and cgroups
Advanced Namespaces and cgroups
Ā 
Optimizing VM images for OpenStack with KVM/QEMU
Optimizing VM images for OpenStack with KVM/QEMUOptimizing VM images for OpenStack with KVM/QEMU
Optimizing VM images for OpenStack with KVM/QEMU
Ā 
Linux fundamental - Chap 12 Hardware Management
Linux fundamental - Chap 12 Hardware ManagementLinux fundamental - Chap 12 Hardware Management
Linux fundamental - Chap 12 Hardware Management
Ā 
LSA2 - PostgreSQL
LSA2 - PostgreSQLLSA2 - PostgreSQL
LSA2 - PostgreSQL
Ā 
Comparison of-foss-distributed-storage
Comparison of-foss-distributed-storageComparison of-foss-distributed-storage
Comparison of-foss-distributed-storage
Ā 
First steps on CentOs7
First steps on CentOs7First steps on CentOs7
First steps on CentOs7
Ā 
Improving the Performance of the qcow2 Format (KVM Forum 2017)
Improving the Performance of the qcow2 Format (KVM Forum 2017)Improving the Performance of the qcow2 Format (KVM Forum 2017)
Improving the Performance of the qcow2 Format (KVM Forum 2017)
Ā 
Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)
Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)
Kernel Recipes 2016 - Understanding a Real-Time System (more than just a kernel)
Ā 
FUSE Filesystems
FUSE FilesystemsFUSE Filesystems
FUSE Filesystems
Ā 
Comparison of foss distributed storage
Comparison of foss distributed storageComparison of foss distributed storage
Comparison of foss distributed storage
Ā 
Ha opensuse
Ha opensuseHa opensuse
Ha opensuse
Ā 
Linux fundamental - Chap 08 proc
Linux fundamental - Chap 08 procLinux fundamental - Chap 08 proc
Linux fundamental - Chap 08 proc
Ā 
DOXLON November 2016: Facebook Engineering on cgroupv2
DOXLON November 2016: Facebook Engineering on cgroupv2DOXLON November 2016: Facebook Engineering on cgroupv2
DOXLON November 2016: Facebook Engineering on cgroupv2
Ā 
NetBSDworkshop
NetBSDworkshopNetBSDworkshop
NetBSDworkshop
Ā 
XPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, Citrix
XPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, CitrixXPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, Citrix
XPDS14 - Scaling Xen's Aggregate Storage Performance - Felipe Franciosi, Citrix
Ā 
s6196-chris-huybregts-microsoft-new-gpu-virtualization-technologies
s6196-chris-huybregts-microsoft-new-gpu-virtualization-technologiess6196-chris-huybregts-microsoft-new-gpu-virtualization-technologies
s6196-chris-huybregts-microsoft-new-gpu-virtualization-technologies
Ā 
Linux kernel modules
Linux kernel modulesLinux kernel modules
Linux kernel modules
Ā 

Viewers also liked

Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)Novell
Ā 
Virtualization Architecture & KVM
Virtualization Architecture & KVMVirtualization Architecture & KVM
Virtualization Architecture & KVMPradeep Kumar
Ā 
LSA2 - 02 chrooting
LSA2 - 02 chrootingLSA2 - 02 chrooting
LSA2 - 02 chrootingMarian Marinov
Ā 
Virtualization - Kernel Virtual Machine (KVM)
Virtualization - Kernel Virtual Machine (KVM)Virtualization - Kernel Virtual Machine (KVM)
Virtualization - Kernel Virtual Machine (KVM)Wan Leung Wong
Ā 
Introduction to Virtualization, Virsh and Virt-Manager
Introduction to Virtualization, Virsh and Virt-ManagerIntroduction to Virtualization, Virsh and Virt-Manager
Introduction to Virtualization, Virsh and Virt-Managerwalkerchang
Ā 
Qemu & KVM Guide #1 (intro & basic)
Qemu & KVM Guide #1 (intro & basic)Qemu & KVM Guide #1 (intro & basic)
Qemu & KVM Guide #1 (intro & basic)JungIn Jung
Ā 
Mastering kvm virtualization- A complete guide of KVM virtualization
Mastering kvm virtualization- A complete guide of KVM virtualizationMastering kvm virtualization- A complete guide of KVM virtualization
Mastering kvm virtualization- A complete guide of KVM virtualizationHumble Chirammal
Ā 
Redis - BlagoevgradConf 2013
Redis - BlagoevgradConf 2013Redis - BlagoevgradConf 2013
Redis - BlagoevgradConf 2013svilen.ivanov
Ā 
Kvm virtualization platform
Kvm virtualization platformKvm virtualization platform
Kvm virtualization platformAhmad Hafeezi
Ā 
virtio
virtiovirtio
virtiozhaobrian
Ā 
open source virtualization
open source virtualizationopen source virtualization
open source virtualizationKris Buytaert
Ā 
CriaĆ§Ć£o de ambientes em chroot
CriaĆ§Ć£o de ambientes em chrootCriaĆ§Ć£o de ambientes em chroot
CriaĆ§Ć£o de ambientes em chrootRudĆ” Moura
Ā 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to dockerJim Yeh
Ā 
chroot and SELinux
chroot and SELinuxchroot and SELinux
chroot and SELinuxShay Cohen
Ā 
Open Virtualization Format - Detailed
Open Virtualization Format - DetailedOpen Virtualization Format - Detailed
Open Virtualization Format - DetailedMahesh. Rudrachar
Ā 
Dave Gilbert - KVM and QEMU
Dave Gilbert - KVM and QEMUDave Gilbert - KVM and QEMU
Dave Gilbert - KVM and QEMUDanny Abukalam
Ā 
Chw00t: Breaking unicesā€™ chroot solutions
Chw00t: Breaking unicesā€™ chroot solutionsChw00t: Breaking unicesā€™ chroot solutions
Chw00t: Breaking unicesā€™ chroot solutionsPositive Hack Days
Ā 
LXD: The hypervisor that isn't
LXD: The hypervisor that isn'tLXD: The hypervisor that isn't
LXD: The hypervisor that isn'ttych0
Ā 

Viewers also liked (20)

Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)
Ā 
Virtualization Architecture & KVM
Virtualization Architecture & KVMVirtualization Architecture & KVM
Virtualization Architecture & KVM
Ā 
LSA2 - 02 chrooting
LSA2 - 02 chrootingLSA2 - 02 chrooting
LSA2 - 02 chrooting
Ā 
Virtualization - Kernel Virtual Machine (KVM)
Virtualization - Kernel Virtual Machine (KVM)Virtualization - Kernel Virtual Machine (KVM)
Virtualization - Kernel Virtual Machine (KVM)
Ā 
Introduction to Virtualization, Virsh and Virt-Manager
Introduction to Virtualization, Virsh and Virt-ManagerIntroduction to Virtualization, Virsh and Virt-Manager
Introduction to Virtualization, Virsh and Virt-Manager
Ā 
Qemu & KVM Guide #1 (intro & basic)
Qemu & KVM Guide #1 (intro & basic)Qemu & KVM Guide #1 (intro & basic)
Qemu & KVM Guide #1 (intro & basic)
Ā 
Mastering kvm virtualization- A complete guide of KVM virtualization
Mastering kvm virtualization- A complete guide of KVM virtualizationMastering kvm virtualization- A complete guide of KVM virtualization
Mastering kvm virtualization- A complete guide of KVM virtualization
Ā 
Redis - BlagoevgradConf 2013
Redis - BlagoevgradConf 2013Redis - BlagoevgradConf 2013
Redis - BlagoevgradConf 2013
Ā 
Kvm virtualization platform
Kvm virtualization platformKvm virtualization platform
Kvm virtualization platform
Ā 
virtio
virtiovirtio
virtio
Ā 
Kvm setup
Kvm setupKvm setup
Kvm setup
Ā 
open source virtualization
open source virtualizationopen source virtualization
open source virtualization
Ā 
CriaĆ§Ć£o de ambientes em chroot
CriaĆ§Ć£o de ambientes em chrootCriaĆ§Ć£o de ambientes em chroot
CriaĆ§Ć£o de ambientes em chroot
Ā 
Namespace
NamespaceNamespace
Namespace
Ā 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to docker
Ā 
chroot and SELinux
chroot and SELinuxchroot and SELinux
chroot and SELinux
Ā 
Open Virtualization Format - Detailed
Open Virtualization Format - DetailedOpen Virtualization Format - Detailed
Open Virtualization Format - Detailed
Ā 
Dave Gilbert - KVM and QEMU
Dave Gilbert - KVM and QEMUDave Gilbert - KVM and QEMU
Dave Gilbert - KVM and QEMU
Ā 
Chw00t: Breaking unicesā€™ chroot solutions
Chw00t: Breaking unicesā€™ chroot solutionsChw00t: Breaking unicesā€™ chroot solutions
Chw00t: Breaking unicesā€™ chroot solutions
Ā 
LXD: The hypervisor that isn't
LXD: The hypervisor that isn'tLXD: The hypervisor that isn't
LXD: The hypervisor that isn't
Ā 

Similar to LSA2 - 01 Virtualization with KVM

Marian Marinov, 1H Ltd.
Marian Marinov, 1H Ltd.Marian Marinov, 1H Ltd.
Marian Marinov, 1H Ltd.Ontico
Ā 
Performance comparison of Distributed File Systems on 1Gbit networks
Performance comparison of Distributed File Systems on 1Gbit networksPerformance comparison of Distributed File Systems on 1Gbit networks
Performance comparison of Distributed File Systems on 1Gbit networksMarian Marinov
Ā 
KVM tools and enterprise usage
KVM tools and enterprise usageKVM tools and enterprise usage
KVM tools and enterprise usagevincentvdk
Ā 
Performance Analysis Tools for Linux Kernel
Performance Analysis Tools for Linux KernelPerformance Analysis Tools for Linux Kernel
Performance Analysis Tools for Linux Kernellcplcp1
Ā 
The New Systems Performance
The New Systems PerformanceThe New Systems Performance
The New Systems PerformanceBrendan Gregg
Ā 
Achieving the Ultimate Performance with KVM
Achieving the Ultimate Performance with KVMAchieving the Ultimate Performance with KVM
Achieving the Ultimate Performance with KVMdata://disruptedĀ®
Ā 
Containers with systemd-nspawn
Containers with systemd-nspawnContainers with systemd-nspawn
Containers with systemd-nspawnGƔbor Nyers
Ā 
Overview of sheepdog
Overview of sheepdogOverview of sheepdog
Overview of sheepdogLiu Yuan
Ā 
VMworld 2016: vSphere 6.x Host Resource Deep Dive
VMworld 2016: vSphere 6.x Host Resource Deep DiveVMworld 2016: vSphere 6.x Host Resource Deep Dive
VMworld 2016: vSphere 6.x Host Resource Deep DiveVMworld
Ā 
Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...
Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...
Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...confluent
Ā 
Build an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on CephBuild an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on CephRongze Zhu
Ā 
PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22
PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22
PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22Yuya Takei
Ā 
Kernel Recipes 2015 - Kernel dump analysis
Kernel Recipes 2015 - Kernel dump analysisKernel Recipes 2015 - Kernel dump analysis
Kernel Recipes 2015 - Kernel dump analysisAnne Nicolas
Ā 
Qemu - Raspberry | while42 Singapore #2
Qemu - Raspberry | while42 Singapore #2Qemu - Raspberry | while42 Singapore #2
Qemu - Raspberry | while42 Singapore #2While42
Ā 
php & performance
 php & performance php & performance
php & performancesimon8410
Ā 
Pitr Made Easy
Pitr Made EasyPitr Made Easy
Pitr Made EasyJoshua Drake
Ā 
Kernel compilation
Kernel compilationKernel compilation
Kernel compilationmcganesh
Ā 
Achieving the ultimate performance with KVM
Achieving the ultimate performance with KVMAchieving the ultimate performance with KVM
Achieving the ultimate performance with KVMStorPool Storage
Ā 
Basics_of_Kernel_Panic_Hang_and_ Kdump.pdf
Basics_of_Kernel_Panic_Hang_and_ Kdump.pdfBasics_of_Kernel_Panic_Hang_and_ Kdump.pdf
Basics_of_Kernel_Panic_Hang_and_ Kdump.pdfstroganovboris
Ā 
PHP & Performance
PHP & PerformancePHP & Performance
PHP & Performanceęƅ 吕
Ā 

Similar to LSA2 - 01 Virtualization with KVM (20)

Marian Marinov, 1H Ltd.
Marian Marinov, 1H Ltd.Marian Marinov, 1H Ltd.
Marian Marinov, 1H Ltd.
Ā 
Performance comparison of Distributed File Systems on 1Gbit networks
Performance comparison of Distributed File Systems on 1Gbit networksPerformance comparison of Distributed File Systems on 1Gbit networks
Performance comparison of Distributed File Systems on 1Gbit networks
Ā 
KVM tools and enterprise usage
KVM tools and enterprise usageKVM tools and enterprise usage
KVM tools and enterprise usage
Ā 
Performance Analysis Tools for Linux Kernel
Performance Analysis Tools for Linux KernelPerformance Analysis Tools for Linux Kernel
Performance Analysis Tools for Linux Kernel
Ā 
The New Systems Performance
The New Systems PerformanceThe New Systems Performance
The New Systems Performance
Ā 
Achieving the Ultimate Performance with KVM
Achieving the Ultimate Performance with KVMAchieving the Ultimate Performance with KVM
Achieving the Ultimate Performance with KVM
Ā 
Containers with systemd-nspawn
Containers with systemd-nspawnContainers with systemd-nspawn
Containers with systemd-nspawn
Ā 
Overview of sheepdog
Overview of sheepdogOverview of sheepdog
Overview of sheepdog
Ā 
VMworld 2016: vSphere 6.x Host Resource Deep Dive
VMworld 2016: vSphere 6.x Host Resource Deep DiveVMworld 2016: vSphere 6.x Host Resource Deep Dive
VMworld 2016: vSphere 6.x Host Resource Deep Dive
Ā 
Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...
Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...
Kafka Summit SF 2017 - One Day, One Data Hub, 100 Billion Messages: Kafka at ...
Ā 
Build an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on CephBuild an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on Ceph
Ā 
PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22
PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22
PFIć‚»ćƒŸćƒŠćƒ¼č³‡ę–™ H27.10.22
Ā 
Kernel Recipes 2015 - Kernel dump analysis
Kernel Recipes 2015 - Kernel dump analysisKernel Recipes 2015 - Kernel dump analysis
Kernel Recipes 2015 - Kernel dump analysis
Ā 
Qemu - Raspberry | while42 Singapore #2
Qemu - Raspberry | while42 Singapore #2Qemu - Raspberry | while42 Singapore #2
Qemu - Raspberry | while42 Singapore #2
Ā 
php & performance
 php & performance php & performance
php & performance
Ā 
Pitr Made Easy
Pitr Made EasyPitr Made Easy
Pitr Made Easy
Ā 
Kernel compilation
Kernel compilationKernel compilation
Kernel compilation
Ā 
Achieving the ultimate performance with KVM
Achieving the ultimate performance with KVMAchieving the ultimate performance with KVM
Achieving the ultimate performance with KVM
Ā 
Basics_of_Kernel_Panic_Hang_and_ Kdump.pdf
Basics_of_Kernel_Panic_Hang_and_ Kdump.pdfBasics_of_Kernel_Panic_Hang_and_ Kdump.pdf
Basics_of_Kernel_Panic_Hang_and_ Kdump.pdf
Ā 
PHP & Performance
PHP & PerformancePHP & Performance
PHP & Performance
Ā 

More from Marian Marinov

Dev.bg DevOps March 2024 Monitoring & Logging
Dev.bg DevOps March 2024 Monitoring & LoggingDev.bg DevOps March 2024 Monitoring & Logging
Dev.bg DevOps March 2024 Monitoring & LoggingMarian Marinov
Ā 
Basic presentation of cryptography mechanisms
Basic presentation of cryptography mechanismsBasic presentation of cryptography mechanisms
Basic presentation of cryptography mechanismsMarian Marinov
Ā 
Microservices: Benefits, drawbacks and are they for me?
Microservices: Benefits, drawbacks and are they for me?Microservices: Benefits, drawbacks and are they for me?
Microservices: Benefits, drawbacks and are they for me?Marian Marinov
Ā 
Introduction and replication to DragonflyDB
Introduction and replication to DragonflyDBIntroduction and replication to DragonflyDB
Introduction and replication to DragonflyDBMarian Marinov
Ā 
Message Queuing - Gearman, Mosquitto, Kafka and RabbitMQ
Message Queuing - Gearman, Mosquitto, Kafka and RabbitMQMessage Queuing - Gearman, Mosquitto, Kafka and RabbitMQ
Message Queuing - Gearman, Mosquitto, Kafka and RabbitMQMarian Marinov
Ā 
How to successfully migrate to DevOps .pdf
How to successfully migrate to DevOps .pdfHow to successfully migrate to DevOps .pdf
How to successfully migrate to DevOps .pdfMarian Marinov
Ā 
How to survive in the work from home era
How to survive in the work from home eraHow to survive in the work from home era
How to survive in the work from home eraMarian Marinov
Ā 
Managing sysadmins
Managing sysadminsManaging sysadmins
Managing sysadminsMarian Marinov
Ā 
Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?
Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?
Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?Marian Marinov
Ā 
Securing your MySQL server
Securing your MySQL serverSecuring your MySQL server
Securing your MySQL serverMarian Marinov
Ā 
Sysadmin vs. dev ops
Sysadmin vs. dev opsSysadmin vs. dev ops
Sysadmin vs. dev opsMarian Marinov
Ā 
DoS and DDoS mitigations with eBPF, XDP and DPDK
DoS and DDoS mitigations with eBPF, XDP and DPDKDoS and DDoS mitigations with eBPF, XDP and DPDK
DoS and DDoS mitigations with eBPF, XDP and DPDKMarian Marinov
Ā 
Challenges with high density networks
Challenges with high density networksChallenges with high density networks
Challenges with high density networksMarian Marinov
Ā 
SiteGround building automation
SiteGround building automationSiteGround building automation
SiteGround building automationMarian Marinov
Ā 
Preventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel trackingPreventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel trackingMarian Marinov
Ā 
Managing a lot of servers
Managing a lot of serversManaging a lot of servers
Managing a lot of serversMarian Marinov
Ā 
Let's Encrypt failures
Let's Encrypt failuresLet's Encrypt failures
Let's Encrypt failuresMarian Marinov
Ā 
Preventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel trackingPreventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel trackingMarian Marinov
Ā 
How to build your own anycast service
How to build your own anycast serviceHow to build your own anycast service
How to build your own anycast serviceMarian Marinov
Ā 
Electrical workshop
Electrical workshopElectrical workshop
Electrical workshopMarian Marinov
Ā 

More from Marian Marinov (20)

Dev.bg DevOps March 2024 Monitoring & Logging
Dev.bg DevOps March 2024 Monitoring & LoggingDev.bg DevOps March 2024 Monitoring & Logging
Dev.bg DevOps March 2024 Monitoring & Logging
Ā 
Basic presentation of cryptography mechanisms
Basic presentation of cryptography mechanismsBasic presentation of cryptography mechanisms
Basic presentation of cryptography mechanisms
Ā 
Microservices: Benefits, drawbacks and are they for me?
Microservices: Benefits, drawbacks and are they for me?Microservices: Benefits, drawbacks and are they for me?
Microservices: Benefits, drawbacks and are they for me?
Ā 
Introduction and replication to DragonflyDB
Introduction and replication to DragonflyDBIntroduction and replication to DragonflyDB
Introduction and replication to DragonflyDB
Ā 
Message Queuing - Gearman, Mosquitto, Kafka and RabbitMQ
Message Queuing - Gearman, Mosquitto, Kafka and RabbitMQMessage Queuing - Gearman, Mosquitto, Kafka and RabbitMQ
Message Queuing - Gearman, Mosquitto, Kafka and RabbitMQ
Ā 
How to successfully migrate to DevOps .pdf
How to successfully migrate to DevOps .pdfHow to successfully migrate to DevOps .pdf
How to successfully migrate to DevOps .pdf
Ā 
How to survive in the work from home era
How to survive in the work from home eraHow to survive in the work from home era
How to survive in the work from home era
Ā 
Managing sysadmins
Managing sysadminsManaging sysadmins
Managing sysadmins
Ā 
Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?
Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?
Š—Š°Ń‰Š¾ Šø ŠŗŠ°Šŗ Š“Š° Š¾Š±Š¾Š³Š°Ń‚яŠ²Š°Š¼Šµ Š·Š½Š°Š½ŠøятŠ° сŠø?
Ā 
Securing your MySQL server
Securing your MySQL serverSecuring your MySQL server
Securing your MySQL server
Ā 
Sysadmin vs. dev ops
Sysadmin vs. dev opsSysadmin vs. dev ops
Sysadmin vs. dev ops
Ā 
DoS and DDoS mitigations with eBPF, XDP and DPDK
DoS and DDoS mitigations with eBPF, XDP and DPDKDoS and DDoS mitigations with eBPF, XDP and DPDK
DoS and DDoS mitigations with eBPF, XDP and DPDK
Ā 
Challenges with high density networks
Challenges with high density networksChallenges with high density networks
Challenges with high density networks
Ā 
SiteGround building automation
SiteGround building automationSiteGround building automation
SiteGround building automation
Ā 
Preventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel trackingPreventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel tracking
Ā 
Managing a lot of servers
Managing a lot of serversManaging a lot of servers
Managing a lot of servers
Ā 
Let's Encrypt failures
Let's Encrypt failuresLet's Encrypt failures
Let's Encrypt failures
Ā 
Preventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel trackingPreventing cpu side channel attacks with kernel tracking
Preventing cpu side channel attacks with kernel tracking
Ā 
How to build your own anycast service
How to build your own anycast serviceHow to build your own anycast service
How to build your own anycast service
Ā 
Electrical workshop
Electrical workshopElectrical workshop
Electrical workshop
Ā 

Recently uploaded

Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
Ā 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
Ā 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
Ā 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research DiscourseAnita GoswamiGiri
Ā 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17Celine George
Ā 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operationalssuser3e220a
Ā 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
Ā 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A BeƱa
Ā 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQuiz Club NITW
Ā 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseCeline George
Ā 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptxDhatriParmar
Ā 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
Ā 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
Ā 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
Ā 
Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsPooky Knightsmith
Ā 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...SeƔn Kennedy
Ā 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
Ā 
31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...
31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...
31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...Nguyen Thanh Tu Collection
Ā 

Recently uploaded (20)

Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
Ā 
Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of EngineeringFaculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Ā 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
Ā 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
Ā 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research Discourse
Ā 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17
Ā 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operational
Ā 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Ā 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
Ā 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Ā 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 Database
Ā 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Ā 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
Ā 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Ā 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
Ā 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
Ā 
Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young minds
Ā 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
Ā 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Ā 
31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...
31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...
31 Đį»€ THI THį»¬ VƀO Lį»šP 10 - TIįŗ¾NG ANH - FORM Mį»šI 2025 - 40 CƂU Hį»ŽI - BƙI VĂN V...
Ā 

LSA2 - 01 Virtualization with KVM