SlideShare uma empresa Scribd logo
1 de 150
Introduction to Virtualization, Virsh
Commands and Virt-Manager
Chin Pin Chang
04/07/2014
1
Outline
• Virtualization
– Introduction
– Types of Virtualization
– KVM
– Practice: KVM Installation
• Virsh Commands
– Introduction
– Practice: 3 Units
• Virt-Manager
• Conclusion
• References
2
Virtualization Introduction
• Virtualization is a broad term that refers to the
abstraction of computer physical resources such as
servers, network, memory and storage
3
Virtualization Introduction (cont.)
4
• Without Virtualization • With Virtualization
Why Virtualization
• Resource sharing
• High utilization of resource
• Reduce the number of physical servers
• Ability to bring up new server quickly
• Easy maintenance and monitoring
5
Types of Virtualization
• Server Virtualization
– Full virtualization, Paravirtualization, Hardware-assisted
virtualization
• Application Virtualization
• Desktop Virtualization
• Presentation Virtualization
• Network Virtualization
• Storage Virtualization
6
KVM Introduction
• KVM (Kernel-based Virtual Machine)
– A Linux kernel module that turns Linux into a hypervisor
– Full virtualization
7
Install KVM
• Check that your CPU supports hardware
virtualization
– 0 indicates that your CPU doesn’t support hardware
virtualization
– 1 or more indicates that it supports hardware
virtualization
8
Install KVM (cont.)
• Check BIOS
– Support
– Not support
9
Install KVM (cont.)
• Install necessary packages
– qemu-kvm
– libvirt-bin
– ubuntu-vm-builder
– bridge-utils
10
Add Users to Libvirtd and KVM Groups
• Add user "username" to libvirtd
• Add user " username" to KVM
• Need to re-login
11
Verify Installation
• Check groups
• Verify Installation
• Change the device's group
12
Install Virt-manager
• Install virt-manager
• Start virt-manager
13
Step 1 - Create new virtual machine
14
Step 2 – Locate install media
15
Step 3 – Specify CPU and Memory
16
Step 4 – Specify Storage
17
Step 5 – Specify Network
18
Install Ubuntu Server
19
Virsh Introduction
• Virsh is a command line interface tool for managing
VM and the hypervisor
20
Virsh Introduction (cont.)
• Virsh Commands Classification
21
– Domain management commands
– Domain monitoring commands
– Host and hypervisor commands
– Interface commands
– Network filter commands
– Virtual networking commands
– Node device commands
– Secrets commands
– Domain snapshot commands
– Storage pool commands
– Storage volume commands
– Virsh commands
Virsh Commands
Unit 1
Domain Management
22
Introduction
• Domain management
– Is used to manage VM
– Major commands: define, start, destroy, suspend,
resume and so on
23
How to use virsh
24
define
Item Content
Description Define, but don't start, a guest domain from an XML file
Input 1. XML file
Example # define vm1.xml
Response Domain vm1 defined from vm1.xml
25
Define a VM
26
XML for VM
<domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>
<name>vm1</name>
<uuid>b7cb10e2-c6af-a328-ad75-3e09747f0564</uuid>
<memory>524288</memory>
<currentMemory>524288</currentMemory>
<vcpu>1</vcpu>
<os>
<type arch='armv7l' machine='vexpress-a15'>hvm</type>
<kernel>/root/zImage</kernel>
<cmdline>earlyprintk=ttyAMA0 console=ttyAMA0 mem=512M root=/dev/vda rw
ip=192.168.20.56::192.168.20.101:vm1:eth0:off --no-log</cmdline>
<dtb>/root/guest-vexpress.dtb</dtb>
</os>
<features>
<acpi/>
<pae/>
</features>
<!-- <cpu>
<model>cortex-a15</model>
</cpu> -->
27
XML for VM (cont.)
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/bin/qemu-system-arm</emulator>
<disk type='file' device='disk'>
<driver name='qemu' type='raw' cache='none'/>
<source file='/root/nfs/ubuntu1G.img'/>
<target dev='vda' bus='virtio'/>
</disk>
<interface type='bridge'>
<source bridge='virbr0'/>
<mac address='52:54:00:12:34:55'/>
<model type='virtio'/>
</interface>
<console type='pty'/>
</devices>
</domain>
28
XML parameters
• name
– Virtual machine name
• uuid
– A globally unique identifier for the virtual machine
• current memory
– The actual allocation of memory for the VM
• type
– The type of operating system in the virtual machine
• kernel
– The fully-qualified path to the kernel image in the host OS
29
XML parameters (cont.)
• cmdline
– The arguments to be passed to the kernel at boot time
• dtb
– The fully-qualified path to the device tree binary image in
the host OS
• emulator
– The fully qualified path to the device model emulator
binary
• disk
– The main container for describing disks
• source file
– The resource on the host that is being accessed in the
guest
30
XML parameters (cont.)
• target
– The source can be accessed in the guest
• interface type
– A network interface visible to the guest
• source bridge
– The interface of the network
• mac address
– The address of the network
• model type
– The model of emulated network interface
31
start
Item Content
Description
Start a guest domain, either from the last managed save
state, or via a fresh boot if no managed save state is
present
Input 1.domain
Example # start vm1
Response Domain vm1 started
32
Start VM
33
domid
Item Content
Description Convert a domain name or UUID to domain id
Input 1. domain
Example # domid vm1
Response 1
34
domname
Item Content
Description
Convert a guest domain id or UUID to guest domain
name
Input 1. domain
Example # domname 1
Response vm1
35
domuuid
Item Content
Description
Convert a guest domain name or id to guest domain
UUID
Input 1. domain
Example # domuuid vm1
Response b7cb10e2-c6af-a328-ad75-3e09747f0564
36
VM Information
• The domain ID
• The domain name
• The domain uuid
37
autostart
Item Content
Description
Enable and disable the automatic starting of a guest
domain when the libvirt daemon starts
Input 1. domain
Example # autostart vm1
Response Domain vm1 marked as autostarted
38
Auto start VM
39
list
Item Content
Description Returns a list of guest domains
Input N/A
Example # list
Response
virsh # list
Id Name State
----------------------------------------------------
1 vm1 running
40
List VM
41
console
Item Content
Description Connect the virtual serial console for the guest
Input 1. domain
Example # console vm1
Response
Connected to domain vm1
Escape character is ^]
42
Connect to VM
43
Connect to VM (cont.)
44
• Launch Apache service
• Check Apache service
Connect to VM (cont.)
• Check the IP of the VM
45
Connect to VM (cont.)
• Check /var/www/index.html
• Web page
46
suspend
Item Content
Description Suspend a running guest domain
Input 1.domain
Example # suspend vm1
Response Domain vm1 suspended
47
Suspend VM
• Web page
48
resume
Item Content
Description Resume a guest domain
Input 1.domain
Example # resume vm1
Response Domain vm1 resumed
49
Resume VM
• Web page
50
save
Item Content
Description Save the running state of a guest domain to a file
Input
1.domain
2.file
Example # save vm1 image
Response Domain vm1 saved to image
51
restore
Item Content
Description Restore a guest domain
Input 1.file
Example # restore image
Response Domain restored from image
52
Save and Restore scenario
S0
Save
the VM
Restore
the VM
Start
the VM
Modify
index.htm
S0S2S1
53
Step 4Step 3Step 2Step 1
Step 1
• Save the VM
• The saved file
54
Step 2 and 3
• Start the VM
• Modify /var/www/index.html
• Web page
55
Step 4
• Restore the VM
• Web page
56
destroy
Item Content
Description
Immediately terminates a running guest domain,
releasing any resources in use by it
Input 1.domain
Example # destroy vm1
Response Domain vm1 destroyed
57
Destroy VM
58
The memory information of the host
• Before destroying the VM
• After destroying the VM
59
undefine
Item Content
Description Remove the configuration for an inactive guest domain
Input 1.domain
Example # undefine vm1
Response
Domain vm1 has been undefined
60
Undefine VM
61
Virsh Commands
Unit 2
Interface Management and
Network Management
62
Introduction
• Interface management
– To create an interface on the host for VM
63
iface-define
Item Content
Description Define a physical host network interface
Input 1. XML file
Example # iface-define br1.xml
Response Interface br1 defined from br1.xml
64
Define an interface
• Interface br1
65
XML for Interface
<interface type='bridge' name='br1'>
<start mode='onboot'/>
<bridge>
<interface type='vlan' name='bond0.1'>
<vlan tag='1'>
<interface name='bond1'/>
</vlan>
</interface>
</bridge>
</interface>
66
XML parameters
• interface type
– Network interface type
• interface name
– The name of interface
• bridge type
– The type of bridge
• vlan tag
– Use to tag of the vlan
67
iface-start
Item Content
Description Enables and starts a physical host network interface
Input 1. interface
Example # iface-start br1
Response Interface br1 started
68
Start interface
69
iface-name
Item Content
Description
Returns the physical host interface name for a MAC
address
Input 1. interface(MAC address)
Example # iface-name 3a:a0:42:19:ca:b2
Response br1
70
iface-mac
Item Content
Description
Returns the MAC address for a physical host network
interface
Input 1. interface
Example # iface-mac br1
Response 3a:a0:42:19:ca:b2
71
Interface Information
• The interface name
• The interface mac
72
iface-destroy
Item Content
Description
Shut down and disable a physical host network
interface
Input 1. interface
Example # iface-destroy br1
Response
Interface br1 destroyed
73
Destroy interface
74
iface-undefine
Item Content
Description
Removes the configuration information for a physical
host network interface
Input 1. interface
Example # iface-undefine br1
Response Interface br1 undefined
75
Undefine interface
76
Introduction
• Network management
– Libvirt has the capability to define virtual
networks which can then be used by domains
and linked to actual network devices
77
net-define
Item Content
Description
Adds a new permanent virtual network from an XML file,
without starting it
Input 1. file
Example # net-define vlan1.xml
Response Network vlan1 defined from vlan1.xml
78
Define network
• Network vlan1
79
XML for Network
<network >
<name>vlan1</name>
<forward mode='bridge'/>
<bridge name='br1' />
</network>
80
XML parameters
• name
– Virtual network name
• forward mode
– Inclusion of the forward element indicates that the virtual
network is to be connected to the physical LAN
• bridge name
– The name of a bridge device
81
net-start
Item Content
Description Starts a (previously defined) inactive virtual network
Input 1. network
Example # net-start vlan1
Response Network vlan1 started
82
Start network
83
net-autostart
Item Content
Description
Enable or disable the automatic starting of a virtual
network, when the libvirt daemon starts
Input 1. network
Example # net-autostart vlan1
Response Network vlan1 marked as autostarted
84
Auto start network
85
net-info
Item Content
Description Displays basic information for a virtual network
Input 1. network
Example # net-info vlan1
Response
Name vlan1
UUID f1f1cd7e-b623-4d7e-94c8-2047da1decef
Active: yes
Persistent: yes
Autostart: yes
Bridge: br1
86
Network Information
87
net-name
Item Content
Description
When given a network UUID, returns its corresponding
network name
Input 1. network
Example # net-name f1f1cd7e-b623-4d7e-94c8-2047da1decef
Response vlan1
88
net-uuid
Item Content
Description
When given a network name, returns its
corresponding UUID
Input 1. network
Example # net-uuid vlan1
Response f1f1cd7e-b623-4d7e-94c8-2047da1decef
89
Network Information
• The network name
• The network uuid
90
net-destroy
Item Content
Description Shuts down a running virtual network
Input 1. network
Example # net-destroy vlan1
Response
Network vlan1 destroyed
91
Destroy network
92
net-undefine
Item Content
Description
Removes an inactive virtual network from the libvirt
configuration
Input 1. network
Example # net-undefine vlan1
Response Network vlan1 has been undefined
93
Undefine network
94
Interface and Network scenario
95
Host
virbr0
br1 br2
VM1 VM2 VM3
IP: 192.168.1.101 192.168.1.102 192.168.1.103
vlan1
vlan2
Example
• Define the interfaces br1 and br2
96
XML for host
97
• br1.xml
<interface type='bridge' name='br1'>
<start mode='onboot'/>
<bridge>
<interface type='vlan' name='bond0.1'>
<vlan tag='1'>
<interface name='bond1'/>
</vlan>
</interface>
</bridge>
</interface>
XML for host (cont.)
98
• br2.xml
<interface type='bridge' name='br2'>
<start mode='onboot'/>
<bridge>
<interface type='vlan' name='bond0.2'>
<vlan tag=‘2'>
<interface name='bond2'/>
</vlan>
</interface>
</bridge>
</interface>
XML for VM
• Modify VM1.xml
• Modify VM2.xml
• Modify VM3.xml
99
Define VM
• Define VM1, VM2 and VM3
100
Start VM
• Start VM1, VM2 and VM3
101
Start interface
• Start interface br1 and br2
102
Connect to VM
• Assign IP (192.168.0.101) to VM1
103
Connect to VM (cont.)
• Assign IP (192.168.0.102) to VM2
104
Connect to VM (cont.)
• Assign IP (192.168.0.103) to VM3
105
Result
• VM1 ping VM2
• VM1 ping VM3
106
Result (cont.)
• VM3 ping VM1
• VM3 ping VM2
107
Virsh Commands
Unit 3
Snapshot and Migrate
108
Introduction
• Snapshot
– Snapshots take the disk, memory, and device state
of a VM at a point-of-time, and save it for future
use
• --disk-only
– The snapshot will only include disk state
109
Snapshot scenario
110
Create a
folder and
modify
index.htm
Start
the
VM
Restart
the
VM
Revert
the
snapshot
Step 4Step 3Step 2Step 1
S0 S3S2S1 S1
Step 5
snapshot-create
Item Content
Description Create a snapshot (disk and RAM) from XML
Input
1. domain
2. xml
Example # snapshot-create vm1 snaptest.xml
Response
Domain snapshot snaptest created from
'snaptest.xml'
111
112
• Start VM
• Take a snapshot
Create a snapshot for VM
Create a folder in VM
113
• Start VM
• Create a folder "test"
Launch Apache service
• Check /var/www/index.html
• Web page
114
Launch Apache service (cont.)
• Modify the /var/www/index.html
• Web page
115
snapshot-revert
Item Content
Description Reverts a domain to a given snapshot
Input
1. domain
2. snapshotname
Example # snapshot-revert vm1 snaptest
Response N/A
116
Revert snapshot
• Folder
• Web page
117
snapshot-delete
Item Content
Description
Removes a snapshot, and all of it's children, from a
domain
Input
1. domain
2. snapshotname
Example # snapshot-delete --domain vm1 snaptest --metadata
Response Domain snapshot snaptest deleted
118
Delete snapshot
119
Introduction
• Migrate
– Migration is the process of moving a virtual
machine from one host or storage location to
another
120
Migration
121
Source
VM
Download
a file
Destination
VM
Download
a file
Migration
Network
IP: 192.92.26.120 IP: 192.92.26.108
NFS
/Data/image
VM
image
Set up NFS server for images
• Install NFS server packages
– nfs-common
– nfs-kernel-server
122
• Set shared path and permission
Set up NFS server for images (cont.)
• Start NFS server
123
• Check NFS path
Set up NFS client – hypervisor
• Install NFS client packages
– nfs-common
124
• Mount image
• Check
Set up NFS client – hypervisor (cont.)
• Restart NFS server
125
• Check image on client
migrate
Item Content
Description Migrates a guest domain to another host
Input
1.domain
2.dest uri
Example # migrate vm1 qemu+ssh://140.92.26.108/system
Response pass
126
Start VM
127
Download a file to VM
128
Migrate VM to destination host
• Source host
129
The URI of the destination host
After migration
• Destination host
130
Verify the file
• The file size
131
Virt-manager Introduction
• The virt-manager (Virtual Machine Manager)
application is a graphic user interface for managing
virtual machines through libvirt
132
Main window
133
Connection window
134
Define VM
135
Start VM
136
Connect to VM
137
Verify connection
138
• Virt-manager
Suspend VM
139
Resume VM
140
Save VM
141
Save VM (cont.)
142
Restore VM
143
Clone VM
144
Check CPU usage of VM
145
Destroy VM
146
Delete VM
147
Conclusion
• Virtualization
– High utilization of physical resource
• Virsh
– The main interface for managing virtualization
environment through Libvirt
• Virt-manager
– Graphic user interface for managing virtualization
environment through Libvirt
148
Question
149
• Mail:walkerchang@iii.org.tw
References
• http://libvirt.org/
• http://en.wikipedia.org/wiki/Virtualization
• http://en.wikipedia.org/wiki/Kernel-based_Virtual_Machine
• http://www.slideshare.net/trupti242/virtuallization-
questions#
• https://access.redhat.com/site/documentation/en-
US/Red_Hat_Enterprise_Linux/
• http://trac.nchc.org.tw/cloud
• https://help.ubuntu.com/community/KVM/Installation
• http://www.ubuntu-tw.org/modules/tinyd0/
150

Mais conteúdo relacionado

Mais procurados

DevOps Meetup ansible
DevOps Meetup   ansibleDevOps Meetup   ansible
DevOps Meetup ansiblesriram_rajan
 
kubernetes : From beginner to Advanced
kubernetes : From beginner to Advancedkubernetes : From beginner to Advanced
kubernetes : From beginner to AdvancedInho Kang
 
[1A7]Ansible의이해와활용
[1A7]Ansible의이해와활용[1A7]Ansible의이해와활용
[1A7]Ansible의이해와활용NAVER D2
 
Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...
Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...
Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...whywaita
 
IIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウ
IIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウIIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウ
IIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウIIJ
 
Backup and Restore VMs Based on KVM
Backup and Restore VMs Based on KVMBackup and Restore VMs Based on KVM
Backup and Restore VMs Based on KVMShapeBlue
 
Monitoring in CloudStack
Monitoring in CloudStackMonitoring in CloudStack
Monitoring in CloudStackShapeBlue
 
(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdf
(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdf(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdf
(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdfssuserf8b8bd1
 
Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup. Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup. Neeraj Shrimali
 
Ceph アーキテクチャ概説
Ceph アーキテクチャ概説Ceph アーキテクチャ概説
Ceph アーキテクチャ概説Emma Haruka Iwao
 
OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드
OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드
OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드Ian Choi
 
MySQL 5.7 InnoDB 日本語全文検索
MySQL 5.7 InnoDB 日本語全文検索MySQL 5.7 InnoDB 日本語全文検索
MySQL 5.7 InnoDB 日本語全文検索yoyamasaki
 
Zabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/Fall
Zabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/FallZabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/Fall
Zabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/FallAtsushi Tanaka
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSAmazon Web Services
 
왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요
왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요
왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요Jo Hoon
 
押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)
押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)
押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)NTT DATA Technology & Innovation
 
SQL Server コンテナ入門(Kubernetes編)
SQL Server コンテナ入門(Kubernetes編)SQL Server コンテナ入門(Kubernetes編)
SQL Server コンテナ入門(Kubernetes編)Tomoyuki Oota
 
Openstack live migration
Openstack live migrationOpenstack live migration
Openstack live migrationymtech
 

Mais procurados (20)

DevOps Meetup ansible
DevOps Meetup   ansibleDevOps Meetup   ansible
DevOps Meetup ansible
 
kubernetes : From beginner to Advanced
kubernetes : From beginner to Advancedkubernetes : From beginner to Advanced
kubernetes : From beginner to Advanced
 
[1A7]Ansible의이해와활용
[1A7]Ansible의이해와활용[1A7]Ansible의이해와활용
[1A7]Ansible의이해와활용
 
Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...
Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...
Development myshoes and Provide Cycloud-hosted runner -- GitHub Actions with ...
 
IIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウ
IIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウIIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウ
IIJにおけるGlusterFS利用事例 GlusterFSの詳解と2年間の運用ノウハウ
 
Backup and Restore VMs Based on KVM
Backup and Restore VMs Based on KVMBackup and Restore VMs Based on KVM
Backup and Restore VMs Based on KVM
 
Monitoring in CloudStack
Monitoring in CloudStackMonitoring in CloudStack
Monitoring in CloudStack
 
CloudStack Networking
CloudStack NetworkingCloudStack Networking
CloudStack Networking
 
(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdf
(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdf(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdf
(발표자료) CentOS EOL에 따른 대응 OS 검토 및 적용 방안.pdf
 
Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup. Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup.
 
Ceph アーキテクチャ概説
Ceph アーキテクチャ概説Ceph アーキテクチャ概説
Ceph アーキテクチャ概説
 
Intro to CloudStack API
Intro to CloudStack APIIntro to CloudStack API
Intro to CloudStack API
 
OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드
OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드
OpenStack을 중심으로 한 오픈 소스 & 상용 하이브리드 클라우드
 
MySQL 5.7 InnoDB 日本語全文検索
MySQL 5.7 InnoDB 日本語全文検索MySQL 5.7 InnoDB 日本語全文検索
MySQL 5.7 InnoDB 日本語全文検索
 
Zabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/Fall
Zabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/FallZabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/Fall
Zabbix最新情報 ~Zabbix 6.0に向けて~ @OSC2021 Online/Fall
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKS
 
왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요
왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요
왜 쿠버네티스는 systemd로 cgroup을 관리하려고 할까요
 
押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)
押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)
押さえておきたい、PostgreSQL 13 の新機能!!(Open Source Conference 2021 Online/Hokkaido 発表資料)
 
SQL Server コンテナ入門(Kubernetes編)
SQL Server コンテナ入門(Kubernetes編)SQL Server コンテナ入門(Kubernetes編)
SQL Server コンテナ入門(Kubernetes編)
 
Openstack live migration
Openstack live migrationOpenstack live migration
Openstack live migration
 

Destaque

NFV Architectural Framework
NFV Architectural FrameworkNFV Architectural Framework
NFV Architectural FrameworkSeung-Hoon Baek
 
NFV VNF Architecture
NFV VNF ArchitectureNFV VNF Architecture
NFV VNF Architecturejungbh
 
ONOS (Open Network Operating System) Blackbird Release 분석
ONOS (Open Network Operating System)  Blackbird Release 분석ONOS (Open Network Operating System)  Blackbird Release 분석
ONOS (Open Network Operating System) Blackbird Release 분석rootfs32
 
20150818 jun lee_openstack kilo release 내용 분석
20150818 jun lee_openstack kilo release 내용 분석20150818 jun lee_openstack kilo release 내용 분석
20150818 jun lee_openstack kilo release 내용 분석rootfs32
 
OpenDaylight의 High Availability 기능 분석
OpenDaylight의 High Availability 기능 분석OpenDaylight의 High Availability 기능 분석
OpenDaylight의 High Availability 기능 분석Seung-Hoon Baek
 
20160518 jun lee_ opnfv_brahmaputra_분석
20160518 jun lee_ opnfv_brahmaputra_분석20160518 jun lee_ opnfv_brahmaputra_분석
20160518 jun lee_ opnfv_brahmaputra_분석rootfs32
 
20150511 jun lee_openstack neutron 분석 (최종)
20150511 jun lee_openstack neutron 분석 (최종)20150511 jun lee_openstack neutron 분석 (최종)
20150511 jun lee_openstack neutron 분석 (최종)rootfs32
 
20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)
20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)
20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)rootfs32
 
QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?Pradeep Kumar
 
Open vSwitch 패킷 처리 구조
Open vSwitch 패킷 처리 구조Open vSwitch 패킷 처리 구조
Open vSwitch 패킷 처리 구조Seung-Hoon Baek
 
Kvm performance optimization for ubuntu
Kvm performance optimization for ubuntuKvm performance optimization for ubuntu
Kvm performance optimization for ubuntuSim Janghoon
 
Open vSwitch의 Vendor Extension 구현
Open vSwitch의 Vendor Extension 구현Open vSwitch의 Vendor Extension 구현
Open vSwitch의 Vendor Extension 구현Seung-Hoon Baek
 
NFV Management and Orchestration 분석
NFV Management and Orchestration 분석NFV Management and Orchestration 분석
NFV Management and Orchestration 분석rootfs32
 

Destaque (14)

NFV Architectural Framework
NFV Architectural FrameworkNFV Architectural Framework
NFV Architectural Framework
 
NFV VNF Architecture
NFV VNF ArchitectureNFV VNF Architecture
NFV VNF Architecture
 
ONOS (Open Network Operating System) Blackbird Release 분석
ONOS (Open Network Operating System)  Blackbird Release 분석ONOS (Open Network Operating System)  Blackbird Release 분석
ONOS (Open Network Operating System) Blackbird Release 분석
 
20150818 jun lee_openstack kilo release 내용 분석
20150818 jun lee_openstack kilo release 내용 분석20150818 jun lee_openstack kilo release 내용 분석
20150818 jun lee_openstack kilo release 내용 분석
 
OpenDaylight의 High Availability 기능 분석
OpenDaylight의 High Availability 기능 분석OpenDaylight의 High Availability 기능 분석
OpenDaylight의 High Availability 기능 분석
 
20160518 jun lee_ opnfv_brahmaputra_분석
20160518 jun lee_ opnfv_brahmaputra_분석20160518 jun lee_ opnfv_brahmaputra_분석
20160518 jun lee_ opnfv_brahmaputra_분석
 
20150511 jun lee_openstack neutron 분석 (최종)
20150511 jun lee_openstack neutron 분석 (최종)20150511 jun lee_openstack neutron 분석 (최종)
20150511 jun lee_openstack neutron 분석 (최종)
 
Docker Container
Docker ContainerDocker Container
Docker Container
 
20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)
20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)
20151030 jun lee_vnf 의 reliabilityavailability 제공을 위한 방법 (최종)
 
QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?
 
Open vSwitch 패킷 처리 구조
Open vSwitch 패킷 처리 구조Open vSwitch 패킷 처리 구조
Open vSwitch 패킷 처리 구조
 
Kvm performance optimization for ubuntu
Kvm performance optimization for ubuntuKvm performance optimization for ubuntu
Kvm performance optimization for ubuntu
 
Open vSwitch의 Vendor Extension 구현
Open vSwitch의 Vendor Extension 구현Open vSwitch의 Vendor Extension 구현
Open vSwitch의 Vendor Extension 구현
 
NFV Management and Orchestration 분석
NFV Management and Orchestration 분석NFV Management and Orchestration 분석
NFV Management and Orchestration 분석
 

Semelhante a Introduction to Virtualization, Virsh and Virt-Manager

Private cloud networking_cloudstack_days_austin
Private cloud networking_cloudstack_days_austinPrivate cloud networking_cloudstack_days_austin
Private cloud networking_cloudstack_days_austinChiradeep Vittal
 
VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...
VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...
VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...VMworld
 
2017.06.19 Paul Woodward - ExploreVM VMware 101
2017.06.19   Paul Woodward - ExploreVM VMware 1012017.06.19   Paul Woodward - ExploreVM VMware 101
2017.06.19 Paul Woodward - ExploreVM VMware 101Paul Woodward Jr
 
KVM tools and enterprise usage
KVM tools and enterprise usageKVM tools and enterprise usage
KVM tools and enterprise usagevincentvdk
 
Cloud stack overview
Cloud stack overviewCloud stack overview
Cloud stack overviewhowie YU
 
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...OpenNebula Project
 
Building Bizweb Microservices with Docker
Building Bizweb Microservices with DockerBuilding Bizweb Microservices with Docker
Building Bizweb Microservices with DockerKhôi Nguyễn Minh
 
2014-09-15 cloud platform master class
2014-09-15 cloud platform master class2014-09-15 cloud platform master class
2014-09-15 cloud platform master classCitrix
 
Presentation citrix cloud platform for infrastructure as a service
Presentation   citrix cloud platform for infrastructure as a servicePresentation   citrix cloud platform for infrastructure as a service
Presentation citrix cloud platform for infrastructure as a servicexKinAnx
 
ZertoCON_Support_Toolz.pdf
ZertoCON_Support_Toolz.pdfZertoCON_Support_Toolz.pdf
ZertoCON_Support_Toolz.pdftestslebew
 
LOAD BALANCING OF APPLICATIONS USING XEN HYPERVISOR
LOAD BALANCING OF APPLICATIONS  USING XEN HYPERVISORLOAD BALANCING OF APPLICATIONS  USING XEN HYPERVISOR
LOAD BALANCING OF APPLICATIONS USING XEN HYPERVISORVanika Kapoor
 
Trouble shooting apachecloudstack
Trouble shooting apachecloudstackTrouble shooting apachecloudstack
Trouble shooting apachecloudstackSailaja Sunil
 
Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...
Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...
Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...Spiceworks
 
VMware vCloud Air: Networking
VMware vCloud Air: NetworkingVMware vCloud Air: Networking
VMware vCloud Air: NetworkingVMware
 
Deep Dive into Docker Swarm Mode
Deep Dive into Docker Swarm ModeDeep Dive into Docker Swarm Mode
Deep Dive into Docker Swarm ModeAjeet Singh Raina
 
Docker Networking Deep Dive
Docker Networking Deep DiveDocker Networking Deep Dive
Docker Networking Deep DiveDocker, Inc.
 
Docker 1.12 networking deep dive
Docker 1.12 networking deep diveDocker 1.12 networking deep dive
Docker 1.12 networking deep diveMadhu Venugopal
 
AstriCon 2017 - Docker Swarm & Asterisk
AstriCon 2017  - Docker Swarm & AsteriskAstriCon 2017  - Docker Swarm & Asterisk
AstriCon 2017 - Docker Swarm & AsteriskEvan McGee
 

Semelhante a Introduction to Virtualization, Virsh and Virt-Manager (20)

Private cloud networking_cloudstack_days_austin
Private cloud networking_cloudstack_days_austinPrivate cloud networking_cloudstack_days_austin
Private cloud networking_cloudstack_days_austin
 
VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...
VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...
VMworld 2013: Part 2: How to Build a Self-Healing Data Center with vCenter Or...
 
2017.06.19 Paul Woodward - ExploreVM VMware 101
2017.06.19   Paul Woodward - ExploreVM VMware 1012017.06.19   Paul Woodward - ExploreVM VMware 101
2017.06.19 Paul Woodward - ExploreVM VMware 101
 
KVM tools and enterprise usage
KVM tools and enterprise usageKVM tools and enterprise usage
KVM tools and enterprise usage
 
Cloud stack overview
Cloud stack overviewCloud stack overview
Cloud stack overview
 
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
 
Server 2016 sneak peek
Server 2016 sneak peekServer 2016 sneak peek
Server 2016 sneak peek
 
Building Bizweb Microservices with Docker
Building Bizweb Microservices with DockerBuilding Bizweb Microservices with Docker
Building Bizweb Microservices with Docker
 
2014-09-15 cloud platform master class
2014-09-15 cloud platform master class2014-09-15 cloud platform master class
2014-09-15 cloud platform master class
 
Presentation citrix cloud platform for infrastructure as a service
Presentation   citrix cloud platform for infrastructure as a servicePresentation   citrix cloud platform for infrastructure as a service
Presentation citrix cloud platform for infrastructure as a service
 
ZertoCON_Support_Toolz.pdf
ZertoCON_Support_Toolz.pdfZertoCON_Support_Toolz.pdf
ZertoCON_Support_Toolz.pdf
 
LOAD BALANCING OF APPLICATIONS USING XEN HYPERVISOR
LOAD BALANCING OF APPLICATIONS  USING XEN HYPERVISORLOAD BALANCING OF APPLICATIONS  USING XEN HYPERVISOR
LOAD BALANCING OF APPLICATIONS USING XEN HYPERVISOR
 
Trouble shooting apachecloudstack
Trouble shooting apachecloudstackTrouble shooting apachecloudstack
Trouble shooting apachecloudstack
 
nested-kvm
nested-kvmnested-kvm
nested-kvm
 
Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...
Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...
Making IT Easier to Manage Your Virtualized Environment - David Babbitt, Spic...
 
VMware vCloud Air: Networking
VMware vCloud Air: NetworkingVMware vCloud Air: Networking
VMware vCloud Air: Networking
 
Deep Dive into Docker Swarm Mode
Deep Dive into Docker Swarm ModeDeep Dive into Docker Swarm Mode
Deep Dive into Docker Swarm Mode
 
Docker Networking Deep Dive
Docker Networking Deep DiveDocker Networking Deep Dive
Docker Networking Deep Dive
 
Docker 1.12 networking deep dive
Docker 1.12 networking deep diveDocker 1.12 networking deep dive
Docker 1.12 networking deep dive
 
AstriCon 2017 - Docker Swarm & Asterisk
AstriCon 2017  - Docker Swarm & AsteriskAstriCon 2017  - Docker Swarm & Asterisk
AstriCon 2017 - Docker Swarm & Asterisk
 

Último

The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesVictorSzoltysek
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfayushiqss
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 

Último (20)

The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 

Introduction to Virtualization, Virsh and Virt-Manager