1

I want to install Qemu on ubuntu 22.04 following this tutorial

However, when I enter sudo apt install libvir I get

E: Unable to locate package libvir

Does anyone know whats wrong with my system? (I also used sudo apt install libvirt instead of libvir but the same outcome). Thanks!

Shezan
  • 621

1 Answers1

2

The package name is libvirt-daemon.

sudo apt install libvirt-daemon

To clarify, because it may not have been that obvious, the instructor in the video never tried to install libvir. At some point (around 2:50) they wrote sudo apt install libvir and then pressed Tab to autocomplete the command, and the actual command they used was:

sudo apt install libvirt-daemon-system libvirt-clients
Artur Meinild
  • 31,035