I am trying to install kvm on Kubuntu 16.04 64-bit. I am following this documentation. When I try to install qemu-kvm with the following command given in the documentation:
sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils
I have the following errors:
http://be.archive.ubuntu.com/ubuntu/pool/main/c/ceph/librados2_10.2.0-0ubuntu0.16.04.1_amd64.deb
404 Not Found [IP: 91.189.88.149 80]
http://be.archive.ubuntu.com/ubuntu/pool/main/c/ceph/librbd1_10.2.0-0ubuntu0.16.04.1_amd64.deb
404 Not Found [IP: 91.189.88.149 80]
Did I do something wrong (I just followed the documentation)? Is the documentation obsolete? Is there a workaround?
Thanks in advance!!
sudo apt update
first. If that doesn't help, there is an error in the package itself. However, you can easily download the correct version of these dependencies. Look here and download what you need. Then install these packages withsudo dpkg -i name-of-package.deb
. Then try yourapt-get
statement again. – Jos Jun 24 '16 at 10:35