Looking at this post I ran the following commands to remove a VM:
sudo rm /var/lib/libvirt/images/centos01.qcow2
sudo virsh undefine centos01 --managed-save --snapshots-metadata
But it looks like I still have some files pertaining to this image present:
find /var -name centos*
/var/log/libvirt/qemu/centos01.log
/var/lib/libvirt/qemu/centos01.monitor
Should I just delete these files? Will I run into a problem if I create a new VM with the same name?
Also, what is a .monitor file? I haven't been able to find much info about what they do.