1

When I try to install via terminal using :

sudo apt-get install virt-manager

I get this message :

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package virt-manager

I'm using Ubuntu 13.04 64bits

Main and Universe packages are allowed.

Nasreddine
  • 1,677

2 Answers2

2

I had this problem in 22.04 jammy because virt-manager is in universe, and I did not have universe in my sources.list.d.

The solution was to add these two lines (update jammy with your release name) to /etc/apt/sources.list:

deb http://us.archive.ubuntu.com/ubuntu jammy universe restricted
deb-src http://us.archive.ubuntu.com/ubuntu jammy universe restricted

Reference

0

You don't really need all PPAs. If you install Flash player + Chromium, you can remove the Chrome PPA. By reducing the number of external repositories, your packages list will be refreshed must faster.

Mixing multiple distro versions is a bad idea. You now have both Precise and Raring enabled in your sources.list. Since Raring is end-of-life since 27 January 2014, the Raring packages will vanish from the main repos soon. You need to replace your hosts by old-releases.ubuntu.com as described in this question.

Lekensteyn
  • 178,446