4va1anch3
4va1anch3

Reputation: 477

What is the difference between using virsh and qemu to create virtual machines?

I think there are two ways of creating a virtual machine.

1.Use virsh command(or GUI,virt-manager) to create a virtual machine.

2.Use qemu command (like qemu-system-x86_64)to create a virtual machine.

What is the difference between the two ways?

Upvotes: 1

Views: 850

Answers (1)

Tom Van de Velde
Tom Van de Velde

Reputation: 71

Virsh is the command that interact with the libvirtd in order to manage "any" hypervisor. qemu is a Quick Emulator. This is actually the application that will provide the hardware abstraction layer for the guest VMs

Upvotes: 4

Related Questions