How to uninstall virsh from Ubuntu 13.10 server. I have already removed libvirt-bin, qemu and kvm but virsh is still running. I used following command to remove libvirt-bin.
apt-get remove --purge libvirt-bin kvm qemu qemu-system-x86
apt-get autoremove
reboot
also tried
apt-get remove virsh
but didn't work
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package virsh
Thanks,
If you installed all these packages from Synaptic, then you can remove them as follows:
If however you installed one of these packages from sources (say,
virsh
), then Synaptic will be of no help. You need to usemake uninstall
from the build directory.binary of virsh was not getting removed with
sudo make uninstall
.#which virsh
printed following binary/usr/bin/virsh
Manually removing virsh binary with
rm /usr/bin/virsh
solved my problem. Thanks eveyone for helpingTry